File size: 1,106 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
.error-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-top: 140px;
animation: floatzoom .35s ease;
}
.big-error {
font-size: 200px;
margin: 0;
}
.medium-error {
font-size: 50px;
margin: 0;
font-weight: 500;
position: relative;
}
.wrong {
margin: 0;
font-size: 50px;
position: relative;
top: 20px;
font-family: "Noto Sans", sans-serif;
}
.back-home {
cursor: pointer;
height: 50px;
padding: 3px;
border: none;
background-color: rgb(255, 149, 0);
padding-left: 22px;
padding-right: 22px;
font-family: "Poppins", sans-serif;
font-weight: 600;
color: white;
transition: all 0.3s ease;
font-size: 18px;
border-radius: 5px;
transition: all 0.13s;
margin-top: 55px;
}
.back-home:hover {
transform: scale(1.05);
}
.back-home:active {
transform: scale(1);
}
@media (max-width: 450px) {
.error-page {
margin-top: 0px;
height: 100vh;
}
.big-error {
font-size: 100px;
}
.medium-error {
font-size: 32px;
}
.wrong {
font-size: 38px;
}
}
|