thisisnotras

Ryu BOF3

Dec 18th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.49 KB | None | 0 0
  1. <Style>
  2.  
  3. .pfor {display: none;}
  4. #profile {background: transparent; border: 0px;}
  5.  
  6. #whole {
  7. position: fixed;
  8. top: 0px;
  9. left: 0px;
  10. right: 0px;
  11. bottom: 0px;
  12. background-image:url(http://i66.tinypic.com/2hevqd0.jpg);
  13. background-repeat: no-repeat;
  14. background-position: bottom right;
  15. background-size: auto 100%;
  16. }
  17.  
  18. #ryu{
  19. top: 0px;
  20. right: 0px;
  21. bottom: 0px;
  22. left: 0px;
  23. position: absolute;
  24. background-image:url(http://i65.tinypic.com/30tphk2.jpg);
  25. background-repeat: repeat;
  26. background-size: 80% auto;
  27. opacity: 1;
  28. transition: all 1s;
  29. -webkit-transition: all 1s;
  30. }
  31.  
  32. @font-face{ src:url(https://dl.dropboxusercontent.com/u/4556289/yataghan.ttf);
  33. font-family:'titlefont';
  34. }
  35.  
  36. @font-face{
  37. src:url(https://dl.dropboxusercontent.com/u/4556289/magic11.ttf);
  38. font-family:'bodyfont';
  39. }
  40.  
  41. #titlediv{position: absolute;
  42. left: 0px;
  43. right: 100px;
  44. top: 0px;
  45. bottom: 100px;
  46. margin: auto;
  47. height: 500px;
  48. width: 200px;
  49. border: 0px solid black;
  50. transition: all 1s;
  51. -webkit-transition: all 1s;
  52. opacity: 0;}
  53.  
  54. #thetitle{position: absolute;
  55. top: 50px;
  56. left: 0px;
  57. right: 0px;
  58. text-align: center;
  59. font-size: 50pt;
  60. font-family:'titlefont';
  61. color: #6F6A9C;}
  62.  
  63. #linespread{
  64. position: absolute;
  65. top: 132px;
  66. height: 3px;
  67. background: #3C3442;
  68. width: 0px;
  69. left: 0px;
  70. right: 0px;
  71. margin: auto;
  72. border: 1px solid transparent;
  73. border-radius: 50px 50px 50px 50px;
  74. transition: all 1s;
  75. -webkit-transition: all 1s;
  76. opacity: 0;
  77. }
  78.  
  79. #whole:hover #ryu{
  80. opacity: 0;
  81. transition: all 5s;
  82. -webkit-transition: all 5s;
  83. }
  84. #whole:hover #titlediv{
  85. transition: all 3s .3s;
  86. -webkit-transition: all 3s .3s;
  87. opacity: 1;
  88. }
  89. #whole:hover #linespread{
  90. transition: all 1s 2s, opacity 6s 1s;
  91. -webkit-transition: all 1s 2s, opacity 6s 1s;
  92. width: 120px;
  93. opacity: 1;
  94. }
  95.  
  96. #boxspread{position: absolute;
  97. left: -150px;
  98. width: 500px;
  99. height: 450px;
  100. bottom: -120px;
  101. border: 0px solid black;
  102. overflow: hidden;
  103. border-radius: 20px 20px 20px 20px;
  104. transition: all 1s;
  105. -webkit-transition: all 1s;
  106. opacity: 0;}
  107.  
  108. #backfiller{
  109. position: absolute;
  110. top: 0px;
  111. left: 0px;
  112. height: 100%;
  113. width: 100%;
  114. opacity: .4;
  115. background: blue;
  116. border-radius: 20px 20px 20px 20px;
  117. }
  118.  
  119. #texttime{position: absolute;
  120. top: 10px;
  121. left: 10px;
  122. right: 10px;
  123. bottom: 10px;
  124. overflow: hidden;
  125. border: 2px solid #726D9D;
  126. border-radius: 20px 20px 20px 20px;
  127. box-sizing: border-box;}
  128.  
  129. #linkbox{
  130. position: absolute;
  131. top: 5px;
  132. left: 15px;
  133. height: 20px;
  134. width: 200px;
  135. border: 1px solid black;
  136. font-weight: 600;
  137. word-spacing: 10px;
  138. font-family:'titlefont';
  139. font-size: 10pt;}
  140.  
  141. #contentbox{position: absolute;
  142. top: 5px;
  143. left: 2px;
  144. right: 2px;
  145. bottom: 5px;
  146. overflow: auto;
  147. border: 0px solid black;
  148. box-sizing: border-box;
  149. padding: 5px;
  150. text-align: left;
  151. font-family:'bodyfont';
  152. font-size: 14pt;
  153. font-weight: 500;
  154. color: color;
  155. font-style:italic;
  156. transition: all 1s;
  157. -webkit-transition: all 1s;
  158. border-radius: 10px 10px 10px 10px;}
  159.  
  160. #whole:hover #boxspread{
  161. transition: all 2s 2.5s;
  162. -webkit-transition: all 2s 2.5s;
  163. opacity: 1;
  164. }
  165.  
  166. </style>
  167.  
  168. <div id="whole">
  169. <div id="ryu">
  170. </div>
  171. <div id="titlediv">
  172. <div id="thetitle">
  173. RYU
  174. </div>
  175. <div id="linespread">
  176. </div>
  177. <div id="boxspread">
  178. <div id="backfiller">
  179. </div>
  180. <div id="texttime">
  181. <div id="contentbox">
  182. TYPE ALL CONTENT HERE.
  183. </div>
  184. </div>
  185. </div>
  186. </div>
  187. </div>
Advertisement
Add Comment
Please, Sign In to add comment