forked from liara-cloud/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
58 lines (50 loc) · 928 Bytes
/
Copy path404.css
File metadata and controls
58 lines (50 loc) · 928 Bytes
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
.notfound-container {
display: flex;
justify-content: center;
direction: rtl;
position: relative;
margin-top: 100px;
margin-bottom: 200px;
}
.notfound-container img {
width: 370px;
margin-bottom: -60px;
filter: invert(1);
border: none;
}
.notfound-container h3 {
color: #4e6377;
font-size: 26px;
text-align: center;
}
.notfound-container .no-signal {
position: absolute;
width: 71%;
border-radius: 2px;
right: 50%;
top: -9px;
transform: translateX(50%);
opacity: 0.09;
border-radius: 20px;
}
.notfound-container div {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
}
@media (max-width: 802px) {
.notfound-container {
margin-top: 20px;
margin-bottom: 120px;
}
.notfound-container h3 {
font-size: 22px;
}
.notfound-container img {
padding: 0px 50px;
}
.notfound-container .no-signal {
display: none;
}
}