Added common error status pages

This commit is contained in:
2023-09-27 21:05:46 +03:00
parent 3cf0d5f5b3
commit 59adbd5161
3 changed files with 94 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
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;
}