You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. body {
  2. background-color:#eee;
  3. width:100%;
  4. margin:0;
  5. animation: colorchange 200s infinite;
  6. animation-delay: 3620s;
  7. }
  8. header {
  9. position:fixed;
  10. left:0;
  11. top:0;
  12. text-shadow:1px 1px 2px #888;
  13. width:100%;
  14. }
  15. h1, h2 {
  16. display:inline-block;
  17. }
  18. h1 {
  19. animation: colorchange 30s infinite;
  20. animation-direction:alternate;
  21. animation-delay:3610s;
  22. }
  23. main {
  24. margin:200px auto;
  25. width:50%;
  26. padding:50px;
  27. font-size:2em;
  28. position:relative;
  29. text-align:justify;
  30. animation: move 20s infinite;
  31. animation-delay: 3640s;
  32. animation-direction:alternate;
  33. transition:.1s;
  34. }
  35. main:hover {
  36. transform:scale(1.1);
  37. }
  38. header, main {
  39. box-shadow: 2px 2px 10px #000;
  40. background-color:#fff;
  41. }
  42. header:hover h2 {
  43. animation:colorchange 100s infinite;
  44. }
  45. footer{
  46. font-size: .9em;
  47. position: absolute;
  48. bottom: 0;
  49. right: 0;
  50. }
  51. @keyframes vibration
  52. {
  53. 0% {transform:scale(0.1);}
  54. 100% {transform:scale(1);}
  55. }
  56. @keyframes colorchange
  57. {
  58. 0% {color:#000;}
  59. 30% {color:#c04;}
  60. 40% {color:#706;}
  61. 50% {color:#007;}
  62. 60% {color:#04b;}
  63. 70% {color:#0a4;}
  64. 80% {color:#1c0;}
  65. 80% {color:#b30;}
  66. 100% {color:#f00;}
  67. }
  68. @keyframes move {
  69. 0% {top:0;left:0;}
  70. 25% {top:0;left:-10;}
  71. 50% {top:-40px;left:-20px;}
  72. 70% {top:0px;left:60px;}
  73. 87% {top:50px;left:0px;}
  74. 90% {top:-60px;left:20px;}
  75. 94% {top:90px;left:-50px;}
  76. 95% {top:0px;left:50px;}
  77. 97% {top:-90px;left:-20px;}
  78. 100% {top:0;left:0;}
  79. }
  80. @media (max-width:600px) {
  81. main {
  82. width:90%;
  83. margin: 100px auto;
  84. padding: 15px;
  85. }
  86. main:hover {
  87. transform:none;
  88. }
  89. }