Conversion to SASS
See updated README.md for details.
This commit is contained in:
parent
83030c60c0
commit
df85ee4450
13 changed files with 513 additions and 249 deletions
21
scss/_tables.scss
Normal file
21
scss/_tables.scss
Normal file
|
@ -0,0 +1,21 @@
|
|||
.table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
.table th,
|
||||
.table td {
|
||||
text-align: left;
|
||||
vertical-align: top;
|
||||
border-top: 1px solid $tableBorderColour;
|
||||
padding: ($marginBottom / 2) * 1px 10px;
|
||||
}
|
||||
|
||||
.table th {
|
||||
font-weight: bold;
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.table thead th {
|
||||
vertical-align: bottom;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue