30 lines
466 B
CSS
30 lines
466 B
CSS
|
@import url(fonts.css);
|
||
|
|
||
|
:root {
|
||
|
background-color: black;
|
||
|
color: white;
|
||
|
font-family: Nintendo, sans-serif;
|
||
|
font-weight: bold;
|
||
|
font-size: 20px;
|
||
|
line-height: 32px;
|
||
|
letter-spacing: -0.025em;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin: 180px 22.5% 0;
|
||
|
}
|
||
|
|
||
|
.description {
|
||
|
margin-top: -12px;
|
||
|
border-bottom: 2px solid white;
|
||
|
}
|
||
|
|
||
|
.info {
|
||
|
white-space: pre-line;
|
||
|
}
|
||
|
|
||
|
.error-code, .info {
|
||
|
font-weight: normal;
|
||
|
font-size: 16px;
|
||
|
line-height: 24px;
|
||
|
}
|