Rename folder scss with an "_" for Jekyll to ignore it

This commit is contained in:
Michael Rose
2016-03-18 15:49:50 -04:00
parent eb2f3d052a
commit ce06d2e806
109 changed files with 1 additions and 2 deletions

33
assets/_scss/_tables.scss Normal file
View File

@ -0,0 +1,33 @@
/* ==========================================================================
TABLES
========================================================================== */
table {
width: 100%;
font-family: $sans-serif;
font-size: 0.8rem;
border-collapse: collapse;
border-bottom: 2px solid $border-color;
& + table {
margin-top: 1em;
}
}
thead {
border-bottom: 2px solid $border-color;
}
th {
padding: 0.5em;
font-weight: bold;
text-align: left;
}
td {
border-bottom: 1px solid $border-color;
padding: 0.5em;
}
tr, td, th {
vertical-align: middle;
}