Advertisement
hanimjay

Better by Myself (sig)

Jul 25th, 2020
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. <style>
  2. :root{
  3. --Laurel: #A9BA9D;
  4. --Hunter: #3F704D;
  5. --Lime: #C7EA46;
  6. --Sacramento: #042937;
  7. --White: #ffffff;
  8. }
  9.  
  10. #betterbyme-sig{
  11. position: relative;
  12. margin: 10px auto;
  13. overflow: hidden;
  14. width: 400px;
  15. height: 180px;
  16. background: var(--Laurel);
  17. }
  18.  
  19. #betterbyme-sig ::-webkit-scrollbar {
  20. width: 1px;
  21. }
  22.  
  23. #betterbyme-sig ::-webkit-scrollbar-track {
  24. background: var(--White);
  25. }
  26.  
  27. #betterbyme-sig ::-webkit-scrollbar-thumb {
  28. background: var(--Hunter);
  29. }
  30.  
  31. #betterbyme-sig .border{
  32. position: absolute;
  33. width: 380px;
  34. height: 170px;
  35. top: -1px;
  36. left: 9px;
  37. background: transparent;
  38. border: 0.5px solid var(--Hunter);
  39. }
  40.  
  41. #betterbyme-sig .top-shape{
  42. position: absolute;
  43. width: 164px;
  44. height: 164px;
  45. top: -135px;
  46. left: 118px;
  47. background: var(--Lime);
  48. border-radius: 100px;
  49. transition: 0.35s;
  50. }
  51. #betterbyme-sig:hover .top-shape{
  52. top: -165px;
  53. transition: 0.35s;
  54. }
  55.  
  56. #betterbyme-sig .bottom-shape{
  57. position: absolute;
  58. width: 164px;
  59. height: 129px;
  60. bottom: -30px;
  61. left: 118px;
  62. background: var(--Lime);
  63. border-radius: 100px 100px 0px 0px;
  64. transition: 0.35s;
  65. }
  66. #betterbyme-sig:hover .bottom-shape{
  67. bottom: 11px;
  68. transition: 0.35s;
  69. }
  70.  
  71. #betterbyme-sig .title{
  72. position: absolute;
  73. width: 400px;
  74. height: 180px;
  75. top: 55px;
  76. left: 0px;
  77. background: transparent;
  78. font-family: 'Montserrat', sans-serif;
  79. font-weight: 500;
  80. font-size: 10px;
  81. line-height: 15px;
  82. letter-spacing: 1px;
  83. text-transform: uppercase;
  84. color: var(--Sacramento);
  85. transition: 0.35s;
  86. }
  87. #betterbyme-sig:hover .title{
  88. top: -18px;
  89. transition: 0.35s;
  90. transform: scale(0.52);
  91. }
  92.  
  93. #betterbyme-sig .title b{
  94. font-family: 'Sorts Mill Goudy', serif;
  95. font-weight: normal;
  96. font-size: 64px;
  97. line-height: 45px;
  98. text-transform: lowercase;
  99. }
  100.  
  101. #betterbyme-sig .icon img{
  102. position: absolute;
  103. width: 80px;
  104. height: 80px;
  105. left: 57px;
  106. bottom: -85px;
  107. background: #C4C4C4;
  108. border-radius: 100px;
  109. transition: 0.35s;
  110. transform: rotate(-25deg);
  111. }
  112. #betterbyme-sig:hover .icon img{
  113. bottom: 50px;
  114. transition: 0.7s;
  115. }
  116.  
  117. #betterbyme-sig a{
  118. text-decoration: none;
  119. color: var(--Sacramento);
  120. }
  121. #betterbyme-sig a:hover{
  122. text-decoration: line-through;
  123. }
  124.  
  125. #betterbyme-sig .links{
  126. text-decoration: none;
  127. position: absolute;
  128. bottom: 0px;
  129. right: 216px;
  130. font-family: 'Montserrat', sans-serif;
  131. font-weight: 800;
  132. font-size: 22px;
  133. line-height: 28px;
  134. opacity: 0;
  135. transition: 0.35s;
  136. }
  137. #betterbyme-sig:hover .links{
  138. opacity: 1;
  139. transition: 0.45s;
  140. bottom: 38px;
  141. }
  142.  
  143. #betterbyme-sig .textbox{
  144. position: absolute;
  145. width: 100px;
  146. height: 32px;
  147. bottom: -65px;
  148. right: 57px;
  149. overflow: auto;
  150. font-family: 'Montserrat', sans-serif;
  151. font-size: 8px;
  152. font-weight: 500px;
  153. line-height: 11px;
  154. text-align: justify;
  155. padding-right: 10px;
  156. background: var(--White);
  157. border: 15px solid var(--White);
  158. color: var(--Sacramento);
  159. transition: 0.35s;
  160. }
  161. #betterbyme-sig:hover .textbox{
  162. bottom: 32px;
  163. transition: 0.5s;
  164. }
  165. </style>
  166.  
  167. <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600&family=Sorts+Mill+Goudy&display=swap" rel="stylesheet">
  168.  
  169. <center>
  170. <div id="betterbyme-sig">
  171. <div class="border"></div>
  172. <div class="top-shape"></div>
  173. <div class="bottom-shape"></div>
  174.  
  175. <div class="title">
  176. better by <br> <b>myself</b>
  177. </div>
  178.  
  179. <div class="icon">
  180. <a href="https://shadowplayers.jcink.net/index.php?showuser=95" title="Hanie ©"><img src="https://i.imgur.com/Na1m1zX.gif"></a>
  181. </div>
  182.  
  183. <div class="links">
  184. <a href="#" title="Link 1">&#9787;</a><br>
  185. <a href="#" title="Link 2">&#10039;</a>
  186. </div>
  187.  
  188. <div class="textbox">
  189. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean gravida dolor in nibh tempor tristique.
  190. </div>
  191.  
  192. </div>
  193. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement