style.css 992 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. .container{
  6. margin-left: 0;
  7. }
  8. button {
  9. position: absolute;
  10. top: 0;
  11. right: 0;
  12. bottom: 0;
  13. left: 0;
  14. z-index: 1;
  15. display: block;
  16. height: 20%;
  17. width: 50%;
  18. margin: auto;
  19. padding: 0;
  20. font: 300 2em/1em 'Courier New', Courier, monospace;
  21. border: 0;
  22. background: transparent;
  23. color: white;
  24. cursor: pointer;
  25. text-align: center;
  26. text-transform: uppercase;
  27. letter-spacing: 3px;
  28. word-spacing: 5px;
  29. text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  30. outline: none;
  31. }
  32. button.click {
  33. -webkit-animation: color 900ms linear;
  34. animation: color 900ms linear;
  35. }
  36. @-webkit-keyframes color {
  37. 0%,
  38. 20%,
  39. 35%,
  40. 55% {
  41. color: #19569A;
  42. }
  43. 10%,
  44. 30%,
  45. 40%,
  46. 70% {
  47. color: white;
  48. }
  49. }
  50. @keyframes color {
  51. 0%,
  52. 20%,
  53. 35%,
  54. 55% {
  55. color: #19569A;
  56. }
  57. 10%,
  58. 30%,
  59. 40%,
  60. 70% {
  61. color: white;
  62. }
  63. }