hacks-guide-minimal-mistake.../_sass/_tables.scss

38 lines
720 B
SCSS
Raw Normal View History

2016-03-11 15:55:06 -05:00
/* ==========================================================================
TABLES
========================================================================== */
table {
2016-04-12 16:48:27 -04:00
margin-bottom: 1em;
2016-03-11 15:55:06 -05:00
width: 100%;
font-family: $global-font-family;
font-size: $type-size-6;
2016-03-11 15:55:06 -05:00
border-collapse: collapse;
2016-04-13 08:50:14 -04:00
border: 1px solid $light-gray;
2016-03-21 16:36:24 -04:00
2016-03-11 15:55:06 -05:00
& + table {
margin-top: 1em;
}
}
thead {
2016-03-30 22:20:55 -04:00
background-color: $lighter-gray;
2016-04-13 08:50:14 -04:00
border-bottom: 1px solid $light-gray;
2016-03-11 15:55:06 -05:00
}
th {
padding: 0.5em;
font-weight: bold;
text-align: left;
2016-04-13 08:50:14 -04:00
border-right: 1px solid $light-gray;
2016-03-11 15:55:06 -05:00
}
td {
padding: 0.5em;
2016-04-13 08:50:14 -04:00
border-bottom: 1px solid $light-gray;
border-right: 1px solid $light-gray;
2016-03-11 15:55:06 -05:00
}
tr, td, th {
vertical-align: middle;
2016-03-21 16:36:24 -04:00
}