Advertisement
alicescreed

themisfitmouse

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