-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfallback.html
49 lines (41 loc) · 953 Bytes
/
fallback.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guia de Formadores - Offline</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
margin: 0;
}
body {
font-family: Helvetica, Arial , sans-serif;
background-color: #F1C40F;
align-items: center;
justify-content: center;
}
/* Style the header */
.header {
background-color: #8E44AD;
height: 600px;
color: #fff;
padding: 30px;
text-align: center;
font-size: 24px;
margin-left: 50px;
margin-right: 50px;
padding-top: 100px;
}
</style>
</head>
<body>
<div class="header">
<h2>OOOPS!</h2>
<h2>Esta página ainda não está disponível offline.</h2>
<a href="/" class="md-button">
<img style="width: 20%; height: auto; padding-top: 50%;" src="/assets/images/icons/gf_logo.png" alt="Página inicial">
</a>
</div>
</body>
</html>