AdminLTE/build/scss/_404_500_errors.scss

37 lines
702 B
SCSS
Raw Normal View History

2015-10-31 22:00:16 +01:00
/*
* Page: 400 and 500 error pages
* ------------------------------
*/
.error-page {
width: 600px;
margin: 20px auto 0 auto;
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
width: 100%;
}
//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;
}
}
//For the message
> .error-content {
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;
}
> h3 {
font-weight: 300;
font-size: 25px;
2016-01-16 17:27:23 +01:00
@include media-breakpoint-down(sm) {
2015-10-31 22:00:16 +01:00
text-align: center;
}
}
display: block;
}
}