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

38 lines
574 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 {
margin-right: 1ex;
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;
margin-left: 1ex;
margin-bottom: 1ex;
padding: 0.5ex;
border: 1px solid;
border-radius: 1ex;
cursor: pointer;
}
& > *:first-child {
2023-02-07 21:29:19 +01:00
margin-left: 0;
2025-06-29 00:12:12 +02:00
}
& > .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
}