-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnone.html
106 lines (92 loc) · 2.2 KB
/
none.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
<!--如果这和黑客攻击有关,那我们祝福黑客去死 微笑 -->
<html><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>云课堂网 - 关闭页面</title>
<style>
::selection{
background:#ff6500;
color:#fff;
}
::-moz-selection{
background:#ff6500;
color:#fff;
}
*{
margin: 0;
padding: 0;
}
body,html{
width: 100%;
height: 100%;
}
body{
background: #fafafa;
font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Source Han Sans SC,Noto Sans CJK SC,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;
}
.notice-wrap{
padding-top: 30px;
}
.notice{
margin: 0 auto;
max-width: 640px;
height: 34em;
background: url(https://i.loli.net/2020/04/12/dGgilm51LzpetOZ.png) no-repeat top center;
border-radius: 1.5em;
background-size: cover;
}
.notice h1{
font-size: 36px;
color: #333;
text-align: center;
margin-bottom: 1.1em;
padding-top: 215px;
}
::-webkit-scrollbar{
width:0;
}
.notice-inner>p{
margin: 0 2em;
font-size: 18px;
color: #666;
text-indent: 36px;
line-height: 40px;
}
p span{
color: #ff6500;
}
.notice .notice-cont{margin-top: 0.5em;}
.notice .notice-tel{
padding-bottom: 1em;
}
.notice-foot{
margin-top: 1em;
padding: 1em;
border-top: 2px solid #f2f2f2;
}
.notice-foot p{
font-size: 18px;
color: #666;
text-align: center;}
.notice:after {content: "";background: #ff6500;width: 100%;height: 90%;display: block;position: relative;top: -30em;border-radius: 1.5em;box-shadow: 0 1em 2em -1em #ff6c0b;z-index: -1;}
.notice-inner {
max-height: 33em;
overflow: auto;
}
</style>
</head>
<body>
<div class="notice-wrap">
<div class="notice">
<div class="notice-inner">
<h1>这个站点并不运作</h1>
<p class="notice-cont">您好!云课堂网的<span>这个站点</span>并不提供服务。</p>
<p class="notice-tel">在正常情况下您不应该来到这个页面,<span>请前往开放的站点</span>!</p>
<p class="notice-cont">云课堂网依旧为您服务</p>
<div class="notice-foot">
<p>这不是一个开放的域名/站点,错误的访问被阻止!</p>
</div>
</div>
</div>
</div>
</body></html>