-
Notifications
You must be signed in to change notification settings - Fork 45
/
default.css
95 lines (86 loc) · 1.46 KB
/
default.css
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
html {
overflow: hidden;
height: 100%;
}
body {
position: relative;
overflow: hidden;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
background: #eee;
font-family: "微软雅黑";
}
#wrapper {
position: absolute;
top: 50%;
left: 50%;
margin-top: -60px;
margin-left: -250px;
width: 500px;
height: 120px;
text-align: center;
}
#wrapper h1 {
margin: 0 0 20px;
padding: 0;
font-weight: 300;
font-size: 30px;
}
#wrapper h1 b {
font-weight: 700;
}
#start {
width: 120px;
height: 40px;
+margin-left: 260px;
vertical-align: middle;
font-family: "微软雅黑";
cursor: pointer;
}
#stop {
display: none;
width: 120px;
height: 40px;
vertical-align: middle;
font-family: "微软雅黑";
cursor: pointer;
}
#cfg {
color: #666;
text-shadow: 1px 1px 1px #eee;
font-size: 12px;
cursor: pointer;
}
.temp {
position: absolute;
z-index: -1;
color: #777;
}
#popbox {
position: absolute;
top: 50%;
left: 50%;
margin-top: -140px;
margin-left: -210px;
padding: 0 10px;
width: 400px;
height: 280px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
background: #fff;
-webkit-box-shadow: 0 0 22px #333, inset 0 -3px 7px #ddd;
-moz-box-shadow: 0 0 22px #333, inset 0 -3px 7px #ddd;
box-shadow: 0 0 22px #333, inset 0 -3px 7px #ddd;
+border: 1px solid #666;
}
#ok {
float: right;
margin: -3px 0 0;
color: #666;
cursor: pointer;
width: 50px;
height: 22px;
}