forked from gmittal/gmittal.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
executable file
·92 lines (83 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>404 - Gautam Mittal</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#000000" />
<link rel="icon" type="image/png" href="/img/favicon.png">
<style>
html, body {
margin: 0px 0px;
width: 100%;
}
#hero {
background: white;
background-size:cover;
position:relative;
height:100vh;
font-family: 'Menlo';
}
img {
margin-left: auto;
margin-right: auto;
height: 100px;
}
.header {
position:absolute;
top:45%;
text-align:center;
width:100%;
color:#333;
-ms-transform: translate(0,-45%); /* IE 9 */
-webkit-transform: translate(0,-45%); /* Safari */
transform: translate(0,-45%);
}
.lead {
text-align:center!important;
font-size: 17pt;
font-family: 'Menlo', sans-serif;
font-weight: 300!important;
line-height: 130%!important;
text-align: justify;
}
a {
text-decoration: none;
color: #2980b9;
}
a:visited {
color: #2980b9;
}
a:hover {
color: #c0392b;
}
p {
font-family: sans-serif;
font-size: 14pt;
}
@media only screen and (max-width: 500px) {
.lead {
width: 300px;
font-size: 11pt;
}
}
</style>
</head>
<body>
<div id="wrapper" style="width: 100%;">
<div id="hero">
<div class="header">
<!-- Image by Becris from Noun Project -->
<img src="/img/404.png" />
<center>
<p class="lead">
Oops. 404.<br /><br />
Did you enter the wrong URL?<br />
<a href="mailto:[email protected]">Email me</a> or <a href="/">go home</a>.
</p>
</center>
</div>
</div>
</div>
</body>
</html>