-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
90 lines (82 loc) · 2.01 KB
/
404.html
File metadata and controls
90 lines (82 loc) · 2.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="dragon_cai">
</head>
<style>
* {
margin: 0;
padding: 0;
background-color: #7289DA;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default
}
h1 {
font-size: 10rem;
font-family: Roboto, sans-serif;
font-weight: 700
}
h1,
h2 {
font-family: Roboto, sans-serif;
color: #fff;
margin-top: 30vh
}
h2 {
margin-top: 5px
}
.container {
width: 23rem;
border-bottom: 3px solid #fff;
position: relative;
margin: 0 auto;
padding-bottom: 10px
}
#star {
position: absolute;
color: #fff;
bottom: 3rem;
right: 23rem;
margin-bottom: 50px;
color: rgba(255, 0, 0, .7);
font-size: 7rem;
font-family: Roboto, sans-serif;
font-weight: 700
}
@-webkit-keyframes rotation {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@keyframes rotation {
0% {
-webkit-transform: rotate(0);
transform: rotate(0)
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
}
}
@media (max-width:430px) {
#star {
right: 2rem
}
.container {
margin: -30px auto
}
}
</style>
<div class=container>
<h1 class="animated fadeInDown">404</h1>
<h2 class="animated fadeInUp">Page not found</h2>
</div>