-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo404.css
92 lines (73 loc) · 1.49 KB
/
estilo404.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
*{
margin: 0;
padding: 0;
}
.entre{
padding: 40px 0;
}
.error404{
background-image: url('img/memoji404.png');
background-repeat: no-repeat;
background-size: 20%;
background-position: center;
padding: 140px 0;
text-align: center;
max-width: 900px;
margin: auto;
}
.error404-item1{
animation-name: floating;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
width: 20%;
margin-top: -10px;
margin-bottom: 20px;
}
@keyframes floating{
0%{transform: translate(0, 0px);}
50%{transform: translate(0, 15px);}
100%{transform: translate(0, -0px);}
}
.error404-btn {
text-align: center;
margin-top: 10px;
}
.error404-btn h1{
color: var(--color-itens);
font-size: 38px;
}
.error404-btn p{
color: var(--color-word);
font-size: 20px;
margin: 10px 0 30px 0;
}
.error404-btn i{
padding: 0 5px 0 0;
margin: 0;
}
.error404-btn a{
font-size: 20px;
padding: 10px 30px;
background: var(--color-itens) ;
border-radius: 6px;
color: var(--color-word-btn);
text-decoration: none;
}
@media (max-width: 700px){
.entre{
padding: 0;
}
.error404-btn{
margin: auto;
}
.error404-btn h1{
font-size: 28px;
}
.error404-btn p{
font-size: 16px;
}
.error404-btn a{
font-size: 16px;
}
}