NDOJ/resources/table.scss

71 lines
1.3 KiB
SCSS
Raw Normal View History

2020-01-21 06:35:58 +00:00
@import "vars";
.table {
border-spacing: 0;
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: 0.5em;
background: rgba(0, 0, 0, 0.01);
&.striped tr:nth-child(even) {
background: #f7f7f7;
}
2023-02-08 05:14:48 +00:00
&.striped tr:nth-child(odd) {
background: white;
}
2024-05-03 00:13:19 +00:00
&.no-border {
td, th {
border: none;
}
}
2020-01-21 06:35:58 +00:00
td:first-child {
border-color: $border_gray;
border-width: 1px 1px 0 1px;
}
tr:last-child td {
border-color: $border_gray;
2024-05-03 00:18:47 +00:00
border-bottom-width: 1px;
2020-01-21 06:35:58 +00:00
}
thead th {
vertical-align: middle;
}
th {
height: 2em;
2024-10-02 20:06:33 +00:00
color: black;
background-color: #DAA520;
2020-03-16 07:56:55 +00:00
border-color: #cccccc;
2020-01-21 06:35:58 +00:00
border-width: 1px 1px 0 0;
border-style: solid;
padding: 4px 10px;
vertical-align: middle;
text-align: center;
font-weight: 600;
font-size: 1.1em;
}
td {
border-color: $border_gray;
border-width: 1px 1px 0 0;
border-style: solid;
padding: 7px 5px;
vertical-align: middle;
text-align: center;
}
}
2020-12-30 02:29:50 +00:00
#users-table th a {
color: white;
2023-03-03 00:43:15 +00:00
}
.feed-table {
td, td:first-child, tr:last-child td, tr:last-child td:first-child {
border-width: 1px 0 0 0;
}
2020-12-30 02:29:50 +00:00
}