Advertisement
hanimjay

for Yuki

Apr 15th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.99 KB | None | 0 0
  1. <link href="https://fonts.googleapis.com/css?family=Open+Sans|Playfair+Display" rel="stylesheet">
  2. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  3.  
  4. <style>
  5. #yuki-sig{
  6. width: 500px;
  7. height: 200px;
  8. background: url(https://images2.imgbox.com/cc/2d/NCtjCZWi_o.png);
  9. position: relative;
  10. overflow: hidden;
  11. margin: 10px auto;
  12. border: 0.5px solid #9E3036;
  13. outline: 7px solid #222;
  14. }
  15.  
  16. #yuki-sig ::-webkit-scrollbar {
  17. width: 6px;
  18. border-radius: 50px;
  19. }
  20.  
  21. #yuki-sig ::-webkit-scrollbar-track {
  22. background: #9E3036;
  23. border: 2.5px solid #222;
  24. }
  25.  
  26. #yuki-sig ::-webkit-scrollbar-thumb {
  27. background: #222;
  28. border-top: 0.5px solid #bbb;
  29. border-bottom: 0.5px solid #bbb;
  30. }
  31.  
  32. #yuki-sig .base{
  33. width: 500px;
  34. height: 200px;
  35. background: #222;
  36. opacity: 0;
  37. position: relative;
  38. transition: 0.3s ease-in 0.7s;
  39. -webkit-transition: 0.3s ease-in 0.7s;
  40. }
  41. #yuki-sig:hover .base{
  42. opacity: 0.97;
  43. transition: 0.3s ease-in 0s;
  44. -webkit-transition: 0.3s ease-in 0s;
  45. }
  46.  
  47. #yuki-sig .icon{
  48. width: 100px;
  49. height: 100px;
  50. background: #eee;
  51. position: absolute;
  52. bottom: 60px;
  53. right: 90px;
  54. border: 5px solid #222;
  55. outline: 1px solid #9E3036;
  56. z-index: 2;
  57. }
  58.  
  59. #yuki-sig .icon img{
  60. width: 100px;
  61. height: 100px;
  62. }
  63.  
  64. #yuki-sig .line{
  65. width: 299.5px;
  66. height: 59.5px;
  67. background: transparent;
  68. position: absolute;
  69. bottom: 0px;
  70. left: 0px;
  71. border-top: 0.5px solid #9E3036;
  72. border-right: 0.5px solid #9E3036;
  73. }
  74.  
  75. #yuki-sig .textbox{
  76. width: 165px;
  77. height: 60px;
  78. background: #222;
  79. opacity: 0.95;
  80. position: absolute;
  81. bottom: 75px;
  82. left: 90px;
  83. color: #ddd;
  84. overflow: auto;
  85. text-align: justify;
  86. padding-right: 7px;
  87. line-height: 10px;
  88. font-family: 'Courier', sans-serif;
  89. font-size: 9.5px;
  90. letter-spacing: 0.5px;
  91. opacity: 0;
  92. transition: 0.3s ease-in 0s;
  93. -webkit-transition: 0.3s ease-in 0s;
  94. z-index: 3;
  95. }
  96. #yuki-sig:hover .textbox{
  97. opacity: 1;
  98. transition: 0.3s ease-in 1s;
  99. -webkit-transition: 0.3s ease-in 1s;
  100. }
  101.  
  102. #yuki-sig .title{
  103. width: 171px;
  104. height: 25px;
  105. background: #222;
  106. position: absolute;
  107. top: 27px;
  108. left: 90px;
  109. border-bottom: 0.5px solid #9E3036;
  110. color: #ccc;
  111. font-family: 'Playfair Display', serif;
  112. font-style: italic;
  113. font-size: 15px;
  114. letter-spacing: 0px;
  115. line-height: 22px;
  116. transition: 0.3s ease-in 0s;
  117. -webkit-transition: 0.3s ease-in 0s;
  118. opacity: 0;
  119. }
  120. #yuki-sig:hover .title{
  121. opacity: 1;
  122. transition: 0.3s ease-in 1s;
  123. -webkit-transition: 0.3s ease-in 1s;
  124. }
  125.  
  126. #yuki-sig .navbar{
  127. width: 171px;
  128. height: 34px;
  129. background: transparent;
  130. position: absolute;
  131. bottom: 25px;
  132. left: 90px;
  133. border: 0.5px solid #9E3036;
  134. color: #bbb;
  135. font-family: 'Playfair Display', serif;
  136. font-style: italic;
  137. }
  138.  
  139. #yuki-sig .navbar .fa{
  140. color: #9E3036;
  141. margin-left: 11px;
  142. margin-right: 3px;
  143. margin-top: 9px;
  144. font-size: 14px;
  145. transition: 0.3s ease-in 0s;
  146. -webkit-transition: 0.3s ease-in 0s;
  147. }
  148. #yuki-sig .navbar .fa:hover{
  149. color: #bbb;
  150. transform: rotate(360deg);
  151. -webkit-transform: rotate(360deg);
  152. }
  153.  
  154. #yuki-sig .right{
  155. width: 500px;
  156. height: 200px;
  157. position: absolute;
  158. right: 0px;
  159. top: -145px;
  160. transition: 0.5s ease-in 0s;
  161. -webkit-transition: 0.5s ease-in 0s;
  162. }
  163. #yuki-sig:hover .right{
  164. top: 0px;
  165. transition: 0.5s ease-in 0.4s;
  166. -webkit-transition: 0.5s ease-in 0.4s;
  167. }
  168.  
  169. #yuki-sig .left{
  170. width: 500px;
  171. height: 200px;
  172. position: absolute;
  173. left: 0px;
  174. bottom: -145px;
  175. transition: 0.5s ease-in 0s;
  176. -webkit-transition: 0.5s ease-in 0s;
  177. }
  178. #yuki-sig:hover .left{
  179. bottom: 0px;
  180. transition: 0.5s ease-in 0.4s;
  181. -webkit-transition: 0.5s ease-in 0.4s;
  182. }
  183.  
  184. </style>
  185.  
  186. <center>
  187. <div id='yuki-sig'>
  188.  
  189. <div class='base'>
  190.  
  191. <div class='right'>
  192. <div class='icon'>
  193. <a href="https://shadowplayers.jcink.net/index.php?showuser=95" title="hanie ©">
  194. <img src="http://via.placeholder.com/100x100"></a>
  195. </div>
  196. </div>
  197.  
  198. <div class='left'>
  199. <div class='title'>put your title here</div>
  200.  
  201. <div class='textbox'>
  202. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ut tempor neque. Donec vel finibus velit, et ultricies justo. Donec a lorem maximus, commodo augue non, iaculis odio. Nunc porta dolor ullamcorper, imperdiet leo quis, varius massa. Maecenas rutrum mi ac accumsan imperdiet.
  203. </div>
  204.  
  205. <div class='line'></div>
  206.  
  207. <div class='navbar'>
  208. <a href="#" title="coding"><i class="fa fa-codepen"></i></a>
  209. <a href="#" title="writing"><i class="fa fa-pencil"></i></a>
  210. <a href="#" title="graphic"><i class="fa fa-diamond"></i></a>
  211. <a href="#" title="hof"><i class="fa fa-trophy"></i></a>
  212. <a href="#" title="deviantart"><i class="fa fa-deviantart"></i></a>
  213. </div>
  214. </div>
  215.  
  216. </div>
  217. </div>
  218. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement