Advertisement
alicescreed

beachedthing;

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