Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. #header {
  2. color: red;
  3.  
  4. animation-name: casper;
  5. animation-duration: 3s;
  6. animation-iteration-count: infinite;
  7. animation-direction: alternate;
  8.  
  9. font-family: "Times New Roman";
  10. font-style: bold;
  11. font-style: italic;
  12. font-size: 45px;
  13. text-align: center;
  14. text-shadow: 1px 1px white;
  15.  
  16. position: fixed;
  17. top: 30px;
  18. right: auto;
  19. left: auto;
  20. }
  21.  
  22. #spotify {
  23. color:white;
  24. animation-name: ani;
  25. animation-duration: 5s;
  26. animation-iteration-count: infinite;
  27. animation-direction: normal;
  28. animation-timing-function: linear;
  29. animation-delay: -2.0s;
  30.  
  31. font-family: "Times New Roman";
  32. font-style: bold;
  33. font-style: italic;
  34. font-size: 40px;
  35. text-shadow: 1px 1px red;
  36.  
  37. position: fixed;
  38. right: 400px;
  39. top: 500px;
  40. }
  41.  
  42. #instagram {
  43. color:white;
  44. animation-name: ani;
  45. animation-duration: 5s;
  46. animation-iteration-count: infinite;
  47. animation-direction: normal;
  48. animation-timing-function: linear;
  49.  
  50. font-family: "Times New Roman";
  51. font-style: bold;
  52. font-style: italic;
  53. font-size: 40px;
  54. text-shadow: 1px 1px red;
  55.  
  56. position: fixed;
  57. right: 400px;
  58. top: 500px;
  59. }
  60.  
  61. #applemusic {
  62. color:white;
  63. animation-name: ani;
  64. animation-duration: 5s;
  65. animation-iteration-count: infinite;
  66. animation-direction: normal;
  67. animation-timing-function: linear;
  68. animation-delay: -3s;
  69.  
  70. font-family: "Times New Roman";
  71. font-style: bold;
  72. font-style: italic;
  73. font-size: 40px;
  74. text-shadow: 1px 1px red;
  75.  
  76. position: fixed;
  77. right: 400px;
  78. top: 500px;
  79. }
  80.  
  81. #vid {
  82. position:fixed;
  83. top:150px;
  84. bottom:150px;
  85. left:25px;
  86.  
  87. }
  88.  
  89.  
  90. html {
  91. background-image: url("BG.jpg");
  92. background-color: black;
  93. background-size: cover;
  94. background-position: center center;
  95. background-attachment: fixed;
  96. }
  97.  
  98. @keyframes ani {
  99. from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
  100. to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
  101. }
  102.  
  103. @keyframes casper {
  104. 0% {opacity: 0.0; top:10px; left:400px; right:400px;}
  105. 100% {opacity: 1.0; top:60px; left: 400px; right: 400px;}
  106.  
  107. }
  108.  
  109.  
  110. a:link {
  111. color: white;
  112. text-decoration:none;
  113. }
  114.  
  115. a:visited {
  116. color:white;
  117. text-decoration:none;
  118. }
  119.  
  120. a:hover {
  121. color:black;
  122. text-decoration:none;
  123. }
  124.  
  125. a:active {
  126. color:black
  127. text-decoration:none;
  128. }
  129.  
  130. @media only screen and (max-width: 768px;) {
  131.  
  132. .animation {
  133. -webkit-animation: none !important;
  134. -moz-animation: none !important;
  135. -o-animation: none !important;
  136. -ms-animation: none !important;
  137. animation: none !important;
  138. }
  139.  
  140. .vid {
  141. display: none;
  142.  
  143. }
  144.  
  145. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement