Advertisement
Guest User

Login.css

a guest
Dec 30th, 2013
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.49 KB | None | 0 0
  1. /* Reset CSS */
  2. a, abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  3.     margin: 0;
  4.     padding: 0;
  5. }
  6.  
  7. #content {
  8.     padding-top: 40px;
  9.     width: 35%;
  10.     display: block;
  11.     margin-left: auto;
  12.     margin-right: auto;
  13. }
  14.  
  15. #divLogo {
  16.     width: 100%;
  17.    
  18. }
  19.  
  20. #logo {
  21.     width:90%;
  22.     display: block;
  23.     margin-left: auto;
  24.     margin-right: auto;
  25. }
  26.  
  27. html{
  28.      height: 100%;
  29. }
  30.  
  31. body {
  32.    
  33.     height: 100%;
  34.     width: 100%;
  35.     font-family: calibri, sans-serif;
  36.     /*radial gradiente na cor de fundo*/
  37.     background-image: -webkit-gradient(radial, center center, 0, center center, 820, from(#00CD9A), to(#00A55E));  
  38. }
  39.  
  40. /*Cor do placeholder*/
  41. input::-webkit-input-placeholder {
  42.     color: #fff;
  43. }
  44.  
  45. input{
  46.     -webkit-border-radius:8px; 
  47.     outline:none;
  48.     font-size: 30px;
  49.     font-family: calibri, sans-serif;  
  50. }
  51.  
  52. input[type=text],input[type=password]{ 
  53.     color: #fff;
  54.     border: 2px solid #7dffd7;
  55.     height: 50px;  
  56.     width: 93%;
  57.     margin-top: 10px;
  58. }
  59.  
  60.  
  61. input[type=button]{
  62.     background-color: #fff;
  63.     color: #00CC8B;
  64.     border: none;
  65.     height: 50px;
  66.     width: 100%;
  67.     margin-top: 10px;
  68. }
  69.  
  70.  
  71. #userTextField {
  72.     background: url(../images/user.png) no-repeat scroll 7px center;       
  73.     padding-left: 30px;
  74. }
  75.  
  76. #passwordTextField {
  77.     background: url(../images/password.png) no-repeat scroll 7px center;           
  78.     padding-left: 30px;
  79.  
  80. }
  81.  
  82. #quadradoMagico{
  83.     -webkit-border-radius:8px; 
  84.     outline:none;
  85.     font-size: 30px;
  86.     font-family: calibri, sans-serif;
  87.     background-color: #fff;
  88.     color: #00CC8B;
  89.     border: none;
  90.     height: 50px;
  91.     width: 100%;
  92.     margin-top: 10px;
  93. }
  94.  
  95. #center{
  96.     padding-top: 40px;
  97. }
  98.  
  99. #powered{
  100.     width:15%;
  101.     height: auto;
  102.     margin: auto;
  103. }
  104.  
  105. #footer{
  106.     width: 100%;
  107.     background: none repeat scroll 0 0 transparent;
  108.     bottom: 0;
  109.     position: absolute;
  110.     text-align: center;
  111.    
  112. }
  113.  
  114. #page {
  115.     min-height: 100%;
  116.     width: 100%;
  117.     position: relative;
  118. }
  119.  
  120.  
  121.  
  122. #divMessage{
  123.     width: 100%;
  124.     height: 50px;
  125.  
  126. }
  127.  
  128. #divMessage div{
  129.     display:none;
  130.     background-color:#DA5B7A;
  131.     height:50px;
  132.     width: 50%;
  133.     margin-left: auto;
  134.     margin-right: auto;
  135. }
  136. #divMessage div p {
  137.     padding: 10px;
  138.     text-align: center;
  139.     color: #fff;
  140. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement