Advertisement
ruberval

Css

Mar 12th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.14 KB | None | 0 0
  1. *{
  2.     margin:0;
  3.     padding:0;
  4.     outline:none;
  5.     list-style:none;
  6. }
  7. body{
  8.     font:700 16px Oswald;
  9. }
  10. #login{
  11.     width:310px;
  12.     margin:0 auto;
  13.     position:relative;
  14.     top:100px;
  15.     border:10px solid #59c754;
  16.     padding:15px;
  17. }
  18.  
  19. .logo{
  20.     width:250px;
  21.     height:370px;
  22.     margin:0 auto;
  23.     padding:7px;
  24. }
  25.  
  26.  
  27. #login label{
  28.     display:block;
  29.     padding:5px 0 0 0;
  30. }
  31. .acomodar{
  32.     margin:0 auto;
  33.     width:550px;
  34. }
  35. .txt{
  36.     border:none;
  37.     height:30px;
  38.     width:250px;
  39.     border:thin solid #063;
  40. }
  41. .txt:focus{
  42.     border:thin solid #FFA500;
  43.     box-shadow:0 2px 10px #FFA500;
  44.     -webkit-box-shadow:0 2px 10px #FFA500;
  45.     -moz-box-shadow:0 2px 10px #FFA500;
  46. }
  47. .sb{
  48.     display:block;
  49.     border:none;
  50.     width:250px;
  51.     height:40px;
  52.     margin-top:10px;
  53.     cursor:pointer;
  54.     font:400 18px Oswald;
  55.     color:#666;
  56. }
  57. .sb:hover{
  58.     background:#FF8040;
  59.     color::fff;
  60. }
  61. /*classe de heranca*/
  62. .bradius{
  63.     border-radius:6px;
  64.     -webkit-border-radius:6px;
  65.     -moz-border-radius:6px;
  66. }
  67. .flet{
  68.     float:left;
  69. }
  70. .fright{
  71.     float:right;
  72. }
  73. /*multiplos estilos*/
  74. .txt,.txt:focus, .sb,.sb:hover{
  75.     transition:all 0.5s linear;
  76.     -webkit-transition:all 0.5s linear;
  77.     -moz-transition:all 0.5s linear;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement