-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404notfound.css
More file actions
77 lines (69 loc) · 1.46 KB
/
Copy path404notfound.css
File metadata and controls
77 lines (69 loc) · 1.46 KB
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
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
background-image: url(CSS.jpg);
background-size: cover;
}
#container {
position: absolute;
top: 10%;
left: 10%;
right: 10%;
bottom: 10%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 15px 30px rbga(0, 0, 0, 0.5);
}
#container .content {
max-width: 600px;
text-align: center;
}
#container .content h2 {
font-size: 18vw;
color: rgb(255, 255, 255);
line-height: 1em;
}
#container .content h4 {
position: relative;
font-size: 1.5em;
margin-bottom: 20px;
color: #111;
background: rgb(63, 201, 206);
font-weight: 300;
padding: 10px 20px;
display: inline-block;
border-radius: 10px;
}
#container .content p {
color: #fff;
font-size: 1.2em;
}
#container .content a {
position: relative;
display: inline-block;
padding: 10px 25px;
background: #4caf50;
color: #fff;
text-decoration: none;
margin-top: 25px;
border-radius: 25px;
border-bottom: 4px solid #4caf50;
}
button.content {
position: relative;
display: inline-block;
padding: 15px 30px;
background: #4caf50;
color: #fff;
font-size: 18px;
text-decoration: none;
margin-top: 25px;
border-radius: 25px;
border-bottom: 4px solid #4caf50;
}