does-it-build/static/index.css
Noratrieb e523607cbc Improve design
Highlight that there are build details available with a `[details]`
link which wasn't obvious before.
2025-11-14 22:16:32 +01:00

76 lines
929 B
CSS

:root {
color-scheme: light dark;
}
html {
font-family: sans-serif;
}
@media screen and (min-width: 768px) {
html {
margin: 20px;
}
}
table {
border-spacing: 0;
}
th,
td {
padding: 2px 10px;
}
tr:not(:last-child) {
th,
td {
border-bottom: 1px solid;
}
}
.error {
background-color: light-dark(lightcoral, darkred);
}
.pass {
background-color: light-dark(greenyellow, darkgreen);
}
.missing {
background-color: light-dark(lightgray, rgb(85, 85, 85));
}
.build-indicator-big {
padding: 10px;
margin-top: 20px;
}
.build-details-link {
display: flex;
align-items: center;
text-decoration: none;
}
.build-details-emoji {
padding: 5px;
font-size: 2rem;
}
.build-details-text {
text-decoration: underline;
}
.footer {
margin-top: 40px;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #1b191c;
color: #e6dae9;
}
a {
color: #e5a5c2;
}
}