Hi Derek,
thanks for your question.
Yes, that’s possible with TablePress. You would just have to create the tables, fill them with data and insert them into a page with the Shortcode.
However, some CSS code will be necessary to adjust the styling. To get started, you can take a look at the TablePress FAQ page at https://tablepress.org/faq/ That explains how to change the background colors, for example.
For the rounded corners, you can use this “Custom CSS”:
.tablepress thead th:first-child {
border-top-left-radius: 10px;
}
.tablepress thead th:last-child {
border-top-right-radius: 10px;
}
.tablepress tbody tr:last-child td:first-child {
border-bottom-left-radius: 10px;
}
.tablepress tbody tr:last-child td:last-child {
border-bottom-right-radius: 10px;
}
Regards,
Tobias