alicescreed

sinnohsavior (2)

Oct 17th, 2020 (edited)
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.70 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>{Title}</title>
  7.  
  8.  
  9. <!-- please do not steal, redistribute, or claim as your own. KEEP CREDIT IN TACT. thank you! -->
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />
  13.  
  14. {/block:Description}
  15.  
  16. <meta name="color:text" content="#000000">
  17. <meta name="color:bold" content="#32236d">
  18. <meta name="color:italic" content="#1ac0f2">
  19. <meta name="color:links" content="#ef2180">
  20. <meta name="color:borders" content="#fc7eaf">
  21. <meta name="color:hover link" content="#e7e7e7">
  22.  
  23.  
  24. <link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Dancing+Script&family=Roboto&display=swap" rel="stylesheet">
  25.  
  26.  
  27. <script type="text/javascript"
  28. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  29. <script>
  30. $(document).ready(function() {
  31. //
  32. $('a.poplight[href^=#]').click(function() {
  33. var popID = $(this).attr('rel'); //Get Popup Name
  34. var popURL = $(this).attr('href'); //Get Popup href to define size
  35. var query= popURL.split('?');
  36. var dim= query[1].split('&');
  37. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  38. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  39. var popMargTop = ($('#' + popID).height() + 80) / 2;
  40. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  41. //Apply Margin to Popup
  42. $('#' + popID).css({
  43. 'margin-top' : -popMargTop,
  44. 'margin-left' : -popMargLeft
  45. });
  46. $('body').append('<div id="fade"></div>');
  47. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  48. return false;
  49. });
  50. $('a.close, #fade').live('click', function() {
  51. $('#fade , .popup_block').fadeOut(function() {
  52. $('#fade, a.close').remove(); //fade them both out
  53. });
  54. return false;
  55. });
  56. });
  57. </script>
  58.  
  59. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  60. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  61. <script>
  62. (function($){
  63. $(document).ready(function(){
  64. $("[title]").style_my_tooltips({
  65. tip_follows_cursor:true,
  66. tip_delay_time:200,
  67. tip_fade_speed:300
  68. }
  69. );
  70. });
  71. })(jQuery);
  72. </script>
  73.  
  74.  
  75.  
  76.  
  77.  
  78. <style type="text/css">
  79.  
  80.  
  81. body {
  82. font-family: 'roboto', sans-serif;
  83. color: {color:text};
  84. font-size: 8pt;
  85. letter-spacing: 0px;
  86. background-color:#152250;
  87. background-image: url('https://i.imgur.com/0XUkZdm.png');
  88. background-position: top-right;
  89. background-repeat: no-repeat;
  90. background-attachment: fixed;
  91. line-height: 12pt;
  92. text-align: justify;
  93. }
  94.  
  95. #s-m-t-tooltip{
  96. position: absolute;
  97. z-index: 999999999999999999999999999999999999999999999999999999999999;
  98. margin-top: 10px;
  99. margin-left: 5px;
  100. display: block;
  101. color: #fff;
  102. background-image: url('https://i.imgur.com/20rRcCQ.gif');
  103. background-attachment: fixed;
  104. background-repeat: repeat;
  105. background-position: center;
  106. text-align: center;
  107. font-style: italic;
  108. box-shadow: 2px 2px 5px #000;
  109. font-family: 'roboto', sans-serif;
  110. letter-spacing: 1px;
  111. text-shadow: 1px 1px 5px black;
  112. border: 4px double{Color:Borders};
  113. padding: 10px;
  114. font-size: 22pt;
  115. margin-bottom: 5px;
  116. }
  117.  
  118. ::-webkit-scrollbar-thumb:vertical {
  119. background-color: {color:scrollbar};
  120. height:auto;
  121. }
  122.  
  123. ::-webkit-scrollbar-thumb:horizontal {
  124. background-color: {color:scrollbar};
  125. height:2px;
  126. }
  127.  
  128. ::-webkit-scrollbar {
  129. height:2px;
  130. width:2px;
  131. background-color:transparent;
  132. }
  133.  
  134.  
  135. a {
  136. text-decoration: none;
  137. color: {color:links};
  138. font-size: 15pt;
  139. line-height: 19pt;
  140. transition-duration: 0.6s;
  141. -moz-transition-duration: 0.6s;
  142. -webkit-transition-duration: 0.6s;
  143. -o-transition-duration: 0.6s;
  144. font-family: 'bebas neue', cursive;
  145. font-weight: bold;
  146. letter-spacing: 1px;
  147. text-shadow: 1px 1px 3px #fff;
  148. }
  149.  
  150.  
  151. a:hover {
  152. text-decoration: none;
  153. letter-spacing: 1px;
  154. filter:blur(2px);
  155. color: {color:hover link};
  156. transition-duration: 0.6s;
  157. -moz-transition-duration: 0.6s;
  158. -webkit-transition-duration: 0.6s;
  159. -o-transition-duration: 0.6s;
  160. }
  161.  
  162. small, sup, sub {
  163. font-size: 100%;
  164. }
  165.  
  166. b, strong {
  167. text-shadow: 1px 1px 4px #fff;
  168. text-outline: 1px black;
  169. padding-left: 2px;
  170. padding-right: 2px;
  171. color:{color:bold};
  172. font-weight: bold;
  173. font-family: 'bebas neue', cursive;
  174. letter-spacing: 0px;
  175. font-size: 14pt;
  176. }
  177.  
  178. i, em {
  179. text-shadow: 1px 1px 4px #fff;
  180. color:{color:italic};
  181. font-weight: bold;
  182. font-style: italic;
  183. font-family: 'dancing script', cursive;
  184. letter-spacing: 1px;
  185. padding-left:5px;
  186. padding-right: 5px;
  187. padding-top: 10px;
  188. padding-bottom: 10px;
  189. font-size: 18pt;
  190. }
  191.  
  192.  
  193.  
  194.  
  195. h2 {
  196. text-shadow: 1px 1px 5px #fff;
  197. font-family: 'bebas neue', cursive;
  198. font-size: 16pt;
  199. font-weight: bold;
  200. color: {Color:links};
  201. line-height: 120%;
  202. letter-spacing: 1px;
  203. }
  204.  
  205.  
  206. #info {
  207. border-radius: 50px;
  208. padding: 10px;
  209. color: {color:bold};
  210. margin-top: 10px;
  211. background-position: center;
  212. background-color: #0f0704;
  213. background-image: url('https://i.imgur.com/20rRcCQ.gif');
  214. text-align: center;
  215. margin-bottom: 80px;
  216. letter-spacing: 1px;
  217. transition-duration: 0.6s;
  218. -moz-transition-duration: 0.6s;
  219. -webkit-transition-duration: 0.6s;
  220. -o-transition-duration: 0.6s;
  221. font-size:14pt;
  222. border: 4px double{Color:Borders};
  223. }
  224.  
  225. #info a {
  226. color: {color:italic};
  227. font-family: 'dancing script', cursive;
  228. font-size: 14pt;
  229. text-shadow: 1px 1px 5px #000;
  230. font-weight:bold;
  231. }
  232.  
  233. #h1 {
  234. text-align: center;
  235. font-family: 'dancing script', cursive;
  236. padding: 10px;
  237. text-shadow: 1px 1px 4px #000;
  238. line-height: 110%;
  239.  
  240. font-size: 18pt;
  241. background-position: center;
  242. margin-bottom: 5px;
  243. }
  244.  
  245. #sidebar {
  246. margin-left:240px;
  247. width: 182px;
  248. font-size: 10pt;
  249. margin-top: 485px;
  250. position: fixed;
  251. }
  252.  
  253. #description {
  254. height:100px;
  255. font-size: 10px;
  256. line-height: 14px;
  257. overflow: auto;
  258. }
  259.  
  260. #audio {
  261. text-align: center;
  262. font-size: 8pt;
  263. line-height: 9pt;
  264. }
  265.  
  266.  
  267. #musicinfo {
  268.  
  269. text-transform: uppercase;
  270. margin-top:10px;
  271. }
  272.  
  273. blockquote {
  274. border: 10px solid transparent;
  275. border-image: url('https://i.imgur.com/20rRcCQ.gif') 10 round;
  276. outline: 1px solid {color:borders};
  277. color: #fff;
  278. background-color: #9099b9;
  279. padding: 5px;
  280. font-size: 95%
  281. }
  282.  
  283. blockquote img {
  284. max-width: 100%;
  285. display: block;
  286. height: auto
  287. }
  288.  
  289. img {
  290. max-width: 100%;
  291. display: block;
  292. height: auto
  293. }
  294.  
  295.  
  296. ol.notes {
  297. text-align: left;
  298. list-style: upper-roman;
  299. padding: 10px;
  300.  
  301. }
  302.  
  303.  
  304. #info a:hover {
  305. color: {color:bold};
  306. }
  307.  
  308. #credit {
  309. right:10px;
  310. bottom:7px;
  311. padding:5px;
  312. font-size:10px;
  313. position:fixed;
  314. background-image: url('https://i.imgur.com/20rRcCQ.gif');
  315. text-align: center;
  316. font-style: italic;
  317. font-family: 'roboto', sans-serif;
  318. letter-spacing: 1px;
  319. border: 4px double {Color:Borders};
  320. padding: 5px;
  321. font-size: 120%;
  322. margin-bottom: 5px;
  323. transition-duration: 0.6s;
  324. -moz-transition-duration: 0.6s;
  325. -webkit-transition-duration: 0.6s;
  326. -o-transition-duration: 0.6s;
  327. }
  328.  
  329.  
  330. #credit a {
  331. font-family: 'roboto', sans-serif;
  332. color:#fff;
  333. padding:5px;
  334. letter-spacing:1px;
  335. text-decoration:none;
  336. font-weight:bold;
  337. }
  338.  
  339. #tags {
  340. margin-top: 10px;
  341. }
  342. #tags a {
  343.  
  344. font-family: verdana;
  345. font-weight: bold;
  346. font-size: 8px;
  347. line-height: 6px;
  348. color: #fff;
  349. text-transform: uppercase;
  350. text-shadow: 1px 1px 1px #000;
  351. }
  352.  
  353. #post {
  354. width: 400px;
  355. margin-bottom: 25px;
  356. }
  357.  
  358. #posts {
  359. width: 400px;
  360. background-color: #ffa4ca;
  361. height: auto;
  362. border-left: 3px solid #fc7eaf;
  363. border-right: 3px solid #fc7eaf;
  364. overflow-y: auto;
  365. margin-top: -10px;
  366. padding: 25px;
  367. position: absolute;
  368. margin-left:591px;
  369. }
  370.  
  371. #ask a {
  372. color: {color:italic};
  373. text-shadow: 1px 1px 4px #000;
  374. font-size:20pt;
  375. font-family: 'dancing script', cursive;
  376. }
  377.  
  378. #ask {
  379. background-image: url('https://i.imgur.com/20rRcCQ.gif');
  380. background-repeat: repeat;
  381. text-align: center;
  382. color: {Color:text};
  383. padding: 10px;
  384. height: auto;
  385. border: 4px double{Color:Borders};
  386. background-color: #040404;
  387. color: #c6c6c6;
  388. }
  389.  
  390. #pa { margin-top: 20px;
  391. text-align: center;
  392. }
  393.  
  394. #pa a {
  395. text-shadow: 1px 1px 5px #000;
  396. color: #fff;
  397. opacity: .7;
  398. font-family: 'roboto', sans-serif;
  399. text-transform: uppercase;
  400. font-size: 15pt;
  401. }
  402.  
  403. @keyframes bounce {
  404. 0% { transform: translateY(0); }
  405. 100% { transform: translateY(-10px); }
  406. }
  407.  
  408. #li {
  409. position: fixed;
  410. animation: bounce 2s;
  411. animation-direction: alternate;
  412. animation-iteration-count: infinite;
  413. transition-duration: 0.6s;
  414. }
  415.  
  416. #li a {
  417. animation: bounce 2s;
  418. animation-direction: alternate;
  419. animation-iteration-count: infinite;
  420. transition-duration: 0.6s;
  421. color: #000;
  422. opacity: .8;
  423. font-size: 40pt;
  424. line-height: 35px;
  425. text-shadow: 2px 2px 10px #fff;
  426. font-family: 'caveat', handwritten;
  427. }
  428.  
  429. #li a:hover {
  430. opacity: 1;
  431. filter: blur(2px);
  432. }
  433.  
  434. #fade {
  435. display: none;
  436. background-color: #000;
  437. position: fixed;
  438. left: 0;
  439. top: 0;
  440. width: 100%;
  441. height: 100%;
  442. opacity: .5;
  443. z-index: 9999;
  444. }
  445.  
  446. .popup_block{
  447. display: none;
  448. padding: 20px;
  449. position: fixed;
  450. top: 50%;
  451. left: 50%;
  452. background-color: #ffa4ca;
  453. z-index: 99999;
  454. border: 20px solid transparent;
  455. border-image: url('https://i.imgur.com/20rRcCQ.gif') 30 round;
  456. outline: 3px solid {Color:Borders};
  457. box-shadow: 2px 2px 10px #000;
  458. }
  459.  
  460. img.btn_close {
  461. float: right;
  462. margin: -55px -55px 0 0;
  463. }
  464.  
  465. *html #fade {
  466. position: absolute;
  467. }
  468.  
  469. *html .popup_block {
  470. position: absolute;
  471. }
  472.  
  473.  
  474. #poplinks {
  475.  
  476. color: #fff;
  477. background-position: left;
  478. text-shadow: 1px 1px 3px #000;
  479. background-position: right; text-align: center;
  480. font-family: verdana;
  481. background-image: url(' https://i.imgur.com/20rRcCQ.gif');
  482. background-attachment: fixed;
  483. background-repeat: repeat;
  484. background-color: #0f0704;
  485. background-position: center;
  486. border: 4px double {color:borders};
  487. padding: 2px;
  488. font-size: 8pt;
  489. font-weight: bold;
  490. text-transform: uppercase;
  491. border-radius: 50px;
  492. margin-bottom: 5px;
  493. margin-top: 5px;border-radius: 50px;
  494.  
  495. }
  496.  
  497. #poplinks a {
  498. text-align: center;
  499. font-family: verdana;
  500. font-size: 8pt;
  501. font-weight: bold;
  502. text-transform: uppercase;
  503. text-shadow: 1px 1px 3px #000;
  504. color: #fff;
  505. }
  506.  
  507. #poph1 {
  508.  
  509. color: #fff;
  510. background-position: center;
  511. text-shadow: 1px 1px 3px #000;
  512. background-image: url(' https://i.imgur.com/20rRcCQ.gif');
  513. background-position: center;
  514. text-align: center;
  515. font-family: verdana;
  516. border: 4px double {color:borders};
  517. padding: 5px;
  518. border-radius: 50px;
  519. font-size: 8pt;
  520. font-weight: bold;
  521. margin-top: 10px;
  522. text-transform: uppercase;
  523. margin-bottom: 10px;
  524. }
  525.  
  526. #left {
  527. float: left;
  528. margin-right: 10px;
  529. }
  530.  
  531. #galaxy {
  532. position: fixed;
  533. }
  534.  
  535. #galaxy a {
  536. font-size: 40pt;
  537. color: #fff;
  538. opacity: .5;
  539. }
  540.  
  541. #galaxy a:hover {
  542. opacity: 1;
  543. font-size: 30pt;
  544. }
  545.  
  546. </style>
  547.  
  548. </head>
  549.  
  550. <body>
  551.  
  552. <div id="galaxy">
  553.  
  554. <a href="/" title="home" style="position: fixed; margin-top: 300px; margin-left: 30px;">★</a>
  555.  
  556.  
  557. <a href="/ask" title="ask" style="position: fixed; margin-top: 260px; margin-left: 90px;">☾</a>
  558.  
  559. <a href="#?w=400" rel="pop1" class="poplight" title="verses" style="position: fixed; margin-top: 60px; margin-left: 490px;">☆</a>
  560.  
  561.  
  562. <a href="#?w=400" rel="pop2" class="poplight" title="about" style="position: fixed; margin-top: 120px; margin-left: 530px;">☾</a>
  563.  
  564.  
  565. <a href="#?w=400" rel="pop3" class="poplight" title="rules" style="position: fixed; margin-top: 50px; margin-left: 1220px;">☾</a>
  566.  
  567. <a href="#?w=400" rel="pop4" class="poplight" title="relationships" style="position: fixed; margin-top: 110px; margin-left: 1250px;">★</a>
  568.  
  569. <a href="#?w=400" rel="pop5" class="poplight" title="pokemon" style="position: fixed; margin-top: 550px; margin-left: 80px;">☾</a>
  570.  
  571. <a href="#?w=400" rel="pop6" class="poplight" title="navigation" style="position: fixed; margin-top: 580px; margin-left: 140px;">☆</a>
  572.  
  573. <a href="#?w=400" rel="pop7" class="poplight" title="headcanons" style="position: fixed; margin-top: 170px; margin-left: 1210px;">☾</a>
  574.  
  575.  
  576.  
  577. </div>
  578.  
  579. <div id="sidebar">
  580. <div id="description">
  581. {Description}<p>
  582. </div>
  583.  
  584. <div id="pa">{block:Pagination}
  585. {block:PreviousPage}
  586. <a href="{PreviousPage}">fall</a> /
  587. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  588. {/block:NextPage}
  589. {/block:Pagination}</div>
  590. </div>
  591.  
  592.  
  593. <div id="posts">
  594.  
  595.  
  596. {block:Posts}<div id="post">
  597.  
  598.  
  599.  
  600. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  601.  
  602. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  603.  
  604. {Caption} {/block:Caption}{/block:Photo}
  605.  
  606. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  607.  
  608. {/block:Photoset}
  609.  
  610. {block:Quote}<b style="text-align: center; font-size: 18pt; line-height: 20pt;">{Quote}</b>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  611.  
  612. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  613.  
  614. {Description}{/block:Description}{/block:Link}
  615.  
  616. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  617.  
  618. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  619.  
  620. {block:Audio}
  621. <div id="audio">
  622. {block:TrackName}
  623. <div id="musicinfo" style="margin-top: 5px;">
  624. {AudioPlayerGrey} <br>
  625. {TrackName} by
  626. {/block:TrackName}
  627. {block:Artist}
  628. {Artist}
  629. {/block:Artist}
  630.  
  631. </div>
  632. </div>
  633. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  634. {/block:Audio}
  635.  
  636.  
  637. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  638.  
  639. {block:Answer}
  640. <div id="ask">
  641. <center>
  642. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  643. {Asker} asked,<br>
  644. {Question}
  645. </div>
  646. {Answer}{/block:Answer}
  647.  
  648. <div id="info">
  649. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}️</a> || <a href="{Permalink}" title="{NoteCount} notes">{notecount}️</a> || <a href="{ReblogURL}" title="reblog">reblog️</a>
  650. <div id="tags">
  651. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  652. {/block:Tags}{/block:HasTags}
  653. </div>
  654. </div>
  655.  
  656.  
  657. {block:PostNotes}<Div style="width: 400px;">
  658.  
  659.  
  660. {PostNotes}</div>{/block:PostNotes}
  661. {/block:Posts}</div>
  662.  
  663.  
  664. <div id="credit">
  665. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  666. </div>
  667.  
  668. <!--CODES--
  669.  
  670. for title header <div id="poph1">title</div>
  671.  
  672. for navigation link <div id="poplinks"><A href="/"></div>. have one div bracket for each link you want!!
  673.  
  674. for wrapped image:
  675.  
  676. <img src="IMG HERE" align="left" style="margin-right: 10px;">
  677.  
  678. -->
  679.  
  680.  
  681. <!--VERSES POP-up-->
  682.  
  683. <div id="pop1" class="popup_block">
  684.  
  685. <img src="https://i.imgur.com/wLmQIbl.png" style="margin-bottom: 20px;" title="Verses">
  686.  
  687. <div style="height:300px; overflow: auto;">
  688.  
  689. <div id="poph1">cupcake ipsum</div>
  690.  
  691. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  692.  
  693. <div id="poph1">cupcake ipsum</div>
  694.  
  695. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  696.  
  697. <div id="poph1">cupcake ipsum</div>
  698.  
  699. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  700.  
  701.  
  702. </div>
  703. </div>
  704.  
  705. <!--ABOUT pop-up-->
  706.  
  707. <div id="pop2" class="popup_block">
  708.  
  709.  
  710. <img src="https://i.imgur.com/rLzeena.png" style="margin-bottom: 20px;" title="about">
  711.  
  712. <div style="height:300px; overflow: auto;">
  713.  
  714. <div id="poph1">cupcake ipsum</div>
  715.  
  716. <img src="https://cdn.discordapp.com/attachments/684120650994286624/764577155605856316/save0292.png" align="left" style="margin-right: 10px;">
  717.  
  718. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  719.  
  720. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.<p>
  721.  
  722. <img src="https://cdn.discordapp.com/attachments/684120650994286624/764577155605856316/save0292.png" align="left" style="margin-right: 10px;">
  723.  
  724. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  725.  
  726. <div id="poph1">cupcake ipsum</div>
  727.  
  728. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  729.  
  730.  
  731. </div>
  732. </div>
  733.  
  734. <!--RULES pop up-->
  735.  
  736. <div id="pop3" class="popup_block">
  737.  
  738. <img src="https://i.imgur.com/xNgAeIJ.png" style="margin-bottom: 20px;" title="rules">
  739.  
  740. <div style="height:300px; overflow: auto;">
  741.  
  742. <div id="poph1">cupcake ipsum</div>
  743.  
  744. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  745.  
  746. <div id="poph1">cupcake ipsum</div>
  747.  
  748. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  749.  
  750.  
  751. </div>
  752. </div>
  753.  
  754. <!--RELATIONSHIPS-->
  755.  
  756. <div id="pop4" class="popup_block">
  757.  
  758. <img src="https://i.imgur.com/di6pjen.png" style="margin-bottom: 20px;" title="relationships">
  759.  
  760. <div style="height:300px; overflow: auto;">
  761.  
  762. <div id="poph1">cupcake ipsum</div>
  763.  
  764. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  765.  
  766. <div id="poph1">cupcake ipsum</div>
  767.  
  768. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  769.  
  770.  
  771. </div>
  772. </div>
  773.  
  774. <!--POKEMON-->
  775.  
  776. <div id="pop5" class="popup_block">
  777.  
  778. <img src="https://i.imgur.com/O9wGQTp.png" style="margin-bottom: 20px;" title="pokemon">
  779.  
  780. <div style="height:300px; overflow: auto;">
  781.  
  782. <div id="poph1">cupcake ipsum</div>
  783.  
  784. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  785.  
  786. <div id="poph1">cupcake ipsum</div>
  787.  
  788. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  789.  
  790.  
  791. </div>
  792. </div>
  793.  
  794.  
  795. <!--NAVIGATION POP-up-->
  796.  
  797. <div id="pop6" class="popup_block">
  798.  
  799. <img src="https://i.imgur.com/9WbgsDr.png" style="margin-bottom: 20px;" title="navi">
  800.  
  801. <div style="height:300px; overflow: auto;">
  802.  
  803.  
  804. <div id="poplinks"><a href="/">title</a></div>
  805. <div id="poplinks"><a href="/">title</a></div>
  806. <div id="poplinks"><a href="/">title</a></div>
  807. <div id="poplinks"><a href="/">title</a></div>
  808. <div id="poplinks"><a href="/">title</a></div>
  809. <div id="poplinks"><a href="/">title</a></div>
  810. <div id="poplinks"><a href="/">title</a></div>
  811. <div id="poplinks"><a href="/">title</a></div>
  812. <div id="poplinks"><a href="/">title</a></div>
  813. <div id="poplinks"><a href="/">title</a></div>
  814. <div id="poplinks"><a href="/">title</a></div>
  815. <div id="poplinks"><a href="/">title</a></div>
  816. <div id="poplinks"><a href="/">title</a></div>
  817. <div id="poplinks"><a href="/">title</a></div>
  818.  
  819. </div>
  820. </div>
  821.  
  822. <!--HEADCANONS-->
  823.  
  824. <div id="pop7" class="popup_block" >
  825.  
  826. <img src="https://i.imgur.com/YPWPZFB.png" style="margin-bottom: 20px;" title="headcanons">
  827.  
  828. <div style="height:300px; overflow: auto;">
  829.  
  830. <div id="poph1">cupcake ipsum</div>
  831.  
  832. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  833.  
  834. <div id="poph1">cupcake ipsum</div>
  835.  
  836. Sesame snaps cotton candy cake donut cake tiramisu danish. Gummi bears biscuit brownie soufflé dessert dragée. Chupa chups dragée jelly. Fruitcake powder caramels lemon drops wafer. Jelly-o dessert icing gummi bears tiramisu gummi bears sweet wafer muffin. Carrot cake sweet marshmallow gummi bears biscuit marzipan jelly. Topping soufflé lemon drops jujubes biscuit tart. Chocolate gummies jujubes lemon drops muffin lemon drops halvah dessert.
  837.  
  838.  
  839. </div>
  840. </div>
  841.  
  842.  
  843.  
  844. </body>
  845.  
  846.  
  847.  
  848. </html>
Add Comment
Please, Sign In to add comment