Advertisement
alicescreed

dcddyrcaper

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