add sass/scratch.scss and associated sass files

This commit is contained in:
2018-12-18 17:46:30 +01:00
parent e31560f622
commit 472eda01e4
123 changed files with 8932 additions and 4 deletions

View File

@@ -0,0 +1,33 @@
table {
width: $table-width;
thead {
background-color: $table-head-bg-color;
tr th {
border: $table-head-td-border;
text-align: $table-head-td-text-align;
padding: $table-head-td-padding;
color: $table-head-text-color;
}
}
tbody {
tr {
td {
border: $table-body-td-border;
text-align: $table-body-td-text-align;
padding: $table-body-td-padding;
color: $table-body-text-color;
}
&:nth-of-type(even) {
background-color: $table-body-tr-bg-color-even;
}
&:nth-of-type(odd) {
background-color: $table-body-tr-bg-color-odd;
}
}
}
}