Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 26th, 2012  |  syntax: None  |  size: 0.76 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /* Register */
  2. * {
  3.         padding: 0;
  4.         margin: 0;
  5. }
  6. body {
  7.         background-color: WhiteSmoke;
  8.         font-family: Arial, sans-serif;
  9. }
  10. div#betaregister {
  11.         padding: 100px;
  12. }
  13. form {
  14.         padding: 25px;
  15. }
  16. input[type=email] {
  17.         padding: 5px;
  18.         width: 250px;
  19.         height: 25px;
  20.         font-size: 16pt;
  21.         border: none;
  22.         outline: none;
  23.         -webkit-transition: box-shadow 1s;
  24. }
  25.  
  26.  
  27. input[type=email]:hover {
  28. box-shadow: 0px 0px 5px #FAF163;
  29. }
  30.  
  31.  
  32. input[type=email]:focus {
  33. box-shadow: 0px 0px 5px #EECA8B;}
  34.  
  35. input[type=submit] {
  36.         background-color: lightgray;
  37.         color: darkgray;
  38.         padding: 5px;
  39.         width: 100px;
  40.         font-size: 16pt;
  41.         border: none;
  42.         margin-left: 15px;
  43.         -webkit-transition: box-shadow 1s;
  44.  
  45. }
  46.  
  47.  
  48.  
  49. input[type=submit]:hover {
  50. box-shadow: 0px 0px 5px #EECA8B;
  51. }
  52.  
  53.  
  54.  
  55. input[type=submit]:focus {
  56.  
  57. box-shadow: 0px 0px 5px blue;
  58.  
  59. }