EngineGP/template/css/error.css
2023-03-05 16:59:34 +03:00

102 lines
1.3 KiB
CSS

*
{
padding: 0;
margin: 0;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
-ms-box-sizing: content-box;
-o-box-sizing: content-box;
box-sizing: content-box;
}
html
{
font-family: 'Open Sans';
font-size: 14px;
background-color: #c73f33;
color: #000;
}
html, body
{
height: 100%;
}
.error, .content
{
width: 1000px;
}
.error
{
width: 1000px;
height: 375px;
margin: 0 auto;
}
.error-403
{
background: url('../images/error/403.jpg') center top no-repeat;
}
.error-404
{
background: url('../images/error/404.jpg') center top no-repeat;
}
.fail-replenish
{
background: url('../images/error/fail.jpg') center top no-repeat;
}
.info-403, .info-404, .info-fail
{
padding: 5px;
text-align: center;
text-transform: uppercase;
border: 4px solid #000;
border-radius: 30px;
font-size: 33px;
}
.info-404
{
font-size: 28px;
}
.info-fail
{
font-size: 22px;
}
.content
{
margin: 0 auto;
}
.content ul
{
margin-top: 15px;
text-align: center;
}
.content ul li
{
list-style-type: none;
display: inline-block;
}
.content ul li a
{
color: #000;
display: inline-block;
margin: 10px;
font-size: 21px;
text-transform: uppercase;
}
.content ul li a:hover
{
text-decoration: none;
}