You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
548 B
34 lines
548 B
#page-404 {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 100;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #fff;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 100%;
|
|
background-attachment: fixed;
|
|
|
|
section {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
text-align: center;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
h1 {
|
|
color: @primary-color;
|
|
font-weight: 500;
|
|
font-size: 120px;
|
|
}
|
|
|
|
p {
|
|
color: @site-text-color;
|
|
font-size: 18px;
|
|
}
|
|
}
|
|
|