44 lines
693 B
SCSS
44 lines
693 B
SCSS
//
|
|
// _errors.scss
|
|
//
|
|
|
|
.error-basic-img{
|
|
max-width: 450px;
|
|
}
|
|
|
|
.error-500 {
|
|
.title {
|
|
font-size: 250px;
|
|
}
|
|
|
|
.error-500-img {
|
|
position: absolute;
|
|
top: 57px;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
@media (min-width: 768px) and (max-width: 991.98px) {
|
|
.title {
|
|
font-size: 150px;
|
|
}
|
|
|
|
.error-500-img {
|
|
width: 20% !important;
|
|
top: 43px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767.98px) {
|
|
.title {
|
|
font-size: 68px;
|
|
margin-top: 35px;
|
|
}
|
|
|
|
.error-500-img {
|
|
position: relative;
|
|
top: 0px;
|
|
}
|
|
}
|
|
} |