This repository was 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
Expand file tree
/
Copy path--index.html
More file actions
74 lines (61 loc) · 1.55 KB
/
--index.html
File metadata and controls
74 lines (61 loc) · 1.55 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Página em manutenção</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.5em;
margin: 0;
}
html {
color: #888;
font-family: sans-serif;
text-align: center;
}
body {
left: 50%;
margin: -50px 0 0 -175px;
position: absolute;
top: 50%;
width: 350px;
}
h1 {
color: #555;
font-size: 2em;
font-weight: 400;
margin-bottom:.5em;
}
p {
line-height: 1.2;
}
p + p{
margin-top:1em;
}
a{
color:#888;
}
a:hover{
color:#555;
}
@media only screen and (max-width: 400px) {
body {
margin: 10px auto;
position: static;
width: 95%;
}
h1 {
font-size: 1.5em;
}
}
</style>
</head>
<body>
<h1>Página em manutenção</h1>
<p>Desculpe, mas a página que você esta tentando acessar não esta disponivel no momento.</p>
</body>
</html>