2017-07-12 14:03:40 +02:00
|
|
|
.page404__bg {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2022-03-15 14:21:06 +01:00
|
|
|
inset-inline-start: 0;
|
2017-07-12 14:03:40 +02:00
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2023-04-19 07:58:14 +02:00
|
|
|
background-color: theme('colors.secondary.400');
|
2017-07-12 14:03:40 +02:00
|
|
|
font-family: $font-sans;
|
2023-04-19 07:58:14 +02:00
|
|
|
color: theme('colors.white.DEFAULT');
|
2017-07-12 14:03:40 +02:00
|
|
|
}
|
|
|
|
|
2022-04-08 02:33:48 +02:00
|
|
|
.page404__logo {
|
2017-07-12 14:03:40 +02:00
|
|
|
width: 400px;
|
|
|
|
height: 500px;
|
2022-04-08 02:33:48 +02:00
|
|
|
|
|
|
|
// Media for Windows High Contrast mode
|
2023-04-19 07:58:14 +02:00
|
|
|
@media (forced-colors: active) {
|
|
|
|
background-color: LinkText;
|
2022-04-08 02:33:48 +02:00
|
|
|
}
|
2017-07-12 14:03:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.page404__text-container {
|
|
|
|
width: 600px;
|
2023-02-17 01:06:57 +01:00
|
|
|
|
2017-07-12 14:03:40 +02:00
|
|
|
height: 500px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page404__header {
|
|
|
|
font-size: 6.8em;
|
|
|
|
margin-bottom: 0.2em;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page404__text {
|
|
|
|
font-size: 2.25em;
|
|
|
|
line-height: 1.25em;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.button.page404__button {
|
|
|
|
// more specific to override standard button styles
|
|
|
|
font-size: 1.5em;
|
|
|
|
line-height: 2em;
|
|
|
|
height: 2.5em;
|
|
|
|
padding: 0 0.5em;
|
2023-04-19 07:58:14 +02:00
|
|
|
background-color: theme('colors.secondary.400');
|
|
|
|
border: 4px solid theme('colors.secondary.DEFAULT');
|
2017-07-12 14:03:40 +02:00
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
2023-04-19 07:58:14 +02:00
|
|
|
background-color: theme('colors.secondary.DEFAULT');
|
2017-07-12 14:03:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// MOBILE CHANGES:
|
2018-11-04 22:46:42 +01:00
|
|
|
@include media-breakpoint-down(xs) {
|
2017-07-12 14:03:40 +02:00
|
|
|
.page404__text-container {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page404__header {
|
|
|
|
font-size: 5em;
|
|
|
|
}
|
|
|
|
}
|