-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
114 lines (97 loc) · 2.99 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Página não encontrada">
<meta name="author" content="Levi Leal">
<title>404 Página não encontrada</title>
<!-- Bootstrap Core CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="/assets/css/main.css" media="screen,projection"/>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
body {
background-color: silver;
}
div {
display: inline-block;
}
#content {
display: table;
margin: 100px auto 0;
}
.error-content {
display: flex;
margin: 0 30px;
}
.error-content .error-img {
width: 200px;
margin-right: 30px;
}
.error-content h1 {
font-size: 9rem;
font-family: "Josefin Sans", sans-serif;
}
.error-content h2 {
font-size: 1.5rem;
}
#link {
position: relative;
}
#link:hover::after {
content: 'Voltar';
position: absolute;
border: 2px solid silver;
border-radius: 5px;
background-color: silver;
top: 35px;
right: 10px;
width: 60px;
text-align: center;
font-size: 1em;
}
@media(min-width:768px) {
.error-content .error-img {
width: 320px;
margin-right: 30px;
}
.error-content h1 {
font-size: 15rem;
font-family: "Josefin Sans", sans-serif;
}
.error-content h2 {
font-size: 2rem;
}
#link:hover::after {
top: 65px;
right: 20px;
width: 100px;
font-size: 1.25em;
}
}
</style>
</head>
<body>
<!-- Services Section -->
<section id="content">
<div class="error-content">
<a href="#" onclick="window.history.back()">
<div id="link" class="error-img">
<img src="/assets/img/link.png" class="img-responsive" />
</div>
</a>
<div>
<h1>404</h1>
<h2>Link não conseguiu encontrar essa página</h2>
</div>
</div>
</section>
</body>
</html>