-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
143 lines (142 loc) · 2.71 KB
/
Copy path404.html
File metadata and controls
143 lines (142 loc) · 2.71 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
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
---
permalink: /404.html
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name=viewport content="width=device-width, initial-scale=1">
<meta name="description" content="404 Error.">
<meta name="author" content="MCEULA Team">
<title>Error</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<style>
body {
font-family: Helvetica, Arial;
/*background: rgba(65, 202, 244, 0.4);*/
overflow-x: hidden;
}
.navheader {
font-size: 20px;
padding-bottom: 10px;
padding-left: 20px;
color:white;
padding-top:17px;
}
header {
height: 50px;
border-bottom-width: 2px;
border-bottom-style: solid;
border-bottom-color: gray;
background: black;
margin: -20px -15px 0px -10px;
padding: 0px;
}
.navbar {
color: white;
float; left;
position: absolute;
padding-left: 50px;
float: center;
margin-top: 14px;
top: 0px;
left: 100px;
display: inline;
list-style-type: none;
text-align: center;
}
.header li {
display: inline;
padding-right: 25px;
}
.header a {
text-decoration: underline;
color: white;
}
.mainpart {
font-size: 60px;
text-align: center;
padding-top: 50px;
padding-bottom: 50px;
display: block;
width: 100%;
}
.mainpart h1 {
display: block;
padding-bottom: 0px;
margin-bottom: 10px;
}
.mainpart p {
font-size: 17px;
margin: 0 auto;
text-align: center;
margin-top: 0px;
padding-top: 0px;
}
.footer {
background-color: purple;
height: 50px;
bottom: 0px;
margin-bottom: 0px;
position: relative;
border-top-style: solid;
border-top-color: #d442f4;
border-top-width: 5px;
}
.footer p {
color: white;
margin: 0 auto;
padding-top: 15px;
}
.container {
position: absolute;
width: 100%;
margin-left: -8px;
padding-top: 5px;
bottom: 0px;
}
.navheader a {
text-decoration: none;
}
.navheader a:hover {
text-decoration: none;
}
@media (max-width: 520px) {
.header li {
font-size: 14px;
padding-right: 5px;
}
.navbar {
padding-left: 20px;
}
.footer {
font-size: 15px;
}
}
</style>
</head>
<body>
<div class="header">
<header>
<h1 class="navheader"><a href="">MCEULA:</a></h1>
<ul class="navbar">
<li><a href="">Home</a></li>
<li><a href="statistics">Statistics</a></li>
<li><a href="bypass">Bypass</a></li>
<li><a href="explanation">Explanation</a></li>
</ul>
</header>
</div>
<div class="mainpart">
<center>
<h1>404</h1>
<p>That page was not found</p>
</center>
</div>
<div class="container">
<div class="footer">
<center><p>This site is not affiliated with Minecraft or Mojang AB</p></center>
</div>
</div>
</body>
</html>