2022-07-06 13:44:25 -04:00
|
|
|
// Sass modules
|
|
|
|
@use "sass:math";
|
|
|
|
|
|
|
|
// Base font size
|
|
|
|
$base-font-size: 16px;
|
2018-04-15 21:54:43 -04:00
|
|
|
|
|
|
|
// Libraries
|
2022-07-06 13:44:25 -04:00
|
|
|
$enable-smooth-scroll: false;
|
2018-04-15 21:54:43 -04:00
|
|
|
@import "bootstrap/scss/bootstrap.scss";
|
|
|
|
|
2022-07-06 13:44:25 -04:00
|
|
|
// Functions
|
|
|
|
@import "functions/**/*.scss";
|
|
|
|
|
|
|
|
// Core
|
|
|
|
@import "_fonts";
|
|
|
|
@import "_common-vars";
|
|
|
|
|
|
|
|
* {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
width: 100%;
|
|
|
|
font-size: $base-font-size;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xxxl) {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(xxxxl) {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
@include font-sans-bold;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
}
|
|
|
|
|
2018-04-15 21:54:43 -04:00
|
|
|
.error-page {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
2022-07-06 13:44:25 -04:00
|
|
|
padding: $grid-gutter-width math.div($grid-gutter-width, 2);
|
2018-04-15 21:54:43 -04:00
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&-content {
|
|
|
|
width: 100%;
|
2022-07-06 13:44:25 -04:00
|
|
|
font-size: pxrem(22);
|
2018-04-15 21:54:43 -04:00
|
|
|
text-align: center;
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(sm) {
|
2022-07-06 13:44:25 -04:00
|
|
|
font-size: pxrem(32);
|
2018-04-15 21:54:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
2022-07-06 13:44:25 -04:00
|
|
|
font-size: pxrem(48);
|
2018-04-15 21:54:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|