This repository has been archived by the owner on May 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.aspx
96 lines (80 loc) · 2.38 KB
/
404.aspx
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="404.aspx.cs" ViewStateMode="Disabled" Inherits="_404" %>
<!DOCTYPE html>
<html lang="pt-br" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>Página não encontrada</title>
<meta http-equiv="content-language" content="pt-br">
<meta charset="utf-8" />
<meta name="robots" content="none" />
<meta name="google" content="notranslate" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
<style>
* {
line-height: 1.5;
}
html {
background-color: #fff;
color: #333;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
overflow: hidden;
height: 100%;
}
html,
body{
margin: 0;
}
div {
max-width: 600px;
margin: 0 auto;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}
span{
display: table;
margin: 0 auto 30px auto;
border-radius: 3px;
background-color: #fff;
color: #666;
text-transform: uppercase;
padding: 4px 8px;
font-size: 14px;
font-weight: 700;
border: 1px solid #999;
}
h1 {
font-size: 3em;
font-weight: 900;
line-height: 1em;
}
p{
line-height: .6em;
font-family: Georgia;
}
a{
margin-top: 2em;
border: 2px solid #999;
background-color: transparent;
color: #666;
padding: 5px 50px;
border-radius: 5px;
cursor: pointer;
text-transform: uppercase;
display: inline-block;
text-decoration: none;
font-size: 14px;
font-weight: 700;
}
</style>
</head>
<body>
<div class="center">
<span>Erro 404</span>
<h1>Página não encontrada...</h1>
<p>Desculpe, mas a página que você <br />esta tentando acessar não existe.</p>
<a href="/" title="Página Inicial" role="button">Voltar</a>
</div>
</body>
</html>