Files
local-server/html/ui/app.css

38 lines
605 B
CSS
Raw Normal View History

2023-02-07 21:29:19 +01:00
2025-06-29 00:12:12 +02:00
.view-links > span {
2025-07-03 20:32:05 +02:00
display: inline-block;
white-space: nowrap;
2025-06-29 00:12:12 +02:00
margin-right: 1ex;
2025-07-03 20:32:05 +02:00
margin-bottom: 1ex;
2025-06-29 00:12:12 +02:00
padding: 0.5ex;
border: 1pt solid;
border-radius: 1ex;
cursor: pointer;
2023-02-07 21:29:19 +01:00
}
2025-06-29 00:12:12 +02:00
.downloads {
& > * {
display: inline-block;
2025-06-29 08:06:59 +02:00
margin-right: 1ex;
2025-06-29 00:12:12 +02:00
margin-bottom: 1ex;
padding: 0.5ex;
border: 1px solid;
border-radius: 1ex;
cursor: pointer;
}
& > .selected {
color: blue;
}
2023-02-07 21:29:19 +01:00
}
2025-06-29 00:12:12 +02:00
.download-links a {
margin-right: 1ex;
2023-02-07 21:29:19 +01:00
}
2023-02-13 13:03:42 +01:00
2025-06-29 00:12:12 +02:00
@media (prefers-color-scheme: dark) {
.downloads > .selected,
.view-links > .selected {
color: #31b0fa;
}
2023-02-15 08:49:34 +01:00
}