Advertisement
alicescreed

aequusjedi

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