hallowimg

kylo

Sep 1st, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.67 KB | None | 0 0
  1. $(document).ready(function() {
  2. // Tooltip only Text
  3. $('.masterTooltip').hover(function(){
  4. // Hover over code
  5. var title = $(this).attr('title');
  6. $(this).data('tipText', title).removeAttr('title');
  7. $('<p class="tooltip"></p>')
  8. .text(title)
  9. .appendTo('body')
  10. .fadeIn('slow');
  11. }, function() {
  12. // Hover out code
  13. $(this).attr('title', $(this).data('tipText'));
  14. $('.tooltip').remove();
  15. }).mousemove(function(e) {
  16. var mousex = e.pageX + 20; //Get X coordinates
  17. var mousey = e.pageY + 10; //Get Y coordinates
  18. $('.tooltip')
  19. .css({ top: mousey, left: mousex })
  20. });
  21. });
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. @import url('https://fonts.googleapis.com/css?family=Dosis|Red+Hat+Display');
  38.  
  39. @font-face {
  40. font-family: "Warlock";
  41. src: url('https://dl.dropboxusercontent.com/s/wsp378rqsegxwu4/LemonMilk.otf?dl=0');
  42. format("truetype");
  43. }
  44.  
  45. @font-face {
  46. font-family: "bakery";
  47. src: url('https://dl.dropboxusercontent.com/s/lnjs9z8olojzmpv/Skywalker_alt.ttf?');
  48. format("truetype");
  49. }
  50.  
  51. body {
  52. font-smooth: always;
  53. overflow: hidden;
  54. background: linear-gradient(#ffcccc 50%, #D8F7FF);
  55. }
  56.  
  57. h1 {
  58. font-family: 'Warlock';
  59. font-size: 20px;
  60. margin-top: 0px;
  61. line-height: 25px;
  62. font-weight: 400;
  63. color: #ffcccc;
  64. width: 100%;
  65. border-bottom: 1px solid;
  66. border-color: #ffcccc;
  67. border-image-slice: 1;
  68. }
  69.  
  70. .detail {
  71. position: absolute;
  72. top: 0px;
  73. left: 0px;
  74. width: 100%;
  75. height: 100%;
  76. background-image: url("https://www.transparenttextures.com/patterns/fake-luxury.png");
  77. }
  78.  
  79. .square {
  80. position: absolute;
  81. bottom: 0px;
  82. left: 50%;
  83. transform: translate(-50%, 0%);
  84. width: 500px;
  85. height: 500px;
  86. background-color: #fff;
  87. clip-path: polygon(50% 0%, 20% 100%, 80% 100%);
  88. }
  89.  
  90. .hallow {
  91. position: absolute;
  92. bottom: -50px;
  93. left: 50%;
  94. height:500px;
  95. width:400px;
  96. transform: translate(-50%, 0%);
  97. background-image: url('http://i.picpar.com/LLce.png');
  98. background-attachment: absolute;
  99. background-size: 400px;
  100. background-repeat: no-repeat;
  101. filter: drop-shadow(0px 0px 15px #ffcccc);
  102. }
  103.  
  104. .box {
  105. position: absolute;
  106. bottom: 510px;
  107. left: 50%;
  108. transform: translate(-50%, 0%);
  109. height: 75px;
  110. width: 700px;
  111. background-color: #fff;
  112. border: 5px solid #D8F7FF;
  113. }
  114.  
  115. .boxoverlay {
  116. position: absolute;
  117. bottom: 517px;
  118. left: 50%;
  119. transform: translate(-50%, 0%);
  120. height: 75px;
  121. width: 700px;
  122. z-index: 10;
  123. }
  124.  
  125. .box2 {
  126. position: absolute;
  127. bottom: 0px;
  128. left: 50%;
  129. transform: translate(-180%, -17%);
  130. height: 400px;
  131. width: 200px;
  132. font-family: 'Red Hat Display';
  133. color: #ffcccc;
  134. background-color: #fff;
  135. border: 5px solid #D8F7FF;
  136. padding: 5px;
  137. }
  138.  
  139. .box3 {
  140. position: absolute;
  141. bottom: 0px;
  142. left: 50%;
  143. transform: translate(80%, -17%);
  144. height: 400px;
  145. width: 200px;
  146. background-color: #fff;
  147. border: 5px solid #D8F7FF;
  148. padding: 5px;
  149. }
  150.  
  151. .title {
  152. position: absolute;
  153. bottom: 550px;
  154. left: 50%;
  155. transform: translate(-43%, 14%);
  156. letter-spacing: 10;
  157. width: 420px;
  158. height: 150px;
  159. font-family: 'bakery';
  160. font-size: 100px;
  161. background: url('https://66.media.tumblr.com/d799d9ea1b62f5bad539402f7ca0034c/tumblr_oerd4uRGdm1rw3w54o1_500.gif');
  162. background-position: 0px 200px;
  163. -webkit-text-fill-color: transparent;
  164. -webkit-background-clip: text;
  165. filter: drop-shadow(0px 0px 15px #fff);
  166. z-index: 1;
  167. }
  168.  
  169. .tooltip {
  170. display:none;
  171. position:absolute;
  172. max-width: 400px;
  173. border: 1px solid #00aaff;
  174. background: #fff;
  175. font-family: 'Red Hat Display';
  176. font-size: 10px;
  177. color: #212121;
  178. letter-spacing: 1px;
  179. border: 1px solid #ffcccc;
  180. padding: 10px;
  181. z-index: 14;
  182. }
  183.  
  184.  
  185. #friend {
  186. height: 70px;
  187. width: 150px;
  188. border: solid #ffcccc 1px;
  189. padding: 5px;
  190. }
  191.  
  192. .credit {
  193. position:absolute;
  194. bottom:0px;
  195. left:5px;
  196. height:75px;
  197. width:75px;
  198. padding:0vh;
  199. opacity: .7;
  200. background-image: url('http://i.picpar.com/OfYd.png');
  201. background-position: center;
  202. background-size: cover
  203. }
  204.  
  205.  
  206. .pic{ border: 1px solid #555; width: 60px; height: 60px; margin-bottom: 10px; margin-top: 10px; margin-right: 2px; margin-left: 2px; border-radius: 360px;}
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225. <div class="detail"></div>
  226. <div class="square"></div>
  227. <div class="hallow"></div>
  228.  
  229. <div class="title">Hallow</div>
  230.  
  231. <div class="box"></div>
  232. <div class="boxoverlay">
  233. <center>
  234.  
  235. <a target="_blank" href="https://roleplay.chat/profile.php?user=Hallow"><img src="https://i.imgur.com/4cL4VuD.png"class="pic"title="Hallow"></a>
  236.  
  237. <a target="_blank" href="https://roleplay.chat/profile.php?user=Circus"><img src="https://i.imgur.com/XyYgdA8.png"class="pic"title="Soleil"></a>
  238.  
  239. <a target="_blank" href="https://roleplay.chat/profile.php?user=Clairvoyance"><img src="https://i.imgur.com/7VhMz1C.png"class="pic"title="Juniper"></a>
  240.  
  241. <a target="_blank" href="https://roleplay.chat/profile.php?user=Smitten"><img src="https://i.imgur.com/FXAE2Yx.png"class="pic"title="Mara"></a>
  242.  
  243. <a target="_blank" href="https://roleplay.chat/profile.php?user=Arcanist"><img src="https://i.imgur.com/T2exwg6.png"class="pic"title="Ruby"></a>
  244.  
  245.  
  246. </div>
  247.  
  248. <div class="box2">
  249.  
  250. <h1>H-Hewwo?</h1>
  251.  
  252. Hi! I'm Kylo, but more widely known as Hallow! I don't write as much as I used to, but I have a few accounts still floating around here and there. I'm always open to hearing writing ideas, though I may be a little rusty when it comes to longer posts. I'm working on getting better at coding, as I'm not very good currently. ♥
  253. </div>
  254.  
  255. <div class="box3">
  256.  
  257. <h1>Friends</h1>
  258.  
  259. <center>
  260. <a class="masterTooltip" title="you may be stupid, but i love you. even after everything that's happened, i still love you." href="https://roleplay.chat/profile.php?user=wife" target="_blank"><img id="friend" src="https://i.imgur.com/mbpjXX1.png" alt="" /></a>
  261.  
  262. <a class="masterTooltip" title="u mean a lot to me even if ur a bully" href="https://roleplay.chat/profile.php?user=WURM" target="_blank"><img id="friend" src="https://i.imgur.com/SCP1mJT.png" alt="" /></a>
  263.  
  264.  
  265. <a class="masterTooltip" title="thank u for being my venting buddy" href="https://roleplay.chat/profile.php?user=Kazami" target="_blank"><img id="friend" src="https://i.imgur.com/D6DTBJm.png" alt="" /></a>
  266.  
  267. <a class="masterTooltip" title="one of the most chill people i know. mans just goes with the flow" href="https://roleplay.chat/profile.php?user=Zenith" target="_blank"><img id="friend" src="https://i.imgur.com/lqsHbZV.png" alt="" /></a>
  268. </div>
  269.  
  270. <a target="_blank" href="https://roleplay.chat/profile.php?user=wife"><div class="credit"></div></a>
Add Comment
Please, Sign In to add comment