-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscreen.css
236 lines (211 loc) · 4.15 KB
/
screen.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/*
CSS-Tricks Example
by Chris Coyier
http://css-tricks.com
*/
* {
margin: 0px;
padding: 0px;
}
body {
font-family: Geneva, Arial, Helvetica, sans-serif;
line-height: 15px;
}
html, body, #bg, #bg table, #bg td, #cont {
height:100%;
width:100%;
overflow:hidden;
}
h2 {
font-size: 15px;
line-height: 43px;
color: #333333;
font-weight: bold;
text-shadow: 0px 1px 1px #FFF;
background-image: url(images/header.png);
background-repeat: repeat;
background-position: center top;
height: 43px;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 20px;
position: relative;
margin: 0px;
}
.clear {
clear: both;
}
a.close {
position: absolute;
background-image: url(images/close.png);
background-repeat: no-repeat;
background-position: center center;
height: 25px;
width: 25px;
text-indent: -99999px;
outline: none;
top: 10px;
right: 10px;
}
.message {
display:block;
font-size: 12px;
margin-top: 15px;
margin-bottom: 10px;
}
#bg div {
height:200%;
left:-50%;
position:absolute;
top:-50%;
width:200%;
}
#bg td {
text-align:center;
vertical-align:middle;
}
#bg img {
margin:0 auto;
min-height:50%;
min-width:50%;
}
#cont {
position:absolute;
top:0;
left:0;
z-index:70;
overflow:auto;
}
.lock {
width: 197px;
height: 198px;
padding: 0px;
background-image: url(images/lock.png);
background-repeat: no-repeat;
background-position: center center;
position: absolute;
left: 50%;
top: 50%;
margin-left: -99px;
/* Half the width of the DIV tag which is 50 pixels */
margin-top: -99px;
/* Half the height of the DIV tag which is also 50 pixels */
}
.form {
display: none;
width: 387px;
padding: 0px;
position: absolute;
left: 50%;
top: 50%;
/* Half the width of the DIV tag which is 388 pixels */
margin-left: -194px;
/* Half the height of the DIV tag which is also 216 pixels */
margin-top: -108px;
margin-right: auto;
margin-bottom: 0;
}
.show {
display: inline;
}
.box {
position: absolute;
left: 50%;
top: 50%;
}
.formcont {
margin: 0px;
overflow: hidden;
position: relative;
}
.formfooter {
background-image: url(images/footer.png);
background-repeat: no-repeat;
background-position: center top;
margin: 0px;
padding: 0px;
height: 13px;
}
#signin_menu {
height: 160px;
border:none;
text-align:left;
margin: 0px;
color:#333;
font-size:12px;
background-image: url(images/form-bg.png);
background-repeat: repeat-y;
background-position: center bottom;
overflow: hidden;
padding-top: 0px;
padding-right: 20px;
padding-bottom: 0px;
padding-left: 20px;
}
#signin_menu input[type=text], #signin_menu input[type=password] {
float: right;
-moz-border-radius:4px;
-webkit-border-radius:4px;
border:1px solid #C6C6C6;
font-size:13px;
margin:5px 0px 5px;
*margin:0px;
padding:5px;
width:180px;
}
#signin_menu p {
margin:10px 0 10px;
*margin:5px 0 5px;
clear: both;
}
#signin_menu a {
color:#6AC;
}
#signin_menu label {
margin:10px 0px 0px;
float: left;
font-weight:normal;
}
#signin_menu p.remember {
float: right;
clear: none;
padding:0;
}
#signin_menu a.forgot {
margin-top: 10px;
float: left;
display: inline;
line-height: 24px;
color: #666666;
text-decoration: none;
background-image: url(images/reset.png);
background-repeat: no-repeat;
background-position: left center;
padding-left: 18px;
font-weight: bold;
}
.remember input {
-moz-border-radius:4px;
-webkit-border-radius:4px;
background:#39d url('images/bg-btn.png') repeat-x scroll 0 0;
border:1px solid #B5B5B5;
color:#222;
text-shadow: 0px 1px 1px #FFF;
*filter: Shadow(Color=#FFFFFF,
Direction=180,
Strength=1);
padding:4px 10px 5px;
font-size:11px;
margin: 0 0px 0 3px;
font-weight:bold;
}
#signin_submit::-moz-focus-inner {
padding:0;
border:0;
}
#signin_submit:hover, #signin_submit:focus {
background-position:0 -5px;
cursor:pointer;
}
#focus-stealer { position: absolute; left: -9999px; }