mirror of
https://github.com/Noratrieb/does-it-build.git
synced 2026-01-14 18:35:01 +01:00
Highlight that there are build details available with a `[details]` link which wasn't obvious before.
76 lines
929 B
CSS
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;
|
|
}
|
|
}
|