AdminLTE/build/scss/pages/_404_500_errors.scss

44 lines
671 B
SCSS
Raw Normal View History

//
// Pages: 400 and 500 error pages
//
2015-10-31 22:00:16 +01:00
.error-page {
margin: 20px auto 0;
2015-10-31 22:00:16 +01:00
width: 600px;
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
width: 100%;
}
2015-10-31 22:00:16 +01:00
//For the error number e.g: 404
> .headline {
float: left;
font-size: 100px;
font-weight: 300;
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
float: none;
text-align: center;
}
}
2015-10-31 22:00:16 +01:00
//For the message
> .error-content {
display: block;
2015-10-31 22:00:16 +01:00
margin-left: 190px;
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
margin-left: 0;
}
2015-10-31 22:00:16 +01:00
> h3 {
font-size: 25px;
font-weight: 300;
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
text-align: center;
}
}
}
}