Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document url("http://webquote.020.i.frys.com/Quote/Quote_Main.jsp"),
  4. url("http://webquote/Quote/Quote_Main.jsp"),
  5. url("http://webquote/Quote/Quote_Front.jsp") {
  6. body {
  7. animation: 60s linear infinite alternate rainbow, 120s linear infinite alternate pulse;
  8. height: 100%;
  9. overflow: hidden;
  10. }
  11.  
  12. body:after {
  13. background: url(http://rs255.pbsrc.com/albums/hh121/fgf284/Banana2.gif~c200);
  14. content: "";
  15. width: 100%;
  16. display: block;
  17. height: 200px;
  18. position: absolute;
  19. bottom: 0;
  20. left: 0;
  21. }
  22.  
  23. #isc_OF {
  24. opacity: 1 !important;
  25. }
  26.  
  27. td.menuButton {
  28. animation: 60s linear infinite alternate rainbow;
  29. animation-delay: -80s;
  30. border-color: blue;
  31. }
  32.  
  33. td.menuButtonOver,
  34. td.menuButtonDown {
  35. animation: 60s linear infinite alternate rainbow;
  36. border-color: blue;
  37. }
  38.  
  39. .menuButton * {
  40. animation: 60s linear infinite alternate rainbow;
  41. animation-delay: -40s;
  42. }
  43.  
  44. .modalMask {
  45. opacity: 1;
  46. animation: 60s linear infinite alternate rainbow;
  47. animation-delay: -1s;
  48. }
  49.  
  50. div[eventproxy$="_shadow"] {
  51. display: none !important;
  52. }
  53.  
  54. #isc_0,
  55. #isc_C {
  56. width: 0 !important;
  57. }
  58.  
  59. #isc_M label,
  60. #isc_2W label {
  61. color: white;
  62. }
  63.  
  64. .customButton,
  65. .button {
  66. animation: 60s linear infinite alternate rainbow;
  67. animation-delay: -10s;
  68. }
  69.  
  70. .customButtonOver,
  71. .customButtonDown,
  72. .buttonOver,
  73. .buttonDown {
  74. animation: 60s linear infinite alternate rainbow;
  75. }
  76.  
  77. .padding5 {
  78. font-family: "Comic Sans MS";
  79. color: white;
  80. }
  81.  
  82. img[src$="headerGradient.gif"] {
  83. display: none !important;
  84. }
  85.  
  86. div[eventproxy$="headerBackground"] {
  87. animation: 60s linear infinite alternate rainbow;
  88. animation-delay: -30s;
  89. }
  90.  
  91. @keyframes rainbow {
  92. 0% {
  93. background-color: red;
  94. border-color: yellow;
  95. color: cyan;
  96. }
  97. 10% {
  98. background-color: orange;
  99. border-color: yellowgreen;
  100. color: blue;
  101. }
  102. 20% {
  103. background-color: gold;
  104. border-color: green;
  105. color: violet;
  106. }
  107. 30% {
  108. background-color: yellow;
  109. border-color: cyan;
  110. color: magenta;
  111. }
  112. 40% {
  113. background-color: yellowgreen;
  114. border-color: blue;
  115. color: indigo;
  116. }
  117. 50% {
  118. background-color: green;
  119. border-color: violet;
  120. color: green;
  121. }
  122. 60% {
  123. background-color: cyan;
  124. border-color: magenta;
  125. color: red;
  126. }
  127. 70% {
  128. background-color: blue;
  129. border-color: indigo;
  130. color: orange;
  131. }
  132. 80% {
  133. background-color: violet;
  134. border-color: red;
  135. color: gold;
  136. }
  137. 90% {
  138. background-color: magenta;
  139. border-color: orange;
  140. color: yellow;
  141. }
  142. 100% {
  143. background-color: indigo;
  144. border-color: gold;
  145. color: yellowgreen;
  146. }
  147. }
  148.  
  149. @keyframes pulse {
  150. 0% {
  151. transform: scale(1.05);
  152. }
  153. 100% {
  154. transform: scale(0.95);
  155. }
  156. }
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement