datat.fi/_sass/basically-basic/_tables.scss

37 lines
485 B
SCSS

//
// Tables
//
table {
width: 100%;
@include fluid-type($min-vw, $max-vw, 12px, 18px);
border-collapse: collapse;
// For Firefox to horizontally scroll wider tables.
word-break: normal;
word-break: keep-all;
}
thead {
th, td {
background-color: tint($base-color, 80%);
}
}
th, td {
border-bottom: 1px solid $border-color;
}
th {
padding: 0.5em;
font-weight: bold;
text-align: left;
}
td {
padding: 0.5em;
}
tr, td, th {
vertical-align: middle;
}