mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
28 lines
554 B
SCSS
Vendored
28 lines
554 B
SCSS
Vendored
// Core
|
|
@import "_fonts";
|
|
|
|
// Libraries
|
|
@import "bootstrap/scss/bootstrap.scss";
|
|
|
|
.error-page {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
padding: $grid-gutter-width ($grid-gutter-width / 2);
|
|
align-items: center;
|
|
|
|
&-content {
|
|
@include font-sans-bold;
|
|
width: 100%;
|
|
font-size: 22px;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
font-size: 32px;
|
|
}
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
font-size: 48px;
|
|
}
|
|
}
|
|
}
|