61 lines
1.2 KiB
CSS
61 lines
1.2 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
.error-page-container {
|
|
height: 100vh;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.error-page-container .error-page-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.error-page-container .error-page-content a {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid #c52127;
|
|
color: #c52127;
|
|
background-color: transparent;
|
|
padding: 8px 18px;
|
|
border-radius: 8px;
|
|
margin-top: 16px;
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
.error-page-container .error-page-content img {
|
|
height: 500px;
|
|
width: 500px;
|
|
object-fit: contain;
|
|
}
|
|
@media (max-width: 568px) {
|
|
.error-page-container .error-page-content img {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.error-page-container .error-page-content p {
|
|
color: #4d4d4d;
|
|
}
|
|
.error-page-container .error-page-content h4 {
|
|
color: #121535;
|
|
font-size: 30px;
|
|
margin-top: 26px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.error-page-container .error-page-content img {
|
|
width: 350px;
|
|
object-fit: contain;
|
|
}
|
|
}
|