Redesigned from top to bottom
This commit is contained in:
Abdullah Almsaeed
2014-02-01 10:49:36 -05:00
parent 858303df6a
commit b2a34fdcd3
941 changed files with 71858 additions and 120032 deletions

38
less/404_500_errors.less Normal file
View File

@@ -0,0 +1,38 @@
/*
Page: 404 and 500 error pages
------------------------------------
*/
.error-page {
width: 600px;
margin: 20px auto 0 auto;
@media screen and (max-width: @screen-sm) {
width: 100%;
}
//For the error number e.g: 404
> .headline {
float: left;
font-size: 100px;
font-weight: 300;
@media screen and (max-width: @screen-sm) {
float: none;
text-align: center;
}
}
//For the message
> .error-content {
margin-left: 190px;
@media screen and (max-width: @screen-sm) {
margin-left: 0;
}
> h3 {
font-weight: 300;
font-size: 25px;
@media screen and (max-width: @screen-sm) {
text-align: center;
}
}
display: block;
}
.clearfix();
}