feat: add general styling for tables
* feat: add _table.scss to scss vendor folder
---------
Co-authored-by: Alexander Bilz <mail@alexbilz.com>
2 files deleted
1 files modified
1 files added
| | |
| | | @import './partials/vendors/mediumzoom'; |
| | | @import './partials/vendors/contactform'; |
| | | @import './partials/vendors/tableofcontents'; |
| | | @import './partials/vendors/table'; |
| New file |
| | |
| | | table { |
| | | display: table; |
| | | width: 80%; |
| | | border-collapse: collapse; |
| | | } |
| | | |
| | | tr { |
| | | display: table-row; |
| | | } |
| | | |
| | | th, td { |
| | | display: table-cell; |
| | | padding: 8px; |
| | | @include themed(){ |
| | | border: t('border'); |
| | | } |
| | | } |