mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-31 23:10:44 +00:00
22 lines
396 B
SCSS
22 lines
396 B
SCSS
table {
|
|
border-collapse: collapse;
|
|
margin: ($base-line-height / 2) 0;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
th {
|
|
border-bottom: 1px solid darken($base-border-color, 15%);
|
|
font-weight: bold;
|
|
padding: ($base-line-height / 2) 0;
|
|
text-align: left;
|
|
}
|
|
|
|
td {
|
|
border-bottom: 1px solid $base-border-color;
|
|
padding: ($base-line-height / 2) 0;
|
|
}
|
|
|
|
tr, td, th {
|
|
vertical-align: middle;
|
|
}
|