forked from MrGreensWorkshop/MrGreen-JekyllTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoffline-en.html
100 lines (99 loc) · 3.04 KB
/
offline-en.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline - Shanghai University Cat Alliance</title>
<link rel="stylesheet" href="/shu-maomeng/assets/css/main.css">
<style>
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
.content-wrapper {
display: flex;
flex-direction: column;
flex: 1;
}
.offline-content {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 40px 20px;
}
.offline-message {
max-width: 600px;
background-color: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.centered-logo {
display: block;
text-align: center;
font-size: 2em;
color: #05397f;
text-decoration: none;
margin-bottom: 30px;
font-weight: bold;
}
h1 {
color: #333;
font-size: 1.8em;
margin-bottom: 20px;
text-align: center;
}
p {
color: #666;
font-size: 1.1em;
line-height: 1.6;
margin-bottom: 15px;
}
button {
background-color: #05397f;
color: white;
border: none;
padding: 12px 24px;
font-size: 1em;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
display: block;
margin: 30px auto 0;
}
button:hover {
background-color: #ffff00;
color: black;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
footer {
text-align: right;
padding: 20px;
background-color: #f0f0f0;
color: #666;
}
</style>
</head>
<body>
<div class="content-wrapper">
<main class="offline-content">
<div class="offline-message">
<a href="/shu-maomeng/" class="centered-logo">Shanghai University Cat Union</a>
<h1>You are currently offline</h1>
<p>Sorry, you seem to be disconnected from the network. Please check your network settings and try again.</p>
<p>Shanghai University Cat Union looks forward to your next visit!</p>
<p>Once your network is restored, you can continue browsing the specific content of our Shanghai University Cat Union.</p>
<button onclick="window.location.reload()">Retry Connection</button>
</div>
</main>
</div>
<footer>
<p>© 2024 Shanghai University Cat Alliance. All rights reserved.</p>
</footer>
</body>
</html>