23 lines
255 B
SCSS
23 lines
255 B
SCSS
/* TABLE
|
|
* Style tables
|
|
*/
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table, th, td {
|
|
border:0;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
|
|
th, td {
|
|
vertical-align:center;
|
|
padding-top: 0.325em;
|
|
padding-bottom: 0.325em;
|
|
}
|
|
|
|
th {
|
|
font-weight: $fontweight_hyper;
|
|
}
|