hacks-guide-minimal-mistake.../assets/_scss/_tables.scss

37 lines
700 B
SCSS
Raw Normal View History

2016-03-11 21:55:06 +01:00
/* ==========================================================================
TABLES
========================================================================== */
table {
width: 100%;
font-family: $sans-serif;
font-size: $type-size-6;
2016-03-11 21:55:06 +01:00
border-collapse: collapse;
2016-03-31 04:20:55 +02:00
border: 2px solid $border-color;
2016-03-21 21:36:24 +01:00
2016-03-11 21:55:06 +01:00
& + table {
margin-top: 1em;
}
}
thead {
2016-03-31 04:20:55 +02:00
background-color: $lighter-gray;
2016-03-11 21:55:06 +01:00
border-bottom: 2px solid $border-color;
}
th {
padding: 0.5em;
font-weight: bold;
text-align: left;
2016-03-31 04:20:55 +02:00
border-right: 2px solid $border-color;
2016-03-11 21:55:06 +01:00
}
td {
padding: 0.5em;
2016-03-31 04:20:55 +02:00
border-bottom: 2px solid $border-color;
border-right: 2px solid $border-color;
2016-03-11 21:55:06 +01:00
}
tr, td, th {
vertical-align: middle;
2016-03-21 21:36:24 +01:00
}