2018-12-20 15:30:52 +02:00
|
|
|
/*
|
|
|
|
DO NOT CHANGE THIS FILE
|
2018-12-25 18:05:46 +02:00
|
|
|
to override any of the settings in this section, add your styling code in the custom directory.
|
2018-12-20 15:30:52 +02:00
|
|
|
*/
|
2019-02-12 23:40:47 +02:00
|
|
|
|
2018-12-20 15:30:52 +02:00
|
|
|
/* Table
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
table {
|
|
|
|
background-color: transparent;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
border-spacing: 0;
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 15px;
|
|
|
|
line-height: 1.5;
|
|
|
|
vertical-align: top;
|
|
|
|
border: 1px solid $gray-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
thead th,
|
|
|
|
tfoot th {
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
caption + thead,
|
|
|
|
caption + thead,
|
|
|
|
colgroup + thead,
|
|
|
|
colgroup + thead,
|
|
|
|
thead:first-child,
|
|
|
|
thead:first-child {
|
|
|
|
|
|
|
|
tr {
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
border-top: 1px solid $gray-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
|
|
|
|
> tr:nth-child(odd) > td,
|
|
|
|
> tr:nth-child(odd) > th {
|
2020-07-17 11:01:38 +03:00
|
|
|
background-color: $gray-lightest;
|
2018-12-20 15:30:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody + tbody {
|
|
|
|
border-top: 2px solid $gray-light;
|
|
|
|
}
|
|
|
|
|
2018-12-24 13:23:39 +02:00
|
|
|
@media (max-width: $screen-sm - $screen-diff) {
|
2018-12-20 15:30:52 +02:00
|
|
|
|
|
|
|
table {
|
|
|
|
font-size: 0.8em;
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 7px;
|
|
|
|
line-height: 1.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|