-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoffline.html
executable file
·89 lines (81 loc) · 2.22 KB
/
offline.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
<style>
@font-face {
font-display: swap;
font-family: "Diamondgrotesk";
src: url("fonts/DiamondGrotesk.woff") format("woff");
}
.logo {
display: flex;
/* max-width: 238px; */
}
.site-offline {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
height: 100vh;
}
.header-logo {
font-size: 6vw;
font-family: "Diamondgrotesk", Arial, Helvetica, sans-serif;
}
body {
font-family: "NeueMontreal", Arial, Helvetica, sans-serif;
font-size: 16px;
font-weight: 400;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
padding: 0;
margin: 0;
background-color: #f2f5f7;
height: 100%;
}
.typeset {
text-align: center;
max-width: 560px;
padding: 0 5%;
margin: 0 auto;
}
@media (max-width: 768px) {
.typeset > p {
font-size: 36px;
line-height: 36px;
}
}
.typeset > p {
font-size: 42px;
line-height: 42px;
letter-spacing: -1px;
color: black;
margin-bottom: 45px;
}
.typeset .button {
display: inline-block;
padding: 15px 30px;
font-family: "NeueMontreal", Arial, Helvetica, sans-serif;
font-weight: 500;
font-size: 20px;
line-height: 1.4285714286;
letter-spacing: 0.2px;
text-decoration: none;
text-align: center;
border-radius: 15px;
transition: border 333ms cubic-bezier(0.17, 0, 0.25, 1), background-color 333ms cubic-bezier(0.17, 0, 0.25, 1),
color 333ms cubic-bezier(0.17, 0, 0.25, 1), fill 333ms cubic-bezier(0.17, 0, 0.25, 1);
color: black;
text-decoration: underline;
}
</style>
<main class="site-offline" data-router-wrapper="">
<div class="logo">
<!-- <img src="../assets/svg/DAYBREAKS.svg" width="238" height="90" alt="Trakexcel"> -->
<h1 class="header-logo">Uzitrake</h1>
</div>
<div data-router-view="defaultRouter" class="page-default">
<div class="typeset">
<p>You're offline. <br />Please check your internet connection and try again.</p>
<a href="/" onclick="location.reload();" class="button">Try Again</a>
</div>
</div>
</main>