Add CSS for tables
This commit is contained in:
parent
1d33101b28
commit
924c5f4d35
2 changed files with 26 additions and 0 deletions
|
@ -150,6 +150,22 @@ body {
|
||||||
color: $title_h3_color;
|
color: $title_h3_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border: 2px solid $secondary_bg_color;
|
||||||
|
border-radius: 10px;
|
||||||
|
|
||||||
|
thead {
|
||||||
|
border-bottom: 2px solid darken($secondary_bg_color, 10%);
|
||||||
|
}
|
||||||
|
|
||||||
|
td,th {
|
||||||
|
padding: 10px;
|
||||||
|
border: 1px solid darken($secondary_bg_color, 10%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.pagenamerow {
|
.pagenamerow {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
|
@ -108,6 +108,16 @@ body {
|
||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
text-indent: 4ex;
|
text-indent: 4ex;
|
||||||
color: #ffeccd; }
|
color: #ffeccd; }
|
||||||
|
#content table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
border: 2px solid #178ca7;
|
||||||
|
border-radius: 10px; }
|
||||||
|
#content table thead {
|
||||||
|
border-bottom: 2px solid #11667a; }
|
||||||
|
#content table td, #content table th {
|
||||||
|
padding: 10px;
|
||||||
|
border: 1px solid #11667a; }
|
||||||
#content .pagenamerow {
|
#content .pagenamerow {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
Loading…
Reference in a new issue