Advertisement
alicescreed

unovavalkyrie

Mar 6th, 2020
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.14 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="text:home link title" content="return">
  17. <meta name="text:ask link title" content="ask">
  18. <meta name="text:pop1 link title" content="pop1 title">
  19. <meta name="text:pop2 link title" content="pop2 title">
  20. <meta name="text:pop3 link title" content="pop3 title">
  21. <meta name="text:pop4 link title" content="pop4 title">
  22. <meta name="text:pop5 link title" content="pop5 title">
  23.  
  24.  
  25. <meta name="image:background" content="">
  26. <meta name="image:infobackground" content="">
  27.  
  28. <meta name="color:text" content="#000000">
  29. <meta name="color:scrollbar" content="#2d4960">
  30. <meta name="color:bold" content="#af3148">
  31. <meta name="color:italic" content="#b4796c">
  32. <meta name="color:links" content="#545771">
  33. <meta name="color:borders" content="#8ca2b9">
  34. <meta name="color:hover link" content="#dfdfdf">
  35.  
  36. <link href="https://fonts.googleapis.com/css?family=Bebas+Neue|Montserrat|Leckerli+One&display=swap" rel="stylesheet">
  37.  
  38. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  39. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  40. <script>
  41. (function($){
  42. $(document).ready(function(){
  43. $("[title]").style_my_tooltips({
  44. tip_follows_cursor:true,
  45. tip_delay_time:200,
  46. tip_fade_speed:300
  47. }
  48. );
  49. });
  50. })(jQuery);
  51. </script>
  52.  
  53. <script type="text/javascript"
  54. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  55. <script>
  56. $(document).ready(function() {
  57. //
  58. $('a.poplight[href^=#]').click(function() {
  59. var popID = $(this).attr('rel'); //Get Popup Name
  60. var popURL = $(this).attr('href'); //Get Popup href to define size
  61. var query= popURL.split('?');
  62. var dim= query[1].split('&');
  63. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  64. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  65. var popMargTop = ($('#' + popID).height() + 80) / 2;
  66. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  67. //Apply Margin to Popup
  68. $('#' + popID).css({
  69. 'margin-top' : -popMargTop,
  70. 'margin-left' : -popMargLeft
  71. });
  72. $('body').append('<div id="fade"></div>');
  73. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  74. return false;
  75. });
  76. $('a.close, #fade').live('click', function() {
  77. $('#fade , .popup_block').fadeOut(function() {
  78. $('#fade, a.close').remove(); //fade them both out
  79. });
  80. return false;
  81. });
  82. });
  83. </script>
  84.  
  85.  
  86. <style type="text/css">
  87.  
  88.  
  89. body {
  90. font-family: 'Montserrat', sans-serif;
  91. color: {color:text};
  92. font-size: 9pt;
  93. letter-spacing: 0px;
  94. background-color: #111511;
  95. background-image: url('{image:background}');
  96. background-position: absolute;
  97. background-attachment: fixed;
  98. line-height: 120%;
  99. background-repeat: no-repeat;
  100. text-align: justify;
  101. }
  102.  
  103. #s-m-t-tooltip{
  104. position: absolute;
  105. z-index: 999999999999999999999999999999999999999999999999999999999999;
  106. margin-top: 10px;
  107. margin-left: 5px;
  108. display: block;
  109. border-radius: 50px;
  110. background-image: url('{image:infobackground}');
  111. background-position: center;
  112. text-align: center;
  113. color: #fff;
  114. font-style: italic;
  115. box-shadow: 2px 2px 5px #000;
  116. font-family: 'Bebas Neue', cursive;
  117. letter-spacing: 1px;
  118. text-shadow: 1px 1px 2px #000;
  119. border: 4px {color:borders};
  120. border-style: double;
  121. padding: 10px;
  122. font-size: 20px;
  123. margin-bottom: 5px;
  124. }
  125.  
  126. ::-webkit-scrollbar-thumb:vertical {
  127. background-color: {color:scrollbar};
  128. height:auto;
  129. }
  130.  
  131. ::-webkit-scrollbar-thumb:horizontal {
  132. background-color: {color:scrollbar};
  133. height:2px;
  134. }
  135.  
  136. ::-webkit-scrollbar {
  137. height:3px;
  138. width:3px;
  139. background-color: transparent;
  140. }
  141.  
  142.  
  143. a {
  144. text-decoration: none;
  145. color: {color:links};
  146. font-size: 14pt;
  147. line-height: 19pt;
  148. font-weight: bold;
  149. transition-duration: 0.6s;
  150. -moz-transition-duration: 0.6s;
  151. -webkit-transition-duration: 0.6s;
  152. -o-transition-duration: 0.6s;
  153. font-family: 'Bebas Neue', cursive;
  154. letter-spacing: 1px;
  155. text-shadow: 1px 1px 5px #fff;
  156. }
  157.  
  158.  
  159. a:hover {
  160. text-decoration: none;
  161. filter:blur(1px);
  162. letter-spacing: 1px;
  163. padding: 2px;
  164. color: {color:hover link};
  165. transition-duration: 0.6s;
  166. -moz-transition-duration: 0.6s;
  167. -webkit-transition-duration: 0.6s;
  168. -o-transition-duration: 0.6s;
  169. font-family:'Bebas Neue', cursive;
  170. }
  171.  
  172. small, sup, sub {
  173. font-size: 100%;
  174. }
  175.  
  176. b, strong {
  177. text-shadow: 1px 1px 5px #fff;
  178. padding-left: 2px;
  179. padding-right: 2px;
  180. color:{color:bold};
  181. letter-spacing: 0px;
  182. font-size: 17px;
  183. font-family: 'Bebas Neue', cursive;
  184. }
  185.  
  186. i, em {
  187. text-shadow: 1px 1px 5px #fff;
  188. color:{color:italic};
  189. font-family: 'Leckerli One', cursive;
  190. letter-spacing: 1px;
  191. padding-left:5px;
  192. padding-right: 5px;
  193. padding-top: 10px;
  194. padding-bottom: 10px;
  195. font-size: 20px;
  196. }
  197.  
  198.  
  199.  
  200.  
  201. h2 {
  202. text-shadow: 1px 1px 5px #000;
  203. color: #fff;
  204. font-family: 'Bebas Neue', cursive;
  205. font-size: 16pt;
  206. font-weight: bold;
  207. line-height: 120%;
  208. letter-spacing: 1px;
  209. }
  210.  
  211.  
  212. #info {
  213. padding: 10px;
  214. border-radius: 50px;
  215. background-image: url('{image:infobackground}');
  216. background-position: center;
  217. text-align: center;
  218. color: #fff;
  219. letter-spacing: 1px;
  220. transition-duration: 0.6s;
  221. -moz-transition-duration: 0.6s;
  222. -webkit-transition-duration: 0.6s;
  223. -o-transition-duration: 0.6s;
  224. font-size:14px;
  225. border: 4px {color:borders};
  226. border-style: double;
  227. }
  228.  
  229. #info a {
  230. font-size: 14pt;
  231. text-shadow: 1px 1px #000;
  232. color: #fff;
  233. font-weight: normal;
  234. font-family: 'leckerli one', cursive;
  235. }
  236.  
  237. #h1 {
  238. text-align: center;
  239. color: #fff;
  240. font-family: 'Bebas Neue', cursive;
  241. padding: 10px;
  242. text-shadow: 2px 2px 2px #000;
  243. line-height: 110%;
  244. font-size: 18pt;
  245. background-position: center;
  246. margin-bottom: 5px;
  247. }
  248.  
  249. #sidebar {
  250. margin-left: 550px;
  251. width: 230px;
  252. font-size: 11px;
  253. margin-top: 460px;
  254. position: fixed;
  255. background-color: transparent;
  256. padding: 10px;
  257. }
  258.  
  259. #description {
  260. height:120px;
  261. padding-right: 5px;
  262. overflow: auto;
  263. }
  264.  
  265. #audio {
  266. text-align: center;
  267. font-size: 8pt;
  268. line-height: 9pt;
  269. }
  270.  
  271.  
  272. #musicinfo {
  273.  
  274. text-transform: uppercase;
  275. margin-top:10px;
  276. }
  277.  
  278. blockquote {
  279. color: #b8cbe1;
  280. border-right: 2px solid {color:bold};
  281. border-left: 2px solid {color:italic};
  282. border-radius: 5px;
  283. transform:rotate(0deg);
  284. background-color: #101010;
  285. padding: 5px;
  286. font-size: 95%
  287. }
  288.  
  289. blockquote img {
  290. max-width: 100%;
  291. display: block;
  292. height: auto
  293. }
  294.  
  295. img {
  296. max-width: 100%;
  297. display: block;
  298. height: auto
  299. }
  300.  
  301.  
  302. ol.notes {
  303. text-align: left;
  304. list-style: upper-roman;
  305. padding: 10px;
  306.  
  307. }
  308.  
  309.  
  310. #info a:hover {
  311. color: {color:bold};
  312. }
  313.  
  314. #credit {
  315. right:10px;
  316. bottom:7px;
  317. padding:5px;
  318. font-size:10px;
  319. position:fixed;
  320. background-image: url('{image:infobackground}');
  321. text-align: center;
  322. font-style: italic;
  323. font-family: 'Bebas Neue', cursive;
  324. letter-spacing: 1px;
  325. border: 1px {color:borders};
  326. border-style: solid;
  327. padding: 5px;
  328. font-size: 120%;
  329. margin-bottom: 5px;
  330. transition-duration: 0.6s;
  331. -moz-transition-duration: 0.6s;
  332. -webkit-transition-duration: 0.6s;
  333. -o-transition-duration: 0.6s;
  334. }
  335.  
  336.  
  337. #credit a {
  338. font-family: 'Bebas Neue', cursive;
  339. color:#fff;
  340. padding:5px;
  341. letter-spacing:1px;
  342. text-decoration:none;
  343. font-weight:bold;
  344. }
  345.  
  346. #tags a {
  347. text-shadow: 1px 1px #000;
  348. color:{color:text};
  349. }
  350.  
  351. #post {
  352. width: 400px;
  353. margin-bottom: 25px;
  354. }
  355.  
  356. #posts {
  357. border-right: 10px solid #111511;
  358. width: 400px;
  359. padding: 23px;
  360. position: absolute;
  361. background-color: #859cb5;
  362. margin-left: -4px;
  363. margin-top: -10px;
  364. }
  365.  
  366.  
  367. #links {
  368. position: fixed;
  369. margin-top: 520px;
  370. text-align: left;
  371. width: 300px;
  372. font-size: 13pt;
  373. line-height: 6pt;
  374. margin-left: 550px;
  375. }
  376.  
  377. #links a {
  378. color: {color:navlinks};
  379. font-weight: bold;
  380. margin-right: 20px;
  381. font-family: 'Bebas Neue', cursive;
  382. text-transform: uppercase;
  383. }
  384.  
  385. #links a:hover {
  386. color: {color:bold};
  387. font-style: normal;
  388. }
  389.  
  390.  
  391. #pages {
  392. text-align: left;
  393. position: fixed;
  394. margin-left: 750px;
  395. margin-top: 70px;
  396. }
  397.  
  398. #pages a {
  399. line-height: 25px;
  400. font-size: 30px;
  401. }
  402.  
  403. #pages img {
  404. width: 60px; transition-duration: 0.6s;
  405. -moz-transition-duration: 0.6s;
  406. -webkit-transition-duration: 0.6s;
  407. -o-transition-duration: 0.6s;
  408. }
  409.  
  410. #pages img:hover {
  411. margin-left: 5px; transition-duration: 0.6s;
  412. -moz-transition-duration: 0.6s;
  413. -webkit-transition-duration: 0.6s;
  414. -o-transition-duration: 0.6s;
  415. }
  416.  
  417. #ask {
  418. border-bottom: 4px double;
  419. width: auto;
  420. padding: 10px;
  421. height: auto;
  422. font-size: 15pt;
  423. }
  424.  
  425. #pa { margin-top: 3px;
  426. text-align: center;
  427. }
  428.  
  429. #pa a {
  430. text-shadow: 1px 1px 5px #000;
  431. }
  432.  
  433. #fade {
  434. display: none;
  435. background: #cbaebb;
  436. position: fixed;
  437. left: 0;
  438. top: 0;
  439. width: 100%;
  440. height: 100%;
  441. background-image: url('https://i.imgur.com/XCY6Sg4.png');
  442. background-position: center;
  443. opacity: 1;
  444. z-index: 9999;
  445. }
  446.  
  447. .popup_block{
  448. display: none;
  449. padding: 10px;
  450. position: fixed;
  451. top: 50%;
  452. left: 50%;
  453. z-index: 99999;
  454. border: 10px solid #111511;
  455. background-color: #859cb5;
  456. }
  457.  
  458. img.btn_close {
  459. float: right;
  460. margin: -55px -55px 0 0;
  461. }
  462.  
  463. *html #fade {
  464. position: absolute;
  465. }
  466.  
  467. *html .popup_block {
  468. position: absolute;
  469. }
  470.  
  471. #poph1 {
  472. border-radius: 20px;
  473. color: #fff;
  474. background-position: center;
  475. text-shadow: 1px 1px 3px #000;
  476. background-image: url('{image:infobackground}');
  477. text-align: center;
  478. font-family: verdana;
  479. border: 4px double {color:borders};
  480. padding: 5px;
  481. font-size: 8pt;
  482. font-weight: bold;
  483. text-transform: uppercase;
  484. margin-bottom: 5px;
  485. margin-top: 5px;
  486. }
  487.  
  488. #navlinks {
  489. position: fixed;
  490. margin-left: 100px;
  491. margin-top: -50px;
  492. }
  493.  
  494. #navlinks a{
  495. line-height: 100%;
  496. font-size: 40pt;
  497. text-shadow: 2px 2px 5px #000;
  498. color:{color:text};
  499. transition-duration: 0.6s;
  500. -moz-transition-duration: 0.6s;
  501. -webkit-transition-duration: 0.6s;
  502. -o-transition-duration: 0.6s;
  503. }
  504.  
  505. #navlinks a:hover{
  506. color:{color:links};
  507. letter-spacing: 2px;
  508. transition-duration: 0.6s;
  509. -moz-transition-duration: 0.6s;
  510. -webkit-transition-duration: 0.6s;
  511. -o-transition-duration: 0.6s;
  512. }
  513.  
  514. #left {
  515. float:left;
  516. margin-right: 10px;
  517. }
  518.  
  519. </style>
  520.  
  521. </head>
  522.  
  523. <body>
  524.  
  525. <div id="navlinks">
  526.  
  527. <div style="margin-top: -60px; position: fixed; transform: rotate(5deg);">
  528. <div style="position: fixed; margin-top: 300px; margin-left: 650px;"><a href="/" title="{text:home link title}" style="color:#859cb5;"> ✦</a></div>
  529.  
  530. <div style="position: fixed; margin-top: 305px; margin-left: 740px;"><a href="#?w=400" rel="askme" class="poplight" title="{text:ask link title}" style="color:{color:bold}"> ✽</a></div>
  531.  
  532. <div style="position: fixed; margin-top: 270px; margin-left: 820px;"><a href="#?w=400" rel="pop1" class="poplight" title="{text:pop1 link title}" style="color:{color:italic}"> ☆</a> </div>
  533. </div>
  534.  
  535. <div style="margin-top: 140px; position: fixed; margin-left:-160px;">
  536. <div style="position: fixed; margin-top: 410px; margin-left: 890px;"><a href="#?w=400" rel="pop2" class="poplight" title="{text:pop2 link title}" style="color:#859cb5;"> ✽</a> </div>
  537.  
  538. <div style="position: fixed; margin-top: 420px; margin-left: 970px;"><a href="#?w=400" rel="pop3" class="poplight" title="{text:pop3 link title}" style="color:{color:bold}"> ☆</a> </div>
  539.  
  540. <div style="position: fixed; margin-top: 380px; margin-left: 1050px;"><a href="#?w=400" rel="pop4" class="poplight" title="{text:pop4 link title}" style="color:{color:italic}"> ✽</a></div>
  541.  
  542. <div style="position: fixed; margin-top: 420px; margin-left: 1130px;"><a href="#?w=400" rel="pop5" style="color:#859cb5;" class="poplight" title="{text:pop4 link title}"> ✦</a></div>
  543.  
  544. </div>
  545.  
  546. </div>
  547.  
  548. <div id="sidebar">
  549. <div id="description">
  550. {description}</div>
  551. <div id="pa">
  552. {block:Pagination}
  553. {block:PreviousPage}
  554. <a href="{PreviousPage}">fall</a> /
  555. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  556. {/block:NextPage}
  557. {/block:Pagination}</div>
  558.  
  559. </div>
  560.  
  561. </div>
  562.  
  563. <div id="posts">
  564.  
  565.  
  566. {block:Posts}<div id="post">
  567.  
  568.  
  569.  
  570. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  571.  
  572. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  573.  
  574. {Caption} {/block:Caption}{/block:Photo}
  575.  
  576. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  577.  
  578. {/block:Photoset}
  579.  
  580. {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}
  581.  
  582. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  583.  
  584. {Description}{/block:Description}{/block:Link}
  585.  
  586. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  587.  
  588. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  589.  
  590. {block:Audio}
  591. <div id="audio">
  592. {block:TrackName}
  593. <div id="musicinfo" style="margin-top: 5px;">
  594. {AudioPlayerGrey} <br>
  595. {TrackName} by
  596. {/block:TrackName}
  597. {block:Artist}
  598. {Artist}
  599. {/block:Artist}
  600.  
  601. </div>
  602. </div>
  603. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  604. {/block:Audio}
  605.  
  606.  
  607. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  608.  
  609. {block:Answer}
  610. <div id="ask">
  611. <div id="qq" style="margin-top: 0px;">
  612. {Asker} asked,<br>
  613. <span style="font-weight: normal;font-family: 'Montserrat', sans-serif; color: {color:text}; font-size: 10pt;">" {Question} "</span></div>
  614. </div>
  615. {Answer}{/block:Answer}
  616.  
  617. <div id="info">
  618. <a title="{TimeAgo}" title="{TimeAgo}">{timeago}</a> ✦ <a href="{Permalink}" title="{NoteCount} notes">{notecount}</a> ✦ <a href="{ReblogURL}" title="reblog">reblog</a>
  619. <div id="tags">
  620. {block:HasTags}{block:Tags} <a href="{TagURL}" style="font-family:'Montserrat', sans-serif; font-size: 10px; line-height: 13px; color: #fff;">#{Tag} </a>
  621. {/block:Tags}{/block:HasTags}
  622. </div>
  623. </div>
  624.  
  625.  
  626. </div>
  627. {block:PostNotes}<Div style="width: 400px;">
  628.  
  629.  
  630. {PostNotes}</div>{/block:PostNotes}
  631. {/block:Posts}</div>
  632.  
  633.  
  634. <div id="credit">
  635. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  636. </div>
  637.  
  638.  
  639. <div id="askme" class="popup_block">
  640. <div id="poph1">ask</div>
  641. <iframe frameborder="0"
  642. height="190"
  643. id="ask_form"
  644. scrolling="no"
  645. src="https://www.tumblr.com/ask_form/{text:url name}.tumblr.com"
  646. width="400">
  647. </iframe>
  648. </div>
  649.  
  650. <div id="pop1" class="popup_block">
  651. <div id="left"><img src="https://i.imgur.com/aO5eq4v.png" title="pokemon"></div>
  652. <div style="height: 450px; overflow: auto; padding-right: 10px;">
  653. <div id="poph1">cupcake ipsum</div>
  654. 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.
  655.  
  656. <div id="poph1">cupcake ipsum</div>
  657. 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.
  658.  
  659. <div id="poph1">cupcake ipsum</div>
  660. 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.
  661. <!--insert pop-up content html here for pop1
  662.  
  663. <div id="poph1">poph1</div> is the code for the special mini headers!!
  664. -->
  665. </div>
  666. </div>
  667.  
  668. <div id="pop2" class="popup_block">
  669. <img src="https://i.imgur.com/veJWbTf.png" title="about" style="margin-bottom: 10px;">
  670. <div style="height: 350px; overflow: auto; padding-right: 10px;">
  671.  
  672. <!--insert pop-up content html here for pop2
  673.  
  674. <div id="poph1">poph1</div> is the code for the special mini headers!!
  675. -->
  676.  
  677. <div id="poph1">cupcake ipsum</div>
  678. 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.
  679.  
  680. <div id="poph1">cupcake ipsum</div>
  681. 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.
  682.  
  683. <div id="poph1">cupcake ipsum</div>
  684. 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.
  685.  
  686. </div>
  687. </div>
  688.  
  689. <div id="pop3" class="popup_block">
  690. <img src="https://i.imgur.com/gftC9i8.png" title="verses" style="margin-bottom: 10px;">
  691. <div style="height: 350px; overflow: auto; padding-right: 10px;">
  692. <!--insert pop-up content html here for pop3
  693.  
  694. <div id="poph1">poph1</div> is the code for the special mini headers!!
  695. -->
  696.  
  697. <div id="poph1">cupcake ipsum</div>
  698. 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.
  699.  
  700. <div id="poph1">cupcake ipsum</div>
  701. 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.
  702.  
  703. <div id="poph1">cupcake ipsum</div>
  704. 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.
  705.  
  706. </div>
  707. </div>
  708.  
  709. <div id="pop4" class="popup_block">
  710. <img src="https://i.imgur.com/4NbJyZw.png" title="guidelines" style="margin-bottom: 10px;">
  711. <div style="height: 350px; overflow: auto; padding-right: 10px;">
  712. <!--insert pop-up content html here for pop4
  713.  
  714. <div id="poph1">poph1</div> is the code for the special mini headers!!
  715. -->
  716.  
  717. <div id="poph1">cupcake ipsum</div>
  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.
  719.  
  720. <div id="poph1">cupcake ipsum</div>
  721. 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.
  722.  
  723. <div id="poph1">cupcake ipsum</div>
  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>
  727. </div>
  728.  
  729.  
  730. <div id="pop5" class="popup_block">
  731. <img src="https://i.imgur.com/Yv6igEo.png" title="NPCs" style="margin-bottom: 10px;">
  732. <div style="height: 350px; overflow: auto; padding-right: 10px;">
  733. <!--insert pop-up content html here for pop4
  734.  
  735. <div id="poph1">poph1</div> is the code for the special mini headers!!
  736. -->
  737.  
  738. <div id="poph1">cupcake ipsum</div>
  739. 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.
  740.  
  741. <div id="poph1">cupcake ipsum</div>
  742. 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.
  743.  
  744. <div id="poph1">cupcake ipsum</div>
  745. 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.
  746.  
  747. </div>
  748. </div>
  749.  
  750.  
  751. </body>
  752.  
  753.  
  754.  
  755. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement