Advertisement
thisisnotras

First Layer

Jul 5th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.79 KB | None | 0 0
  1. /* STYLE FIRST LAYER */
  2.  
  3. body {background: white;}
  4.  
  5. a {color: black;}
  6.  
  7. #bigbody {
  8. position: fixed;
  9. top: 0px;
  10. left: 0px;
  11. right: 0px;
  12. bottom: 0px;
  13. background-image:
  14. url(http://i61.tinypic.com/vsjdvm.jpg);
  15. }
  16.  
  17. #container{
  18. height: 300px;
  19. width: 300px;
  20. position: absolute;
  21. border: 0px solid red;
  22. overflow:hidden;
  23. top: 20%;
  24. left: 38%;
  25. }
  26.  
  27. #vanishing{
  28. height: 30px;
  29. width: 10px;
  30. border: 0px solid black;
  31. position: absolute;
  32. top: 145px;
  33. left: 110px;
  34. -webkit-animation: xvanish 180s;
  35. opacity: 0;
  36. z-index: 1;
  37. }
  38.  
  39. @-webkit-keyframes xvanish{
  40. 0% {opacity: 0;}
  41. .5% {opacity: 1; }
  42. 100 {opacity 1; }
  43. opacity: 1;
  44. }
  45.  
  46. #vanishing.second {
  47. left: 120px;
  48. -webkit-animation-delay: .5s;}
  49.  
  50. #vanishing.third {
  51. left: 130px;
  52. -webkit-animation-delay: 1s;}
  53.  
  54. #vanishing.fourth {
  55. left: 140px;
  56. -webkit-animation-delay: 1.5s;}
  57.  
  58. #vanishing.fifth {
  59. left: 150px;
  60. -webkit-animation-delay: 2s;}
  61.  
  62. #vanishing.sixth {
  63. left: 160px;
  64. -webkit-animation-delay: 2.5s;}
  65.  
  66. #vanishing.seventh {
  67. left: 170px;
  68. -webkit-animation-delay: 3s;}
  69.  
  70. #vanishing.eigth {
  71. left: 180px;
  72. -webkit-animation-delay: 3.5s;}
  73.  
  74. #entertexthere{
  75. height: 160px;
  76. width: 200px;
  77. border: 1px solid black;
  78. position: absolute;
  79. top: 70px;
  80. left: 50px;
  81. z-index: 0;
  82. background: grey;
  83. opacity: .5;}
  84.  
  85. #usernamediv{
  86. position: absolute;
  87. top: 100px;
  88. left: 100px;
  89. border: 1px solid black;
  90. height: 25px;
  91. width: 80px;
  92. padding-left: 20px;
  93. background: white;
  94. }
  95.  
  96. #passworddiv
  97. { position: absolute;
  98. height: 25px;
  99. width: 100px;
  100. border: 1px solid black;
  101. top: 140px;
  102. left: 100px;
  103. background: white;
  104. }
  105.  
  106. #presslogin
  107. { position: absolute;
  108. height: 20px;
  109. width: 80px;
  110. top: 180px;
  111. left: 110px;
  112. z-index: 1;
  113. border: 1px solid black;
  114. text-align: center;
  115. background: tan;
  116. -webkit-animation: tothefront 180s;
  117. }
  118.  
  119. #aroundlogin
  120. {position: absolute;
  121. height: 22px;
  122. width: 84px;
  123. border: 1px solid black;
  124. top: 178px;
  125. left: 108px;
  126. text-align: center;
  127. padding-top: 2px;
  128. z-index: 2;
  129. color: grey;}
  130.  
  131. @-webkit-keyframes tothefront{
  132. 0% {z-index: 1;}
  133. 12% {z-index: 3;}
  134. 100% {z-index: 3;}
  135. }
  136.  
  137. /* FIRST LAYER START */
  138.  
  139. <div id="bigbody">
  140. <div id="container">
  141. <div id="vanishing">*
  142. </div>
  143. <div id="vanishing" class="second">*
  144. </div>
  145. <div id="vanishing" class="third">*
  146. </div>
  147. <div id="vanishing" class="fourth">*
  148. </div>
  149. <div id="vanishing" class="fifth">*
  150. </div>
  151. <div id="vanishing" class="sixth">*
  152. </div>
  153. <div id="vanishing" class="seventh">*
  154. </div>
  155. <div id="vanishing" class="eigth">*
  156. </div>
  157. <div id="entertexthere">
  158. </div>
  159. <div id="usernamediv">admin
  160. </div>
  161. <div id="passworddiv">
  162. </div>
  163. <div id="aroundlogin">login
  164. </div>
  165. <a href="blahblahblah"><div id="presslogin">login
  166. </div></a>
  167.  
  168. </div>
  169. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement