Add Table align CSS classes

This commit is contained in:
2020-11-27 23:05:10 +01:00
parent ca1e089868
commit 58db28ad32
4 changed files with 239 additions and 192 deletions

View File

@@ -8,7 +8,7 @@ table {
border-bottom:3px solid $color-shadow;
// Cell Style
td,th{
td, th {
font-size:90%;
margin:0;
overflow:visible;
@@ -17,6 +17,10 @@ table {
border:1px solid $color-shadow;
}
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
// First Line of the Table
thead th{
font-weight: $bold;