-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.css
66 lines (64 loc) · 1.41 KB
/
error.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
height: 100vh;
}
#container {
position: absolute;
top: 10%;
left: 10%;
right: 10%;
bottom: 10%;
display: flex;
border-radius: 10px;
justify-content: center;
align-items: center;
background: url('https://img.freepik.com/free-photo/old-black-background-grunge-texture-dark-wallpaper-blackboard-chalkboard-room-wall_1258-28313.jpg?size=626&ext=jpg')
#151729;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
#container .content {
max-width: 600px;
text-align: center;
}
#container .content h2 {
font-size: 18vw;
color: #fff;
line-height: 1em;
}
#container .content h4 {
position: relative;
font-size: 1.5em;
margin-bottom: 20px;
color: #111;
background: #fff;
font-weight: 300;
padding: 10px 20px;
display: inline-block;
}
#container .content p {
color: #fff;
font-size: 1.2em;
}
#container .content a {
position: relative;
display: inline-block;
padding: 10px 25px;
background: #ff056133;
color: #fff;
text-decoration: none;
margin-top: 25px;
border-radius: 25px;
border-bottom: 4px solid #d00d56;
border-left: 2px solid #d00d56;
border-top: 1px solid #d00d56;
}
#container .content a:hover {
background: #ff0561f8;
padding: 15px 30px;
}