form.css 579 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. body{
  2. background:#fff;
  3. }
  4. .blue{
  5. background-color: #4de
  6. }
  7. #blocao{
  8. position:relative;
  9. margin:auto;
  10. width:500px;
  11. top:0px;
  12. padding-bottom:20px;
  13. text-align:center;
  14. background-color:#fff;
  15. animation-name:down;
  16. animation-duration:1s
  17. }
  18. form{
  19. width:50%;
  20. margin:auto;
  21. }
  22. input{
  23. display:block;
  24. margin:5px;
  25. width:100%;
  26. height:50px;
  27. text-align:center;
  28. }
  29. input[type=submit]{
  30. width:100%;
  31. }
  32. input[type=submit]:hover{
  33. text-decoration: none;
  34. }
  35. @keyframes down{
  36. 0%{
  37. margin-top:-10%;
  38. opacity:0.3;
  39. }
  40. 100%{
  41. margin-top:0;
  42. opacity:1;
  43. }
  44. }