-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
56 lines (56 loc) · 1.81 KB
/
404.html
File metadata and controls
56 lines (56 loc) · 1.81 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
<head>
<title>simplyprivate</title>
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/fonts/fonts.css">
</head>
<body>
<style>
body{
overflow: hidden;
background-color: #d0004c;
color: white;
font-family: QuickSand;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-webkit-user-drag: none;
}
.bigone{
font-family: Jersey;
font-size: 150;
overflow: hidden;
position: absolute;
top: 50%; left: 50%;
transform: translate(-50%,-50%);
text-align: center;
}
.description{
font-family: Jersey;
font-size: 20px;
overflow: hidden;
position: absolute;
top: 90%; left: 50%;
transform: translate(-50%,-50%);
display: flex;
align-items: center;
text-align: center;
}
.classic{
font-family: Arial, Helvetica, sans-serif;
margin-left: 10px;
font-size: 20px;
}
</style>
<div class="bigone"><b>404</b></div>
<div class="description" id="title">
this page is not available
<div class="classic">¯\_(ツ)_/¯</div>
</div>
<script>
console.log("-- { simplyprivate.github.io } --")
console.log("-- { 404 } --")
console.warn("[EN] something went wrong while trying to access a especific page, maybe the page was removed")
console.warn("[PT] alguma coisa deu errado enquanto tentavas aceder a uma página específica, talvez a página foi removida")
</script>
</body>