Advertisement
iSmirnoff

[CSS] Registro Online

Sep 19th, 2013
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.80 KB | None | 0 0
  1. body {
  2.     background:#9CF;   
  3. }
  4. .formularioPainel {
  5.  
  6.     margin: 50px auto;
  7.     width:500px;
  8.     height:340px;
  9.     background:#999;
  10.     padding:10px;
  11.  
  12. }
  13. .formularioPainel form input {
  14.  
  15.     padding:10px;
  16.     border:1px solid #000;
  17.     display:block;
  18.     width:500px;
  19.     font-family: Arial;
  20.     font-size: 18px;
  21.  
  22. }
  23. .formularioPainel h1 {
  24.  
  25.     font-size:20px;
  26.     font-family: Arial;
  27.     color:#000;
  28. }
  29.  
  30. .formularioPainel form input[type="submit"] {
  31.  
  32.     margin-top:5px;
  33.     width:100px;
  34.     font-family: Arial;
  35.     font-size:14px;
  36.     background:#999;
  37.     color:#000;
  38. }
  39.  
  40. .formularioPainel form input[type="submit"]:hover {
  41.  
  42.     background:#333;
  43.     color:#FFF;
  44.     cursor: pointer;
  45. }
  46. .formularioPainel h2 {
  47.  
  48.     color:#000;
  49.     font-family:Arial;
  50.     font-size:16px;
  51. }
  52. .formularioPainel span {
  53.  
  54.     color:#000;
  55.     font-family:Arial;
  56.     font-size:14px;
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement