Advertisement
hanimjay

Mari sig (with hover)

Jul 19th, 2020
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.59 KB | None | 0 0
  1. <style>
  2. :root{
  3. --mainBg: #ffffff;
  4. --sigBorder: #A2C298;
  5. --leftOverlay: #D1E9CA;
  6. --title: #222222;
  7. --statusBg: #ffffff;
  8. --statusText: #E2CC6C;
  9. --textboxBg: #ffffff;
  10. --links: #E2CC6C;
  11. --linksHover: #A2C298;
  12. --scrollThumb: #A2C298;
  13. --scrollBorder: #A2C298;
  14. }
  15.  
  16. #mari-sigcode{
  17. position: relative;
  18. margin: 10px auto;
  19. overflow: hidden;
  20. width: 300px;
  21. height: 150px;
  22. background: var(--mainBg);
  23. border: 0.5px solid var(--sigBorder);
  24. }
  25.  
  26. #mari-sigcode .right-bg{
  27. position: absolute;
  28. width: 250px;
  29. height: 100px;
  30. right: 0px;
  31. bottom: 0px;
  32. background: url(https://i.imgur.com/cKKqkTc.gif);
  33. }
  34.  
  35. #mari-sigcode .left-overlay{
  36. position: absolute;
  37. width: 135px;
  38. height: 150px;
  39. left: 0px;
  40. top: 0px;
  41. background: var(--leftOverlay);
  42. mix-blend-mode: multiply;
  43. }
  44.  
  45. #mari-sigcode .icon img{
  46. position: absolute;
  47. width: 70px;
  48. height: 70px;
  49. left: 33px;
  50. top: 40px;
  51. }
  52.  
  53. #mari-sigcode .content-1{
  54. position: absolute;
  55. width: 165px;
  56. height: 150px;
  57. right: 0px;
  58. top: 0px;
  59. opacity: 1;
  60. transition: 0.2s;
  61. }
  62. #mari-sigcode:hover .content-1{
  63. opacity: 0;
  64. right: -20px;
  65. transition: 0.2s;
  66. }
  67.  
  68. #mari-sigcode .title{
  69. position: absolute;
  70. width: 165px;
  71. left: 20px;
  72. top: 36px;
  73. color: var(--title);
  74. font-family: 'Playfair Display', serif;
  75. font-weight: 900;
  76. font-size: 20px;
  77. line-height: 21px;
  78. text-align: left;
  79. text-transform: capitalize;
  80. }
  81.  
  82. #mari-sigcode .status{
  83. position: absolute;
  84. left: 20px;
  85. top: 87.5px;
  86. padding: 7px 12px;
  87. background: var(--statusBg);
  88. font-family: 'Poppins', sans-serif;
  89. font-weight: 400;
  90. font-size: 9px;
  91. line-height: 9px;
  92. text-align: left;
  93. color: #333333;
  94. }
  95.  
  96. #mari-sigcode .status c{
  97. color: var(--statusText);
  98. font-weight: 800;
  99. letter-spacing: 0.7px;
  100. margin-right: 4px;
  101. }
  102.  
  103. #mari-sigcode .content-2{
  104. position: absolute;
  105. width: 165px;
  106. height: 150px;
  107. right: -20px;
  108. top: 0px;
  109. opacity: 0;
  110. transition: 0.2s;
  111. }
  112. #mari-sigcode:hover .content-2{
  113. opacity: 1;
  114. right: 0px;
  115. transition: 0.2s;
  116. }
  117.  
  118. #mari-sigcode .box-bg{
  119. position: absolute;
  120. right: 20px;
  121. bottom: 20px;
  122. width: 125px;
  123. height: 60px;
  124. background: var(--textboxBg);
  125. }
  126.  
  127. #mari-sigcode .links{
  128. position: absolute;
  129. height: 50px;
  130. width: 164px;
  131. top: 15px;
  132. right: 0px;
  133. background: transparent;
  134. }
  135.  
  136. #mari-sigcode .sf{
  137. display: inline-block;
  138. color: var(--links);
  139. font-size: 15px;
  140. margin: 4.2px;
  141. transform: scale(1);
  142. transition: 0.12s;
  143. }
  144. #mari-sigcode .sf:hover{
  145. color: var(--linksHover);
  146. transform: scale(1.3);
  147. transition: 0.12s;
  148. }
  149.  
  150. #mari-sigcode a{
  151. text-decoration: none;
  152. }
  153.  
  154. #mari-sigcode .textbox{
  155. position: absolute;
  156. top: 12px;
  157. left: 15px;
  158. width: 90px;
  159. height: 36px;
  160. overflow: auto;
  161. padding-right: 9px;
  162. font-family: 'Poppins', sans-serif;
  163. font-style: normal;
  164. font-weight: 400;
  165. font-size: 8px;
  166. line-height: 12px;
  167. text-align: justify;
  168. letter-spacing: 0px;
  169. color: #333333;
  170. }
  171.  
  172. #mari-sigcode ::-webkit-scrollbar {
  173. width: 2px;
  174. }
  175.  
  176. #mari-sigcode ::-webkit-scrollbar-track {
  177. background: #ffffff;
  178. border: 0.5px solid var(--scrollBorder);
  179. }
  180.  
  181. #mari-sigcode ::-webkit-scrollbar-thumb {
  182. background: var(--scrollThumb);
  183. }
  184. </style>
  185.  
  186. <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&family=Poppins:wght@400;800&display=swap" rel="stylesheet">
  187.  
  188. <link href="//dl.dropbox.com/s/50g6fbds3rh4m0j/saturnicons.css" rel="stylesheet">
  189.  
  190. <center>
  191. <div id="mari-sigcode">
  192.  
  193. <div class="right-bg"></div>
  194. <div class="left-overlay"></div>
  195.  
  196. <div class="icon">
  197. <a href="https://shadowplayers.jcink.net/index.php?showuser=95" title="Hanie ©">
  198. <img src="https://i.imgur.com/c0DgPtf.gif"></a>
  199. </div>
  200.  
  201. <div class="content-1">
  202. <div class="title">Don't Be So Dramatic</div>
  203. <div class="status"><c>OPEN</c> for request</div>
  204. </div>
  205.  
  206. <div class="content-2">
  207. <div class="links">
  208. <a href="#" title="deviantart"><span class="sf sf-screen-o"></span></a>
  209. <a href="#" title="playground"><span class="sf sf-cursor-o"></span></a>
  210. <a href="#" title="tracker"><span class="sf sf-calendar-o"></span></a>
  211. <a href="#" title="hof"><span class="sf sf-trophy-o"></span></a>
  212. <a href="#" title="misc"><span class="sf sf-plus-2-o"></span></a>
  213. </div>
  214.  
  215. <div class="box-bg">
  216. <div class="textbox">
  217. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam in neque at tortor euismod iaculis ut sit amet libero.
  218. </div>
  219. </div>
  220.  
  221. </div>
  222. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement