Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.64 KB | None | 0 0
  1. body { background-color: rgba(0, 0, 0, 0); margin: 0px auto; overflow: hidden; }
  2.  
  3. html, body {
  4. margin: 0;
  5. padding: 0;
  6. }
  7.  
  8. #widget, #body, #alert-box, #wrap, #alert-text-wrap, #alert-text{
  9. position: relative;
  10. overflow: hidden;
  11. width: 1280px;
  12. height: 720px;
  13. top: 0;
  14. left: 0;
  15. opacity: 1;
  16. }
  17.  
  18. #alert-box.hidden, .hidden {
  19. opacity: 1;
  20. }
  21.  
  22. #line {
  23. width: 0;
  24. height: 0;
  25. position: absolute;
  26. top: 200px;
  27. left: 50%;
  28. margin-left: 0;
  29. display: block;
  30. -webkit-transform: rotate(-5deg);
  31. transform: rotate(-5deg);
  32. opacity: 0;
  33. -webkit-animation: lineIn 0.2s .6s forwards,
  34. lineGrow 0.4s 1s forwards,
  35. linehide 0.5s 6.7s forwards;
  36. animation: lineIn 0.2s .6s forwards,
  37. lineGrow 0.4s 1s forwards,
  38. linehide 0.5s 6.7s forwards;
  39. }
  40.  
  41. @-webkit-keyframes lineIn {
  42. 0% {width: 0; height: 0px;}
  43. 100% {width: 2200px; margin-left: -1100px; opacity: 1; height: 3px;}
  44. }
  45.  
  46. @keyframes lineIn {
  47. 0% {width: 0; height: 0px;}
  48. 100% {width: 2200px; margin-left: -1100px; opacity: 1; height: 3px;}
  49. }
  50.  
  51. @-webkit-keyframes lineGrow {
  52. 0% {}
  53. 100% {height: 100px; top: 150px;}
  54. }
  55.  
  56. @keyframes lineGrow {
  57. 0% {}
  58. 100% {height: 100px; top: 150px;}
  59. }
  60.  
  61. @-webkit-keyframes linehide {
  62. 0% {height: 100px;top: 150px;}
  63. 100% {height: 0px; top: 200px;}
  64. }
  65.  
  66. @keyframes linehide {
  67. 0% {height: 100px;top: 150px;}
  68. 100% {height: 0px; top: 200px;}
  69. }
  70.  
  71.  
  72. #mainText {
  73. text-align: center;
  74. font-size: 50px;
  75. width: 2200px;
  76. display: block;
  77. line-height: 100px;
  78. text-indent: -3000px;
  79. position: absolute;
  80. top: -20px;
  81. white-space: nowrap;
  82. opacity: 0;
  83. font-family: "BigNoodleTitling", sans-serif;
  84. font-style: italic;
  85. text-transform: uppercase;
  86. display: block !important;
  87. position: absolute !important;
  88. -webkit-animation: textIn 0.4s 1.4s forwards,
  89. textTravel 4.6s 1.8s linear forwards;
  90. animation: textIn 0.4s 1.4s forwards,
  91. textTravel 4.6s 1.8s linear forwards;
  92. }
  93.  
  94. @-webkit-keyframes textIn {
  95. 0% {text-indent: -3000px;opacity: 1;}
  96. 100% {text-indent: -20px;opacity: 1;}
  97. }
  98.  
  99. @keyframes textIn {
  100. 0% {text-indent: -3000px;opacity: 1;}
  101. 100% {text-indent: -20px;opacity: 1;}
  102. }
  103.  
  104. @-webkit-keyframes textTravel {
  105. 0% {text-indent: -20px;}
  106. 90% {text-indent: 20px;}
  107. 95% {text-indent: 3000px;}
  108. 100% {text-indent: 3000px;}
  109. }
  110.  
  111. @keyframes textTravel {
  112. 0% {text-indent: -20px;}
  113. 90% {text-indent: 20px;}
  114. 95% {text-indent: 3000px;}
  115. 100% {text-indent: 3000px;}
  116. }
  117.  
  118. #subText {
  119. text-align: center;
  120. font-size: 20px;
  121. width: 2200px;
  122. display: block;
  123. line-height: 40px;
  124. text-indent: 3000px;
  125. position: absolute;
  126. bottom: 10px;
  127. white-space: nowrap;
  128. opacity: 0;
  129. font-family: "BigNoodleTitling", sans-serif;
  130. font-style: italic;
  131. text-transform: uppercase;
  132. display: block !important;
  133. position: absolute !important;
  134. -webkit-animation: tagIn 0.4s 1.4s forwards,
  135. tagTravel 4.6s 1.8s linear forwards;
  136. animation: tagIn 0.4s 1.4s forwards,
  137. tagTravel 4.6s 1.8s linear forwards;
  138. }
  139.  
  140. @-webkit-keyframes tagIn {
  141. 0% {text-indent: 3000px;opacity: 1;}
  142. 100% {text-indent: 20px;opacity: 1;}
  143. }
  144.  
  145. @keyframes tagIn {
  146. 0% {text-indent: 3000px;opacity: 1;}
  147. 100% {text-indent: 20px;opacity: 1;}
  148. }
  149.  
  150. @-webkit-keyframes tagTravel {
  151. 0% {text-indent: 20px;}
  152. 90% {text-indent: -20px;}
  153. 95% {text-indent: -3000px;}
  154. 100% {text-indent: -3000px;}
  155. }
  156.  
  157. @keyframes tagTravel {
  158. 0% {text-indent: 20px;}
  159. 90% {text-indent: -20px;}
  160. 95% {text-indent: -3000px;}
  161. 100% {text-indent: -3000px;}
  162. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement