-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
wifidog-msg.html
76 lines (66 loc) · 1.63 KB
/
wifidog-msg.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
<html>
<head>
<title>apfree wifidog</title>
<meta HTTP-EQUIV='Pragma' CONTENT='no-cache'>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge,chrome=1"/>
<style>
body {
font-family: "Microsoft YaHei";
background-color: #2573bf;
margin: 20px 40px;
}
.logo {
width: 90%;
margin: 0 auto;
height: 60px;
}
.logo span {
display: block;
font-size: 32px;
color: #fff;
}
.container {
width: 90%;
height: 70%;
margin: 0 auto;
padding: 50px 30px;
background-color: #fff;
border: 1px solid #f0f0f0;
border-radius: 6px;
overflow-y: auto;
}
.title {
font-size: 24px;
color: #666;
font-weight: normal;
}
.message{
color:#666;
}
@media screen and (max-width:690px){
body{
margin:20px;
}
.container{
height:80%;
padding:20px 10px;
}
}
</style>
</head>
<body>
<div class="logo">
<span>apfree wifidog</span>
</div>
<div class="container">
<div id="header">
<h2 class="title">$title</h2>
</div>
<div id="content">
<p class="message">$message</p>
</div>
</div>
</body>
</html>