Commit 7849af67b35e6560fe5906738f2b30dd88bec392
1 parent
58514757
Exists in
master
and in
2 other branches
corringo erro na tela de login
Showing
4 changed files
with
144 additions
and
0 deletions
Show diff stats
445 Bytes
448 Bytes
7.64 KB
style.css
... | ... | @@ -211,3 +211,147 @@ body { |
211 | 211 | right: 0; |
212 | 212 | top: 0; |
213 | 213 | } |
214 | + | |
215 | +/* PopUp Login*/ | |
216 | + | |
217 | +#colorbox { | |
218 | + left: -350px !important; | |
219 | + margin-left: 50% !important; | |
220 | + width: 700px !important; | |
221 | +} | |
222 | + | |
223 | +#cboxWrapper { | |
224 | + padding: 15px; | |
225 | + position: relative; | |
226 | + width: auto !important; | |
227 | + /* height: auto !important;*/ | |
228 | +} | |
229 | + | |
230 | +#cboxContent{ | |
231 | + float: none !important; | |
232 | + width: auto !important; | |
233 | + height: auto !important; | |
234 | + padding: 20px; | |
235 | +} | |
236 | + | |
237 | +#cboxLoadedContent{ | |
238 | + width: auto !important; | |
239 | + height: auto !important; | |
240 | +} | |
241 | + | |
242 | +#colorbox .login-box .button-bar a.icon-close{ | |
243 | + width: auto !important; | |
244 | +} | |
245 | + | |
246 | +#cboxMiddleLeft{ | |
247 | + float: none !important; | |
248 | + height: auto !important; | |
249 | +} | |
250 | + | |
251 | +#cboxTopCenter { | |
252 | + height: auto !important; | |
253 | +} | |
254 | + | |
255 | +#colorbox .login-box{ | |
256 | + width: 100%; | |
257 | + background: url("images/img_login_popUp.png") no-repeat scroll 90% 50% #FFFFFF; | |
258 | +} | |
259 | + | |
260 | +#colorbox .login-box h2{ | |
261 | + background: url("images/bg-titulo-login.png") no-repeat scroll 70px 7px #FFFFFF; | |
262 | + color: #757575; | |
263 | + font-size: 20px; | |
264 | + font-style: italic; | |
265 | + font-weight: normal; | |
266 | + width: 45%; | |
267 | +} | |
268 | + | |
269 | +#colorbox .login-box form { | |
270 | + margin: 0; | |
271 | + width: 45%; | |
272 | + /*background: url("images/img_login_popUp.png") no-repeat scroll 70% 30% #FFFFFF;*/ | |
273 | +} | |
274 | + | |
275 | +#colorbox .login-box .formfieldline input { | |
276 | + width: 95%; | |
277 | +} | |
278 | + | |
279 | +#colorbox .login-box .button-bar input.icon-login { | |
280 | + background: url("images/btn_entrar_login.png") no-repeat scroll 0 0 #FFFFFF; | |
281 | + border: 0px none; | |
282 | + font-family: arial,sans-serif; | |
283 | + font-size: 16px; | |
284 | + font-weight: bold; | |
285 | + height: 50px !important; | |
286 | + max-height: 50px !important; | |
287 | + padding: 0; | |
288 | + text-transform: uppercase; | |
289 | + width: 145px; | |
290 | + cursor: pointer; | |
291 | +} | |
292 | + | |
293 | +#colorbox .login-box .button-bar input.icon-login:hover { | |
294 | + background-image: url("images/btn_entrar_login_hover.png"); | |
295 | +} | |
296 | + | |
297 | +#colorbox .login-box .button-bar a.icon-close { | |
298 | + /*background: url("images/btn_cancelar_login.png") repeat-x scroll 0 0 #FFFFFF;*/ | |
299 | + background-color: #FCE9E8; | |
300 | + background-image: none; | |
301 | + border: 0 none; | |
302 | + border-radius: 5px 5px 5px 5px; | |
303 | + color: #CE5E5E; | |
304 | + font-size: 16px; | |
305 | + font-weight: bold; | |
306 | + height: 35px; | |
307 | + padding: 14px 13px 0; | |
308 | + text-align: center; | |
309 | + text-transform: uppercase; | |
310 | + width: 115px; | |
311 | +} | |
312 | +#colorbox .login-box .button-bar a.icon-close:hover { | |
313 | + background-color: #FFD1CF; | |
314 | +} | |
315 | + | |
316 | +#colorbox .login-box .button-bar input.submit, | |
317 | +#colorbox .login-box .button-bar a.icon-close { | |
318 | + border: 0px none; | |
319 | +} | |
320 | + | |
321 | +#colorbox .login-box .button-bar { | |
322 | + float: none; | |
323 | + margin-bottom: 1em; | |
324 | + margin-top: 1em; | |
325 | + width: 100%; | |
326 | +} | |
327 | + | |
328 | +#colorbox .login-box .button-bar .icon-add{ | |
329 | + background-image: none; | |
330 | + color: #004B82; | |
331 | + float: right; | |
332 | + font-size: 16px; | |
333 | + font-weight: bold; | |
334 | + margin-right: 75px; | |
335 | + padding: 10px; | |
336 | + position: relative; | |
337 | + text-align: center; | |
338 | + top: -3em; | |
339 | + width: 30%; | |
340 | +} | |
341 | + | |
342 | + | |
343 | +#colorbox .login-box .button-bar .icon-help{ | |
344 | + | |
345 | +} | |
346 | + | |
347 | +#colorbox .login-box form .button-bar { | |
348 | + float: none; | |
349 | + width: 100% | |
350 | +} | |
351 | + | |
352 | + | |
353 | +#colorbox .login-box .button-bar a.button.icon-help, | |
354 | +#colorbox .login-box .button-bar a.button.icon-add { | |
355 | + display: none; | |
356 | +} | |
357 | + | ... | ... |