Advertisement
alicescreed

nverletmego001

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