mirror of
https://github.com/coder/code-server.git
synced 2026-04-13 21:32:52 -05:00
hen the user's browser does not support `light-dark`, fall back to the light theme color scheme.
34 lines
500 B
CSS
34 lines
500 B
CSS
.error-display {
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.error-display > .header {
|
|
font-size: 6rem;
|
|
margin: 0;
|
|
}
|
|
|
|
.error-display > .body {
|
|
color: #444;
|
|
color: light-dark(#444, #ccc);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.error-display > .links {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
.error-display > .links > .link {
|
|
color: rgb(87, 114, 245);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.error-display > .links > .link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.error-display .success {
|
|
color: green;
|
|
}
|