mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
ea326906e3
For consistency and and the ability to change all font sizes at once in the dev tools
31 lines
448 B
SCSS
31 lines
448 B
SCSS
.error-page {
|
|
text-align: center;
|
|
padding-top: 2em;
|
|
|
|
.face {
|
|
font-size: 4.286em;
|
|
}
|
|
.reason {
|
|
font-size: var(--font-up-4);
|
|
}
|
|
.url {
|
|
font-style: italic;
|
|
font-size: var(--font-down-1);
|
|
}
|
|
.desc {
|
|
margin-top: 16px;
|
|
.d-icon-check-circle {
|
|
color: var(--success);
|
|
}
|
|
}
|
|
.buttons {
|
|
align-items: center;
|
|
display: inline-flex;
|
|
margin-top: 15px;
|
|
|
|
button {
|
|
margin: 0 20px;
|
|
}
|
|
}
|
|
}
|