-
Notifications
You must be signed in to change notification settings - Fork 0
/
offline.html
126 lines (107 loc) · 2.88 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en" translate="no" class="notranslate" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no, minimum-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google" content="notranslate">
<meta name="description" content="A random Picross generator game!">
<meta name="keywords" content="Picross, Picross Universe, Game, Nonogram, Logic Pix">
<meta name="author" content="Luan Sergio Damando">
<meta name="theme-color" content="#221A75" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#221A75">
<meta name="apple-mobile-web-app-title" content="Picross Universe">
<title>Picross Universe</title>
<style>
html,
body {
width: 100%;
margin: 0;
font-family: 'Roboto';
padding-left: 0;
padding-right: 0;
padding-bottom: 0;
padding-top: 0;
scrollbar-color: #FDCA17 #110C40;
scrollbar-width: auto;
scrollbar-face-color: #110C40;
scrollbar-track-color: #FDCA17;
scrollbar-arrow-color: #110C40;
scrollbar-shadow-color: #110C40;
}
body {
background-color: #110C40;
}
body::-webkit-scrollbar {
width: 0.9375rem;
height: 0.9375rem;
}
body::-webkit-scrollbar-track {
background-color: #110C40;
border-radius: 0;
}
body::-webkit-scrollbar-thumb {
background-color: #FDCA17;
border-radius: 0;
}
body::-webkit-scrollbar-corner {
background-color: #FDCA17;
}
.main {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
margin-left: auto;
margin-right: auto;
max-width: 85%;
}
.offline__logo {
text-align: center;
}
.logo-image {
max-width: 21.25rem;
max-height: 296px;
width: 100%;
}
.offline__title {
font-size: 5.125rem;
margin-top: 0;
text-align: center;
margin-bottom: 0.9375rem;
color: #FDCA17;
}
.offline__text {
font-size: 1.125rem;
color: #FEFEFE;
max-width: rem(350);
text-align: center;
margin-top: 0.9375rem;
margin-bottom: rem(0);
}
.offline__text-highlight {
font-weight: bold;
color: #FDCA17;
}
</style>
</head>
<body>
<main class="main">
<h1 class="offline__logo">
<include src="./partials/logo.html"></include>
</h1>
<h2 class="offline__title">
Oops!
</h2>
<p class="offline__text">
It seems like you are trying to access the game without any internet connection.
</p>
<p class="offline__text">
Sorry, but our game only works when you are online
<span class="offline__text-highlight"> :(</span>
</p>
</main>
</body>
</html>