2023-10-22 01:40:22 +00:00
|
|
|
:root {
|
|
|
|
color-scheme: light dark;
|
|
|
|
}
|
|
|
|
|
2020-11-02 15:16:12 +00:00
|
|
|
html {
|
|
|
|
color: rgb(0,0,0);
|
2023-10-22 01:40:22 +00:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Lucida Grande', sans-serif;
|
2020-11-02 15:16:12 +00:00
|
|
|
text-align: left;
|
2012-08-12 12:11:33 +00:00
|
|
|
}
|
2020-11-02 15:16:12 +00:00
|
|
|
|
2023-04-15 22:07:03 +00:00
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
2020-11-02 15:16:12 +00:00
|
|
|
th {
|
|
|
|
color: rgb(50,50,50);
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: left;
|
2012-08-12 12:11:33 +00:00
|
|
|
}
|
2020-11-02 15:16:12 +00:00
|
|
|
|
2023-04-15 22:07:03 +00:00
|
|
|
tr:nth-child(even) {
|
|
|
|
background: rgb(244,245,245);
|
|
|
|
}
|
|
|
|
tr:nth-child(even) td:first-child {
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
}
|
|
|
|
tr:nth-child(even) td:last-child {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2020-11-02 15:16:12 +00:00
|
|
|
td {
|
|
|
|
color: rgb(80,80,80);
|
|
|
|
text-align: left;
|
2012-08-12 12:11:33 +00:00
|
|
|
}
|
2023-04-15 22:07:03 +00:00
|
|
|
td.grey {
|
|
|
|
color: rgb(133,133,133);
|
|
|
|
}
|
2020-11-02 15:16:12 +00:00
|
|
|
|
|
|
|
img.icon {
|
|
|
|
margin-right: 8px;
|
|
|
|
vertical-align: text-bottom;
|
2012-08-12 12:11:33 +00:00
|
|
|
}
|
2023-10-22 01:40:22 +00:00
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
html {
|
|
|
|
color: rgb(255,255,255);
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
color: rgb(200,200,200);
|
|
|
|
}
|
|
|
|
|
|
|
|
tr:nth-child(even) {
|
|
|
|
background: rgb(50,50,50);
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
color: rgb(175,175,175);
|
|
|
|
}
|
|
|
|
}
|