-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_done.html
112 lines (92 loc) · 3.07 KB
/
config_done.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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<title>配置Twitter账户</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<style type="text/css">
#banner {
margin-left:auto;
margin-right:auto;
width:1000px;
}
#banner img {
max-width:1000px;
max-height:300px;
}
#main {
margin-left:auto;
margin-right:auto;
width:1000px;
}
#main-content {
padding:20px;
width:625px;
float:left;
}
#widget-container {
padding:15px;
width:280px;
float:right;
}
.widget-content {
margin:20px;
padding:1px;
width:250px;
background-color:#DDDDDD;
}
.widget-title {
font-weight:bold;
padding:10px;
background-color:#EEEEEE;
}
.widget-text {
padding:10px;
background-color:#FCFCFC;
}
@media (min-width: 481px) and (max-width: 768px) {
#banner { width:740px; }
#banner img { max-width:740px; max-height:222px; }
#main { width:740px; }
#main-content { width:450px; float:left; }
#widget-container { width:200px; float:right; }
.widget-content { width:160px; }
}
@media (min-width: 321px) and (max-width: 480px) {
#banner { width:450px; }
#banner img { max-width:450px; max-height:135px; }
#main { width:450px; }
#main-content { width:400px;}
#widget-container { width:400px; }
.widget-content { width:120px; margin:5px; float:left;}
.widget-text { display:none; }
}
@media (max-width: 320px) {
#banner { width:275px; }
#banner img { max-width:275px; max-height:83px; }
#main { width:250px; }
#main-content { width:250px;padding:0px;}
#widget-container { width:250px; padding:0px; }
.widget-content { width:250px; margin:5px;}
.widget-text { display:none; }
}
</style>
</head>
<body>
<div id="banner"><img src="/twitter-logo-1.png"></div>
<div id="main">
<div id="main-content">
<h2>配置Twitter账户</h2>
<p>
已授权<font color="blue">Twitter</font>用户@twitterid<br>
授权另一个Twitter用户的话<br>
请输入你的<font color="blue">Twitter</font>用户名
<form method="post" action="/">
用户名:@<INPUT TYPE="text" NAME="twitter_auth" style="height:30px;width:105px;">
<button type="submit" style="height:40px;width:68px;">授权</button></form>
</p>
</div>
</div>
</body>
</html>