-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.css
More file actions
51 lines (51 loc) · 1 KB
/
404.css
File metadata and controls
51 lines (51 loc) · 1 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
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
section
{
position: relative;
width: 100%;
min-height: 100vh;
padding: 100px;
display: flex;
justify-content: space-between;
align-items: center;
background: #941c0f;
overflow-y: hidden;
overflow-x: hidden;
}
.notfound
{
position: absolute;
color: #f6b361;
text-align: center;
font-size: 600%;
padding: 33%;
align-items: center;
align-content: center;
}
.notfound p
{
position: absolute;
align-items: center;
align-content: center;
left: 45.5%;
justify-content: space-between;
display: flex;
top: 55%;
font-size: 20%;
}
@media screen and (max-width:360px){
.notfound{
left: -12%;
}
.notfound p{
left: 40%;
top: 60%;
}
}