63 lines
No EOL
930 B
SCSS
63 lines
No EOL
930 B
SCSS
/* TABLE
|
|
* Style tables
|
|
*/
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
&:not(:last-child) {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
}
|
|
|
|
th, td {
|
|
padding: 0.325rem;
|
|
border:0;
|
|
margin:0;
|
|
}
|
|
|
|
th {
|
|
vertical-align: center;
|
|
font-weight: $fontweight_hyper;
|
|
background-color:$color-primary;
|
|
color:white;
|
|
}
|
|
|
|
td {
|
|
background-color:$color-background-alt;
|
|
tr:nth-child(even) & {
|
|
background-color: darken($color-background-alt, 7.5%);
|
|
}
|
|
}
|
|
|
|
thead {
|
|
th:first-child {
|
|
border-top-left-radius: 10px;
|
|
}
|
|
|
|
th:last-child {
|
|
border-top-right-radius: 10px;
|
|
}
|
|
|
|
&:last-child {
|
|
th {
|
|
text-align: center;
|
|
&:first-child {
|
|
border-bottom-left-radius: 10px;
|
|
}
|
|
|
|
&:last-child {
|
|
border-bottom-right-radius: 10px;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
tr:last-child td:first-child {
|
|
border-bottom-left-radius: 10px;
|
|
}
|
|
|
|
tr:last-child td:last-child {
|
|
border-bottom-right-radius: 10px;
|
|
} |