-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline.html
244 lines (221 loc) · 7.63 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Service Status Checker - Offline</title>
<meta name="description" content="Service Status Checker for the web. Offline">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<style>
body {
background-color: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100vh;
margin: 0;
}
.footer {
text-align: center;
color: white;
font-family: Arial, sans-serif;
margin-top: 10px;
}
.centered-text {
text-align: center;
font-family: Arial, sans-serif;
color: white;
margin-top: 10px;
}
.button-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 10px;
}
/* TV screen */
@media (min-width: 1200px) {
.centered-text {
font-size: 42px;
}
.button {
font-size: 38px;
}
.image-button span {
font-size: 38px;
}
/* Wrap the button in an anchor tag with the href attribute */
.button a {
text-decoration: none; /* Remove underline from the link */
color: white; /* Set link text color */
display: block; /* Make the link cover the entire button */
height: 100%; /* Make the link fill the button's height */
width: 100%; /* Make the link fill the button's width */
}
}
/* Computer screen */
@media (min-width: 992px) and (max-width: 1199px) {
.centered-text {
font-size: 32px;
}
.button {
font-size: 24px;
}
.image-button span {
font-size: 24px;
}
}
/* Tablet screen or larger cellphone */
@media (min-width: 600px) and (max-width: 991px) {
.centered-text {
font-size: 22px;
}
.button {
font-size: 18px;
}
.image-button span {
font-size: 18px;
}
}
/* Smaller cellphone */
@media (max-width: 599px) {
.centered-text {
font-size: 18px;
}
.button {
font-size: 16px;
}
.image-button span {
font-size: 16px;
}
}
button {
background-color: #0037ff;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
transition: background-color 0.3s, transform 0.3s;
}
button::after {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(255, 0, 0, 0.2);
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease-in-out;
}
button:hover {
background-color: rgba(93, 114, 255, 0.848); /* Semi-white background on hover */
transform: scale(1.05); /* Slight scale-up on hover */
box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
animation-name: fade;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes fade {
0% {
box-shadow: inset 0 0 0 2px rgb(0, 225, 255);
}
50% {
box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
}
100% {
box-shadow: inset 0 0 0 2px rgb(0, 225, 255);
}
}
/* Style for the button container */
/* Add margin to create spacing between image buttons */
.image-button {
background-color: #0037ff;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 20px; /* Adjust this value to control the spacing */
cursor: pointer;
border-radius: 12px;
transition: background-color 0.3s, transform 0.3s;
}
/* Style for the image */
.image-button img {
width: 100px;
height: 100px;
margin-right: 10px;
}
/* Hover effect */
.image-button:hover {
background-color: rgba(93, 114, 255, 0.848);
transform: scale(1.05);
box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
animation-name: fade;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes fade {
0% {
box-shadow: inset 0 0 0 2px rgb(0, 225, 255);
}
50% {
box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
}
100% {
box-shadow: inset 0 0 0 2px rgb(0, 225, 255);
}
}
</style>
<script>
// Function to update the current date and time
function updateDateTime() {
var dateElement = document.getElementById("date");
var timeElement = document.getElementById("time");
var currentDate = new Date();
// Format the date and time as desired
var date = currentDate.toDateString();
var time = currentDate.toLocaleTimeString();
// Update the HTML elements with the current date and time
dateElement.textContent = "Current Date: " + date;
timeElement.textContent = "Current Time: " + time;
}
// Call the resizeText function on page load and whenever the window is resized
window.addEventListener("load", function () {
updateDateTime();
});
// Update the date and time every second
setInterval(updateDateTime, 1000);
</script>
</head>
<body>
<div class="centered-text">
<h1>Service Status Checker - Offline</h1>
<picture>
<!-- WebP image source -->
<source srcset="" type="image/webp" alt="" width="300" height="300">
<!-- Fallback image source (JPEG) -->
<img src="img/Service Status Checker Upscaled.png" alt="" alt="" width="192" height="192">
</picture>
<p>It seems you are currently offline. Please reconnect to the internet and try again.</p>
<p id="date">Fetching Current Date...</p>
<p id="time">Fetching Current Time...</p>
</div>
<div class="centered-text">
<p>Navigation Tools:</p>
<button class="button" onclick="window.close()">Close Page</button>
<a href="index.html"><button class="button">Back to Home</button></a>
<!-- Inside the <div class="centered-text"> section -->
<p>Hosted by GitHub.</p>
</div>
</body>
</html>