Welcome to mirror list, hosted at ThFree Co, Russian Federation.

offline.html « static - github.com/asurbernardo/amperage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff8d34fba6740349da446cfa59bc725712e67c43 (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="robots" content="noindex" />
        <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
        <title>You have no internet! 😵</title>
        <style type="text/css">
            html, body {
                height: 100%;
            }
            body {
                font-family: Courier New, sans-serif;
                margin: 0;
            }
            h1 {
                font-weight: bold;
                font-size: 5em;
            }
            .flex-container {
                height: 100%;
                padding: 0;
                margin: 0;
                display: -webkit-box;
                display: -moz-box;
                display: -ms-flexbox;
                display: -webkit-flex;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
            }
            .flex-item {
                text-align: center;
            }
            @media only screen and (max-width: 768px) {
                h1 {
                    font-size: 3.5em;
                }
            }
        </style>
    </head>
    <body>
        <main class="flex-container">
            <h1 class="flex-item">You have no internet!</h1>
            <h1 class="flex-item"> 😵 </h1>
            <p class="flex-item"><a href="/">Go back to the homepage</a></p>
        </main>
    </body>
</html>