42 lines
511 B
CSS
42 lines
511 B
CSS
body {
|
|
margin: 0;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body.adaptive {
|
|
background-color: rgb(12, 13, 15);
|
|
}
|
|
|
|
.error.adaptive {
|
|
color: rgb(232, 230, 227);
|
|
}
|
|
|
|
.adaptive .link {
|
|
color: rgb(43, 124, 252);
|
|
}
|
|
|
|
.adaptive .link:visited {
|
|
color: rgb(207, 133, 229);
|
|
}
|
|
|
|
.adaptive .link:hover {
|
|
color: rgb(255, 55, 95);
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
margin: 10px 10px;
|
|
}
|
|
|
|
.error {
|
|
text-align: center;
|
|
}
|
|
|
|
.links {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin: 0 7px 0 7px;
|
|
} |