1
|
.error-box-404{
|
2
|
display: flex;
|
3
|
width: 50vw;
|
4
|
height: 50vh;
|
5
|
margin: auto;
|
6
|
margin-top: 24vh;
|
7
|
justify-content: center;
|
8
|
flex-direction: column;
|
9
|
align-items: center;
|
10
|
font-family: 'Be Vietnam', sans-serif;
|
11
|
}
|
12
|
.error-box-404 h1{
|
13
|
font-size: 150pt;
|
14
|
color: rgb(20,20,20);
|
15
|
text-shadow: 1px 1px #0B155A;
|
16
|
margin: 0px;
|
17
|
font-weight: bold;
|
18
|
}
|
19
|
.error-box-404 h2{
|
20
|
font-size: 14pt;
|
21
|
font-weight: normal;
|
22
|
margin-left: -50px;
|
23
|
margin-right: -50px;
|
24
|
color: dimgray;
|
25
|
}
|
26
|
.error-box-404 h1 span {
|
27
|
display: inline-block;
|
28
|
animation-name: example;
|
29
|
animation-timing-function: cubic-bezier(0.95, 0.05, 0.795, 0.035);
|
30
|
animation-fill-mode: forwards;
|
31
|
animation-duration: 4s;
|
32
|
}
|
33
|
.error-box-404 > a{
|
34
|
background: black;
|
35
|
padding: 15px;
|
36
|
padding-left: 20px;
|
37
|
padding-right: 20px;
|
38
|
border-radius: 30px;
|
39
|
color: white;
|
40
|
}
|
41
|
.error-box-404 > a {
|
42
|
text-decoration: none;
|
43
|
color: white;
|
44
|
font-weight: bold;
|
45
|
transition: all 0.3s ease-out;
|
46
|
}
|
47
|
.error-box-404 > a:hover {
|
48
|
-webkit-box-shadow: 0px 0px 54px 0px rgba(0,0,0,0.41);
|
49
|
-moz-box-shadow: 0px 0px 54px 0px rgba(0,0,0,0.41);
|
50
|
box-shadow: 0px 0px 54px 0px rgba(0,0,0,0.41);
|
51
|
}
|
52
|
.error-box-wrapper {
|
53
|
display: flex;
|
54
|
flex-direction: column;
|
55
|
justify-content: center;
|
56
|
align-items: center;
|
57
|
background: whtie;
|
58
|
}
|
59
|
|
60
|
@media (max-width: 767.98px) {
|
61
|
.error-box-404 h1{
|
62
|
font-size: 100pt;
|
63
|
}
|
64
|
.error-box-404 > a{
|
65
|
background: black;
|
66
|
padding: 10px;
|
67
|
padding-left: 15px;
|
68
|
padding-right: 15px;
|
69
|
border-radius: 30px;
|
70
|
color: white;
|
71
|
margin-left: -20px;
|
72
|
margin-right: -20px;
|
73
|
}
|
74
|
}
|