AdminLTE/build/less/404_500_errors.less

37 lines
702 B
Plaintext
Raw Normal View History

2015-02-01 22:25:09 +01:00
/*
* Page: 400 and 500 error pages
* ------------------------------
*/
.error-page {
width: 600px;
margin: 20px auto 0 auto;
2015-02-02 23:09:59 +01:00
@media (max-width: @screen-sm-max) {
2015-02-01 22:25:09 +01:00
width: 100%;
}
//For the error number e.g: 404
> .headline {
float: left;
font-size: 100px;
font-weight: 300;
2015-02-02 23:09:59 +01:00
@media (max-width: @screen-sm-max) {
2015-02-01 22:25:09 +01:00
float: none;
text-align: center;
}
}
//For the message
> .error-content {
margin-left: 190px;
2015-02-02 23:09:59 +01:00
@media (max-width: @screen-sm-max) {
2015-02-01 22:25:09 +01:00
margin-left: 0;
}
> h3 {
font-weight: 300;
font-size: 25px;
2015-09-19 20:05:54 +02:00
@media (max-width: @screen-sm-max) {
2015-02-01 22:25:09 +01:00
text-align: center;
}
}
display: block;
}
2015-07-12 15:42:26 +02:00
}