Advertisement
hanimjay

Anchor (sig code)

Jul 17th, 2020
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. <style>
  2. #anchor-sig{
  3. width: 400px;
  4. height: 150px;
  5. position: relative;
  6. margin: 10px auto;
  7. background: url(https://i.imgur.com/OIzI23J.png);
  8. background-size: 400px;
  9. border: 1px solid #222222;
  10. overflow: hidden;
  11. border-radius: 0px;
  12. }
  13.  
  14. #anchor-sig ::-webkit-scrollbar {
  15. width: 6px;
  16. }
  17.  
  18. #anchor-sig ::-webkit-scrollbar-track {
  19. background: var(--white);
  20. border: 1px solid var(--indigo);
  21. }
  22.  
  23. #anchor-sig ::-webkit-scrollbar-thumb {
  24. background: var(--indigo);
  25. }
  26.  
  27. :root {
  28. --indigo: #222222;
  29. --pink: #FFF4F4;
  30. --white: #ffffff;
  31. }
  32.  
  33. #anchor-sig .top-left{
  34. width: 140px;
  35. height: 150px;
  36. position: absolute;
  37. top: 0.5px;
  38. left: 0.5px;
  39. background: var(--white);
  40. border-bottom: 1px solid var(--indigo);
  41. border-right: 1px solid var(--indigo);
  42. }
  43.  
  44. #anchor-sig .top-right{
  45. width: 260px;
  46. height: 140px;
  47. position: absolute;
  48. top: 0px;
  49. right: 0px;
  50. background: transparent;
  51. }
  52.  
  53. #anchor-sig .bottom-right{
  54. width: 260px;
  55. height: 45px;
  56. position: absolute;
  57. bottom: 0px;
  58. right: 0px;
  59. background: var(--indigo);
  60. border-top: 0px solid var(--white);
  61. border-left: 0px solid var(--white);
  62. overflow: hidden;
  63. }
  64.  
  65. #anchor-sig .status{
  66. width: 85px;
  67. padding: 6.5px 0px;
  68. position: absolute;
  69. border: 0.5px solid #fff;
  70. bottom: 10.5px;
  71. right: 20px;
  72. background: var(--indigo);
  73. color: var(--white);
  74. font-family: Montserrat;
  75. font-style: normal;
  76. font-weight: 800;
  77. font-size: 8.5px;
  78. line-height: 10px;
  79. text-align: center;
  80. letter-spacing: 0.5px;
  81. text-transform: uppercase;
  82. }
  83.  
  84. #anchor-sig .links{
  85. position: absolute;
  86. bottom: 12px;
  87. left: 14px;
  88. background: transparent;
  89. }
  90.  
  91. #anchor-sig .links .sf{
  92. display: inline-block;
  93. color: var(--white);
  94. font-size: 14px;
  95. margin-left: 12px;
  96. transform: scale(1);
  97. transition: 0.2s;
  98. }
  99.  
  100. #anchor-sig .links .sf:hover{
  101. transform: scale(1.3);
  102. transition: 0.2s;
  103. }
  104.  
  105. #anchor-sig .icon img{
  106. width: 87px;
  107. height: 87px;
  108. position: absolute;
  109. top: 23px;
  110. left: 25px;
  111. border: 1.2px solid var(--indigo);
  112. }
  113.  
  114. #anchor-sig .ttl{
  115. position: absolute;
  116. top: 19px;
  117. left: 25px;
  118. font-family: Montserrat;
  119. font-weight: 900;
  120. font-size: 19px;
  121. line-height: 20px;
  122. text-align: justify;
  123. text-transform: uppercase;
  124. letter-spacing: 0.5px;
  125. color: var(--white);
  126. text-shadow:
  127. -1.5px -1px 0 var(--indigo),
  128. 1px -1px 0 var(--indigo),
  129. -1px 1px 0 var(--indigo),
  130. 1px 1px 0 var(--indigo);
  131. }
  132.  
  133. #anchor-sig .subttl{
  134. position: absolute;
  135. top: 65px;
  136. left: 24px;
  137. font-family: Montserrat;
  138. font-weight: 800;
  139. font-size: 8.5px;
  140. line-height: 8px;
  141. text-align: justify;
  142. text-transform: uppercase;
  143. letter-spacing: 0.5px;
  144. color: var(--indigo);
  145. background: var(--white);
  146. padding: 5px 12px;
  147. border: 1px solid var(--indigo);
  148. }
  149.  
  150. #anchor-sig .discord{
  151. position: absolute;
  152. bottom: 17px;
  153. left: 25.5px;
  154. width: 170px;
  155. text-align: left;
  156. font-family: Montserrat;
  157. font-style: normal;
  158. line-height: 15px;
  159. letter-spacing: 0.5px;
  160. text-transform: uppercase;
  161. color: var(--white);
  162. }
  163.  
  164. #anchor-sig .discord d{
  165. font-size: 9.5px;
  166. font-weight: 800;
  167. text-shadow:
  168. -1px -1px 0 var(--indigo),
  169. 1px -1px 0 var(--indigo),
  170. -1px 1px 0 var(--indigo),
  171. 1px 1px 0 var(--indigo);
  172. }
  173.  
  174. #anchor-sig .discord c{
  175. font-size: 8px;
  176. font-weight: 500;
  177. background: var(--indigo);
  178. padding: 3px 7px;
  179. border: 0px solid var(--white);
  180. }
  181. </style>
  182.  
  183. <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;800;900&display=swap" rel="stylesheet">
  184.  
  185. <link href="//dl.dropbox.com/s/50g6fbds3rh4m0j/saturnicons.css" rel="stylesheet">
  186.  
  187. <center>
  188. <div id="anchor-sig">
  189.  
  190. <div class="top-left">
  191. <div class="icon"><img src="https://i.imgur.com/pzgAqHe.gif"></div>
  192. </div>
  193.  
  194. <div class="top-right">
  195. <div class="ttl">Call Me <br>Your Highness</div>
  196. <div class="subttl">Hanie. Coder/Designer. GMT+8</div>
  197. </div>
  198.  
  199. <div class="discord">
  200. <d>Discord</d><br>
  201. <c>Hanie#5400</c>
  202. </div>
  203.  
  204. <div class="bottom-right">
  205. <div class="status">available</div>
  206. <div class="links">
  207. <a href="https://shadowplayers.jcink.net/index.php?showtopic=11483&view=getnewpost" target="_blank"><span class="sf sf-cursor-o" title="coding tester"></span></a>
  208. <a href="https://shadowplayers.jcink.net/index.php?showtopic=2034&view=getnewpost" target="_blank"><span class="sf sf-save-o" title="graphic archive"></span></a>
  209. <a href="https://shadowplayers.jcink.net/index.php?showtopic=8958&view=getnewpost" target="_blank"><span class="sf sf-push-pin-o" title="records"></span></a>
  210. <a href="https://www.deviantart.com/orpheusz" target="_blank"><span class="sf sf-screen-o" title="deviantart"></span></a>
  211. </div>
  212. </div>
  213.  
  214. </div>
  215. </center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement