Advertisement
hanimjay

Rabbit Hole (Emilie sig)

Aug 15th, 2020 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 KB | None | 0 0
  1. <style>
  2. :root{
  3. --rosegold: #F9D5D3;
  4. --pink: #ECA4A6;
  5. --muddy: #596C60;
  6. --weed: #BBC7BA;
  7. --emerald: #99A89E;
  8. --white: #ffffff;
  9. }
  10.  
  11. #emilie-sig ::-webkit-scrollbar {
  12. width: 4px;
  13. }
  14.  
  15. #emilie-sig ::-webkit-scrollbar-track {
  16. background: #eeeeee;
  17. border-top: 3px solid #ffffff;
  18. border-bottom: 3px solid #ffffff;
  19. }
  20.  
  21. #emilie-sig ::-webkit-scrollbar-thumb {
  22. background: var(--weed);
  23. border-top: 3px solid #ffffff;
  24. }
  25.  
  26. #emilie-sig{
  27. position: relative;
  28. overflow: hidden;
  29. margin: 10px auto;
  30. background: url(https://i.imgur.com/QpXeIz4.png);
  31. width: 500px;
  32. height: 200px;
  33. border: 2px solid var(--white);
  34. }
  35.  
  36. #emilie-sig .left{
  37. position: absolute;
  38. left: 0px;
  39. top: -200px;
  40. width: 250px;
  41. height: 200px;
  42. transition: 0.4s;
  43. }
  44. #emilie-sig:hover .left{
  45. top: 0px;
  46. transition: 0.4s;
  47. }
  48.  
  49. #emilie-sig .left-box{
  50. position: absolute;
  51. left: 0px;
  52. top: 0px;
  53. width: 250px;
  54. height: 200px;
  55. background: var(--emerald);
  56. opacity: 0.95;
  57. }
  58.  
  59. #emilie-sig .right{
  60. position: absolute;
  61. width: 250px;
  62. height: 200px;
  63. left: 250px;
  64. bottom: -200px;
  65. background: var(--rosegold);
  66. transition: 0.4s;
  67. }
  68. #emilie-sig:hover .right{
  69. bottom: 0px;
  70. transition: 0.4s;
  71. }
  72.  
  73. #emilie-sig .top-ellipse{
  74. position: absolute;
  75. width: 190px;
  76. height: 190px;
  77. left: 30px;
  78. top: -95px;
  79. border: 1px solid var(--weed);
  80. border-radius: 200px;
  81. }
  82.  
  83. #emilie-sig .icon img{
  84. position: absolute;
  85. width: 70px;
  86. height: 70px;
  87. left: 35px;
  88. top: 30px;
  89. background: var(--white);
  90. border-radius: 100px;
  91. border: 6px solid var(--rosegold);
  92. padding: 2px;
  93. }
  94.  
  95. #emilie-sig .title{
  96. position: absolute;
  97. width: 135px;
  98. left: 88px;
  99. bottom: 25px;
  100. font-family: 'Playfair Display', serif;;
  101. font-weight: 400;
  102. font-size: 21px;
  103. line-height: 25px;
  104. letter-spacing: 0px;
  105. text-align: left;
  106. color: var(--white);
  107. text-transform: lowercase;
  108. background: transparent;
  109. }
  110.  
  111. #emilie-sig .title i{
  112. text-decoration: none;
  113. }
  114.  
  115. #emilie-sig .info{
  116. position: absolute;
  117. right: 25px;
  118. top: 20px;
  119. font-family: Rubik;
  120. font-weight: 400;
  121. font-size: 8.5px;
  122. line-height: 9px;
  123. text-align: right;
  124. letter-spacing: 0.05em;
  125. text-transform: uppercase;
  126. color: var(--muddy);
  127. }
  128.  
  129. #emilie-sig .links{
  130. position: absolute;
  131. width: 250px;
  132. right: 0px;
  133. top: 43px;
  134. background: transparent;
  135. }
  136.  
  137. #emilie-sig a{
  138. text-decoration: none;
  139. }
  140.  
  141. #emilie-sig .sf{
  142. display: inline-block;
  143. color: var(--emerald);
  144. font-size: 14px;
  145. margin: 2.5px;
  146. background: var(--white);
  147. padding: 8px 8px 3px 8px;
  148. border-radius: 100px;
  149. width: 16px;
  150. height: 20px;
  151. transition: 0.3s;
  152. }
  153. #emilie-sig .sf:hover{
  154. transform: rotate(360deg);
  155. transition: 0.3s;
  156. color: var(--white);
  157. background: var(--emerald);
  158. }
  159.  
  160. #emilie-sig .text-box{
  161. position: absolute;
  162. width: 250px;
  163. height: 105px;
  164. right: 0px;
  165. bottom: 0px;
  166. background: var(--white);
  167. }
  168.  
  169. #emilie-sig .scrollbox{
  170. position: absolute;
  171. width: 182px;
  172. height: 60px;
  173. right: 25px;
  174. bottom: 22px;
  175. font-family: 'Rubik', sans-serif;
  176. font-weight: 400;
  177. font-size: 9px;
  178. line-height: 12px;
  179. text-align: justify;
  180. letter-spacing: 0.02em;
  181. color: var(--muddy);
  182. overflow: auto;
  183. padding-right: 10px;
  184. }
  185.  
  186. #emilie-sig .scrollbox b{
  187. color: var(--pink);
  188. font-weight: 700;
  189. }
  190.  
  191. #emilie-sig .scrollbox i{
  192. color: var(--weed);
  193. font-weight: 400;
  194. }
  195. </style>
  196.  
  197. <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,600&display=swap" rel="stylesheet">
  198.  
  199. <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,600&family=Rubik:wght@400;700&display=swap" rel="stylesheet">
  200.  
  201. <link href="//dl.dropbox.com/s/50g6fbds3rh4m0j/saturnicons.css" rel="stylesheet">
  202.  
  203. <center>
  204. <div id="emilie-sig">
  205. <div class="left">
  206. <div class="left-box"></div>
  207. <div class="top-ellipse"></div>
  208.  
  209. <div class="icon">
  210. <a href="https://shadowplayers.jcink.net/index.php?showuser=95" title="Hanie ©">
  211. <img src="https://i.imgur.com/z1tnfho.gif"></a>
  212. </div>
  213.  
  214. <div class="title">
  215. <i><b>Fall</b></i> Inside <b>The</b> Rabbit <i>Hole</i> </div>
  216. </div>
  217.  
  218. <div class="right">
  219. <div class="info">Emilie. Age. Timezone</div>
  220.  
  221. <div class="links">
  222. <a href="#" title="deviantart"><span class="sf sf-magic-wand-o"></span></a>
  223. <a href="#" title="gallery"><span class="sf sf-heart-o"></span></a>
  224. <a href="#" title="hall of fame"><span class="sf sf-crown-o"></span></a>
  225. <a href="#" title="Link 4"><span class="sf sf-star-o"></span></a>
  226. <a href="#" title="Link 5"><span class="sf sf-moon-1-o"></span></a>
  227. </div>
  228.  
  229. <div class="text-box">
  230. <div class="scrollbox">
  231. Lorem ipsum dolor sit amet, <b>consectetur adipiscing elit</b>. Ut faucibus accumsan risus. Proin eget pretium diam, in ultricies nisi. <i>Donec aliquet enim in eros hendrerit</i>, finibus vestibulum quam placerat.
  232. </div>
  233. </div>
  234. </div>
  235.  
  236. </div>
  237. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement