forked from tjy-gitnub/win12
-
Notifications
You must be signed in to change notification settings - Fork 0
/
disconnected.html
80 lines (71 loc) · 1.91 KB
/
disconnected.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Windows 12 网页版</title>
<style>
* {
padding: 0px;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
}
html,body {
width: 100%;
height: 100%;
}
body {
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: max(60%, 600px);
padding: 50px;
}
.container * {
margin: 20px 0px;
}
.container .tit {
font-weight: 700;
font-size: 1.56em;
padding: 5px 0px;
}
.container p.bold {
font-weight: 700;
font-size: 1.2em;
}
.container p.last {
font-size: 0.85em;
color: #888888;
margin-top: 30px;
}
.container ul {
list-style-position: inside;
}
.container>.pic {
width: 100px;
height: 100px;
background-image: url("apps/icons/edge/disconnected.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: 50% 50%;
}
</style>
</head>
<body>
<div class="container">
<div class="pic"></div>
<div class="tit">你尚未连接</div>
<div class="content">
<p>Web 因你而不同。让我们帮你重新联机!</p>
<p class="bold">请尝试:</p>
<ul>
<li>检查网络电缆、调制解调器和路由器</li>
<li>重新连接到无线网络</li>
</ul>
<p class="last">ERR_INTERNET_DISCONNECTED</p>
</div>
</div>
</body>
</html>