54 lines
866 B
CSS
54 lines
866 B
CSS
/* ================ Error 404 ================ */
|
|
|
|
.error {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: calc(100vh - 80px);
|
|
gap: 2rem;
|
|
padding: 0 1rem;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.error__info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.error__text {
|
|
font-weight: bold;
|
|
font-size: 128px;
|
|
color: #053C45;
|
|
}
|
|
|
|
.error__button {
|
|
margin-top: 1rem;
|
|
padding: .75rem 1.5rem;
|
|
background: var(--button-color);
|
|
color: #fff;
|
|
border-radius: 40px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
transition: all 0.25s ease;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.error__button:hover {
|
|
background: var(--primary);
|
|
}
|
|
|
|
.error__image {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.error__image {
|
|
display: block;
|
|
width: 300px;
|
|
max-width: 100%;
|
|
}
|
|
}
|
|
|