-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.css
77 lines (67 loc) · 1.07 KB
/
404.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
html {
height: 100%;
}
.error {
display: flex;
}
.errorPicture {
width: 30%;
left: 0;
text-align: center;
position: absolute;
bottom: 0;
}
.errorPicture img {
width: 200%;
display: block;
}
.errorText {
position: absolute;
width: 60%;
right: 0;
text-align: center;
font-family:monospace;
}
h1 {
font-size: 4vw;
}
p {
font-size: 1.6vw;
font-weight:bolder;
}
.errorText p {
text-align: center;
}
button {
all: unset;
position: absolute; right: 25%; bottom: 60%;
width: 100px;
height: 30px;
font-size: 1vw;
background: transparent;
border: none;
color: #f0f0f0;
cursor: pointer;
z-index: 1;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: center;
white-space: nowrap;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
font-family: monospace;
}
button::after,
button::before {
content: '';
position: absolute;
z-index: -99999;
}
button::before {
width: 100%;
height: 100%;
background: #28282d;
border-radius: 10px;
}