forked from makyurt/DGBio
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path404.html
126 lines (123 loc) · 3.51 KB
/
404.html
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
<!-- HTML meta refresh URL redirection -->
<html>
<head>
<!-- <meta http-equiv="refresh" content="0; url=https://digibyte.org/" /> -->
</head>
<style>
body {
background: rgb(0, 35, 82);
background: -moz-linear-gradient(
45deg,
rgba(0, 35, 82, 1) 0%,
rgba(0, 102, 204, 1) 35%,
rgba(0, 212, 255, 1) 100%
);
background: -webkit-linear-gradient(
45deg,
rgba(0, 35, 82, 1) 0%,
rgba(0, 102, 204, 1) 35%,
rgba(0, 212, 255, 1) 100%
);
background: linear-gradient(
45deg,
rgba(0, 35, 82, 1) 0%,
rgba(0, 102, 204, 1) 35%,
rgba(0, 212, 255, 1) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#002352",endColorstr="#00d4ff",GradientType=1);
font-size: 2rem;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
@media (min-width: 576px) {
.container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container {
max-width: 720px;
}
}
@media only screen and (min-resolution: 300dpi),
only screen and (min-width: 3840px) and (min-height: 2160px) {
/* Styles for high-resolution 4K screens */
.container {
max-width: 1800px;
}
}
.four-oh-four {
height: 100%;
width: 100%;
}
.border-box {
border-radius: 20px;
width: 50%;
height: 50%;
position: absolute;
}
.top_left_corner {
border-top: 1rem solid white;
border-left: 1rem solid white;
left: 5%;
top: 5%;
}
.bottom_right_corner {
border-bottom: 1rem solid white;
border-right: 1rem solid white;
bottom: 5%;
right: 5%;
}
.heading {
color: white;
display: block;
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%);
text-shadow: 4px 4px 2px #06c;
}
h1 {
font-style: italic;
}
h1, h2 {
text-align: center;
}
button {
padding: 1rem;
border-radius: 15px;
color: #002352;
background-color: #06c;
font-weight: 900;
font-size: 3rem;
margin: 0 auto;
display: block;
box-shadow: 0 1px 5px #002352;
border: none;
}
button a {
display: block;
height: 100%;
width: 100%;
color: inherit;
text-decoration: none;
}
button a:hover, button a:focus, button:hover > a {
color: white;
}
</style>
<body>
<div class="container four-oh-four">
<div class="top_left_corner border-box"></div>
<div class="bottom_right_corner border-box"></div>
<div class="heading">
<h1>DigiDon't</h1>
<h3>That page does not exist!</h3>
<button>
<a href="/">
Go to Homepage
</a>
</button>
</div>
</div>
</body>
</html>