This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (126 loc) · 2.59 KB
/
style.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
}
#notfound {
position: relative;
height: 100vh;
background-color: #fafbfd;
}
#notfound .notfound {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.notfound {
max-width: 520px;
width: 100%;
text-align: center;
}
.notfound .notfound-bg {
position: absolute;
left: 0px;
right: 0px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1;
}
.notfound .notfound-bg > div {
width: 100%;
background: #fff;
border-radius: 90px;
height: 125px;
}
.notfound .notfound-bg > div:nth-child(1) {
-webkit-box-shadow: 5px 5px 0px 0px #f3f3f3;
box-shadow: 5px 5px 0px 0px #f3f3f3;
}
.notfound .notfound-bg > div:nth-child(2) {
-webkit-transform: scale(1.3);
-ms-transform: scale(1.3);
transform: scale(1.3);
-webkit-box-shadow: 5px 5px 0px 0px #f3f3f3;
box-shadow: 5px 5px 0px 0px #f3f3f3;
position: relative;
z-index: 10;
}
.notfound .notfound-bg > div:nth-child(3) {
-webkit-box-shadow: 5px 5px 0px 0px #f3f3f3;
box-shadow: 5px 5px 0px 0px #f3f3f3;
position: relative;
z-index: 90;
}
.notfound h1 {
font-family: 'Quicksand', sans-serif;
font-size: 86px;
text-transform: uppercase;
font-weight: 700;
margin-top: 0;
margin-bottom: 8px;
color: #151515;
}
.notfound h2 {
font-family: 'Quicksand', sans-serif;
font-size: 26px;
margin: 0;
font-weight: 700;
color: #151515;
}
.notfound a {
font-family: 'Quicksand', sans-serif;
font-size: 14px;
text-decoration: none;
text-transform: uppercase;
background: #18e06f;
display: inline-block;
padding: 15px 30px;
border-radius: 5px;
color: #fff;
font-weight: 700;
margin-top: 20px;
}
.notfound-social {
margin-top: 20px;
}
.notfound-social>a {
display: inline-block;
height: 40px;
line-height: 40px;
width: 40px;
font-size: 14px;
color: #fff;
background-color: #c4c4c4;
margin: 3px;
padding: 0px;
-webkit-transition: 0.2s all;
transition: 0.2s all;
}
.notfound-social>a:hover {
background-color: #18e06f;
}
@media only screen and (max-width: 767px) {
.notfound .notfound-bg {
width: 287px;
margin: auto;
}
.notfound .notfound-bg > div {
height: 85px;
}
}
@media only screen and (max-width: 480px) {
.notfound h1 {
font-size: 68px;
}
.notfound h2 {
font-size: 18px;
}
}