Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.  
  6. <script type="text/javascript"
  7. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  8. <script>
  9. $(document).ready(function() {
  10. //
  11. $('a.poplight[href^=#]').click(function() {
  12. var popID = $(this).attr('rel'); //Get Popup Name
  13. var popURL = $(this).attr('href'); //Get Popup href to define size
  14. var query= popURL.split('?');
  15. var dim= query[1].split('&');
  16. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  17. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  18. var popMargTop = ($('#' + popID).height() + 80) / 2;
  19. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  20. //Apply Margin to Popup
  21. $('#' + popID).css({
  22. 'margin-top' : -popMargTop,
  23. 'margin-left' : -popMargLeft
  24. });
  25. $('body').append('<div id="fade"></div>');
  26. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  27. return false;
  28. });
  29. $('a.close, #fade').live('click', function() {
  30. $('#fade , .popup_block').fadeOut(function() {
  31. $('#fade, a.close').remove(); //fade them both out
  32. });
  33. return false;
  34. });
  35. });
  36. </script>
  37.  
  38. <!-- Codes by aloneprayer.tumblr.com
  39. Please do not remove credits or claim them as your own!
  40. You are free to slightly alter though. -->
  41.  
  42. <title>{Title}</title>
  43. <link rel="shortcut icon" href="{Favicon}">
  44.  
  45. <style type="text/css">
  46.  
  47. ::-webkit-scrollbar {
  48. width:4px;
  49. height:4px;
  50. }
  51.  
  52. ::-webkit-scrollbar-track {
  53. background-color:transparent;
  54. }
  55.  
  56. ::-webkit-scrollbar-button {
  57. background-color:black;
  58. height:4px;
  59. width:4px;
  60. }
  61.  
  62. ::-webkit-scrollbar-thumb {
  63. background-color:black;
  64. height:4px;
  65. width:4px;
  66. }
  67.  
  68. /*---popups---*/
  69.  
  70. .popup_block{
  71. display:none;
  72. background:#fff;
  73. padding:20px;
  74. font-size: 11px;
  75. float:left;
  76. position:fixed;
  77. top:50%;left:50%;
  78. z-index: 99999;
  79. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  80. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  81. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  82. }
  83.  
  84. *html #fade {position: absolute;}
  85. *html .popup_block {position: absolute;}
  86. #fade {
  87. display:none;
  88. position:fixed;
  89. left:0px;
  90. top:0px;
  91. width:100%;
  92. height:100%;
  93. z-index:9999;
  94. background:#000; /* change to #fff for solid white */
  95. opacity:0.5; /* change to opacity:1; */
  96. }
  97.  
  98. /*---end popups---*/
  99.  
  100. body {
  101. margin:0;
  102. background-color:black;
  103. color:white;
  104. font-family:calibri,sans-serif;
  105. font-size:10px;
  106. line-height:1.1;
  107. }
  108.  
  109. a {
  110. color:white;
  111. text-decoration:none;
  112. -webkit-transition:0.5s ease-in-out;
  113. -moz-transition:all 0.5s ease-in-out;
  114. -o-transition:all 0.5s ease-in-out;
  115. }
  116.  
  117. a:hover {
  118. color:#dfdfdf;
  119. -webkit-transition:0.5s ease-in-out;
  120. -moz-transition:all 0.5s ease-in-out;
  121. -o-transition:all 0.5s ease-in-out;
  122. }
  123.  
  124. #s {
  125. position:fixed;
  126. float:left;
  127. top:0; left:0;
  128. height:100%;
  129. padding:100px;
  130. background-color:white;
  131. }
  132.  
  133. #s .bar {
  134. position:relative;
  135. float:left;
  136. width:100px;
  137. top:200px;
  138. text-align:center;
  139. }
  140.  
  141. .bar .t {
  142. font-size:16px;
  143. font-weight:700;
  144. font-family:arial;
  145. text-transform:lowercase;
  146. letter-spacing:-1px;
  147. color:black;
  148. }
  149.  
  150. .bar .li {
  151. font-size:8px;
  152. text-transform:uppercase;
  153. letter-spacing:1px;
  154. font-weight:700;
  155. }
  156.  
  157. .bar .li a {
  158. background-color:black;
  159. padding:2px 4px;
  160. margin:2px;
  161. display:inline-block;
  162. }
  163.  
  164. #m {
  165. position:absolute;
  166. float:left;
  167. top:0;
  168. left:300px;
  169. padding:20px;
  170. }
  171.  
  172. #m .tab {
  173. float:left;
  174. display:inline-block;
  175. margin:20px;
  176. padding:5px;
  177. width:340px;
  178. }
  179.  
  180. .tab .av {
  181. display:inline-block;
  182. }
  183.  
  184. .tab .av img {
  185. width:150px;
  186. height:200px;
  187. }
  188.  
  189. .tab .info {
  190. display:inline-block;
  191. width:180px;
  192. vertical-align:top;
  193. padding-left:5px;
  194. }
  195.  
  196. .info .name {
  197. font-family:arial;
  198. font-size:16px;
  199. font-weight:700;
  200. letter-spacing:-1px;
  201. text-transform:lowercase;
  202. text-align:left;
  203. margin-bottom:5px;
  204. }
  205.  
  206. .info .desc {
  207. text-align:justify;
  208. overflow:auto;
  209. height:180px;
  210. }
  211.  
  212. .desc .li {
  213. text-align:left;
  214. display:block;
  215. font-size:8px;
  216. text-transform:uppercase;
  217. letter-spacing:1px;
  218. margin:5px 0 0 0;
  219. }
  220.  
  221. .desc .li a {
  222. display:inline-block;
  223. margin:0 4px 0 0;
  224. }
  225.  
  226. </style>
  227.  
  228. </head>
  229.  
  230. <body>
  231.  
  232. <div id="s">
  233.  
  234. <div class="bar">
  235.  
  236. <div class="t">
  237. THE MUSE CRUISE
  238. </div>
  239.  
  240. <div class="li">
  241. <a href="/">back</a> <a href="/ask">ask</a> <a href="http://aloneprayer.tumblr.com/">©</a>
  242. </div>
  243.  
  244. </div>
  245.  
  246. </div>
  247.  
  248. <div id="m">
  249.  
  250. <!-- DIVIDER -->
  251.  
  252. <div class="tab">
  253.  
  254. <div class="av">
  255. <img src="http://i114.photobucket.com/albums/n260/Sammywolf/billh150200_zpsaxn8uzxl.png" />
  256. </div>
  257.  
  258. <div class="info">
  259.  
  260. <div class="name">
  261. bill halifax
  262. </div>
  263.  
  264. <div class="desc">
  265.  
  266. <div class="li"> fc: wyatt russell
  267.  
  268. </div>
  269.  
  270. <p>Forgotten member of the 27 Club, back from the dead for reasons unknown.</p>
  271. <a href="/tagged/m: halifax">TAG</a> /
  272. <a href="/tagged/a: halifax">AES</a> /
  273. <a href="#?w=300" rel="halifax" class="poplight">INFO</a>
  274. </div>
  275.  
  276. </div>
  277.  
  278. </div>
  279.  
  280. <!-- DIVIDER -->
  281.  
  282. <div class="tab">
  283.  
  284. <div class="av">
  285. <img src="http://i114.photobucket.com/albums/n260/Sammywolf/leonine150200_zpsogvyv0yj.png" />
  286. </div>
  287.  
  288. <div class="info">
  289.  
  290. <div class="name">
  291. leonine
  292. </div>
  293.  
  294. <div class="desc">
  295.  
  296. <div class="li"> fc: dakota johnson/jane wiedlin
  297.  
  298. </div>
  299.  
  300. <p>Knight of the realm, fish out of water.</p>
  301. <a href="/tagged/m: leonine">TAG</a> /
  302. <a href="/tagged/a: leonine">AES</a> /
  303. <a href="#?w=300" rel="leo" class="poplight">INFO</a>
  304. </div>
  305.  
  306. </div>
  307.  
  308. </div>
  309.  
  310. <!-- DIVIDER -->
  311.  
  312. <div class="tab">
  313.  
  314. <div class="av">
  315. <img src="http://i114.photobucket.com/albums/n260/Sammywolf/callum150200_zpsxbrhr6dw.png" />
  316. </div>
  317.  
  318. <div class="info">
  319.  
  320. <div class="name">
  321. callum ashurst
  322. </div>
  323.  
  324. <div class="desc">
  325.  
  326. <div class="li"> fc: dave franco
  327.  
  328. </div>
  329.  
  330. <p>Scientologist.</p>
  331. <a href="/tagged/m: callum">TAG</a> /
  332. <a href="/tagged/a: callum">AES</a> /
  333. <a href="#?w=300" rel="callum" class="poplight">INFO</a>
  334. </div>
  335.  
  336. </div>
  337.  
  338. </div>
  339.  
  340. <!-- DIVIDER -->
  341.  
  342. <div class="tab">
  343.  
  344. <div class="av">
  345. <img src="http://i114.photobucket.com/albums/n260/Sammywolf/mari150200_zpsvoe8ljzy.png" />
  346. </div>
  347.  
  348. <div class="info">
  349.  
  350. <div class="name">
  351. anita marie eterna
  352. </div>
  353.  
  354. <div class="desc">
  355.  
  356. <div class="li"> FC: ashley madekwe
  357.  
  358. </div>
  359.  
  360. <p>Social media demon, @marionetta. </p>
  361. <a href="/tagged/m: marionetta">TAG</a> /
  362. <a href="/tagged/a: marionetta">AES</a> /
  363. <a href="#?w=300" rel="mari" class="poplight">INFO</a>
  364.  
  365. </div>
  366.  
  367. </div>
  368.  
  369. </div>
  370.  
  371. <!-- DIVIDER -->
  372.  
  373.  
  374.  
  375. </div>
  376.  
  377. </body>
  378.  
  379. <!-- BEGIN POPUP BOX -->
  380. <div id="halifax" class="popup_block">
  381. PRONOUNS: he/him
  382. ALIGNMENT: neutral good
  383. </div>
  384. <!-- END POPUP BOX -->
  385.  
  386. <!-- BEGIN POPUP BOX -->
  387. <div id="leo" class="popup_block">
  388. PRONOUNS: they/them
  389. ALIGNMENT: lawful good
  390. </div>
  391. <!-- END POPUP BOX -->
  392.  
  393. <!-- BEGIN POPUP BOX -->
  394. <div id="callum" class="popup_block">
  395. PRONOUNS: he/him
  396. ALIGNMENT: lawful evil
  397. </div>
  398. <!-- END POPUP BOX -->
  399.  
  400. <!-- BEGIN POPUP BOX -->
  401. <div id="riley" class="popup_block">
  402. PRONOUNS: she/her, they/them
  403. ALIGNMENT: chaotic evil
  404. </div>
  405. <!-- END POPUP BOX -->
  406.  
  407. </div></div></div></div></div></div></div></div></div></div>
  408.  
  409. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement