Advertisement
alicescreed

kinglyisms

Feb 23rd, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.84 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! -->
  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}" />
  13.  
  14. {/block:Description}
  15.  
  16.  
  17. <meta name="image:background" content="">
  18. <meta name="image:infobackground" content="">
  19.  
  20. <meta name="text:your url" content="url">
  21. <meta name="text:pop1 link title" content="name">
  22. <meta name="text:pop2 link title" content="name">
  23. <meta name="text:pop3 link title" content="name">
  24. <meta name="text:pop4 link title" content="name">
  25. <meta name="text:pop5 link title" content="name">
  26. <meta name="text:pop1 content" content="your content">
  27. <meta name="text:pop2 content" content="your content">
  28. <meta name="text:pop3 content" content="your content">
  29. <meta name="text:pop4 content" content="your content">
  30. <meta name="text:pop5 content" content="your content">
  31. <meta name="text:pop1 page title" content="name">
  32. <meta name="text:pop2 page title" content="name">
  33. <meta name="text:pop3 page title" content="name">
  34. <meta name="text:pop4 page title" content="name">
  35. <meta name="text:pop5 page title" content="name">
  36.  
  37. <meta name="color:text" content="#000000">
  38. <meta name="color:scrollbar" content="#4c63b3">
  39. <meta name="color:bold" content="#4c63b3">
  40. <meta name="color:italic" content="#d5c6d5">
  41. <meta name="color:links" content="#934dc6">
  42. <meta name="color:borders" content="#b0b0b0">
  43. <meta name="color:hover link" content="#474747">
  44.  
  45. <link href="https://fonts.googleapis.com/css?family=Dancing+Script|Ubuntu+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. <style type="text/css">
  96.  
  97.  
  98. body {
  99. font-family: 'Ubuntu Condensed', sans-serif;
  100. color: {color:text};
  101. font-size: 13px;
  102. letter-spacing: 0px;
  103. background-color: #7b7594;
  104. background-image: url('{image:background}');
  105. background-position: absolute;
  106. background-attachment: fixed;
  107. line-height: 120%;
  108. background-repeat: no-repeat;
  109. text-align: justify;
  110. }
  111.  
  112. #s-m-t-tooltip{
  113. position: absolute;
  114. z-index: 999999999999999999999999999999999999999999999999999999999999;
  115. margin-top: 10px;
  116. margin-left: 5px;
  117. display: block;
  118. background-image: url('{image:infobackground}');
  119. background-position: center;
  120. text-align: center;
  121. color: #d5c6d5;
  122. font-style: italic;
  123. font-family: 'Ubuntu Condensed', sans-serif;
  124. letter-spacing: 1px;
  125. border: 4px double {color:borders};
  126. padding: 10px;
  127. font-size: 200%;
  128. margin-bottom: 5px;
  129. }
  130.  
  131. ::-webkit-scrollbar-thumb:vertical {
  132. background-color: {color:scrollbar};
  133. height:auto;
  134. }
  135.  
  136. ::-webkit-scrollbar-thumb:horizontal {
  137. background-color: {color:scrollbar};
  138. height:2px;
  139. }
  140.  
  141. ::-webkit-scrollbar {
  142. height:2px;
  143. width:3px;
  144. background-color: transparent;
  145. }
  146.  
  147.  
  148. a {
  149. text-decoration: none;
  150. color: {color:links};
  151. font-size: 13pt;
  152. line-height: 15pt;
  153. font-weight: bold;
  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: 'Dancing Script', cursive;
  159. letter-spacing: 1px;
  160. text-shadow: 1px 1px 5px #707070;
  161. }
  162.  
  163.  
  164. a:hover {
  165. letter-spacing: 2px;
  166. text-decoration: none;
  167. font-size: 14pt;
  168. filter:blur(1px);
  169. color: {color:hover link};
  170. transition-duration: 0.6s;
  171. -moz-transition-duration: 0.6s;
  172. -webkit-transition-duration: 0.6s;
  173. -o-transition-duration: 0.6s;
  174. text-shadow: 1px 1px 4px #000;
  175. }
  176.  
  177. small, sup, sub {
  178. font-size: 100%;
  179. }
  180.  
  181. b, strong {
  182. text-shadow: 1px 1px 5px #707070;
  183. padding-left: 2px;
  184. padding-right: 2px;
  185. color:{color:bold};
  186. letter-spacing: 1px;
  187. font-weight: bold;
  188. font-size: 150%;
  189. font-family: 'Ubuntu Condensed', sans-serif;
  190. }
  191.  
  192. i, em {
  193. text-shadow: 1px 1px 5px #000;
  194. color:{color:italic};
  195. font-style: italic;
  196. letter-spacing: 1px;
  197. padding-left:5px;
  198. padding-right: 5px;
  199. padding-top: 10px;
  200. padding-bottom: 10px;
  201. font-size: 15pt;
  202. font-family: 'Dancing Script', cursive;
  203. }
  204.  
  205.  
  206.  
  207.  
  208. h2 {
  209. text-shadow: 1px 1px 5px #000;
  210. font-family: 'Ubuntu Condensed', sans-serif;
  211. font-size: 20pt;
  212. line-height: 20pt;
  213. font-weight: bold;
  214. letter-spacing: 1px;
  215. }
  216.  
  217. #info {
  218. background-color: grey;
  219. padding: 20px;
  220. background-image: url('{image:infobackground}');
  221. background-position: center;
  222. text-align: center;
  223. color: #d5c6d5;
  224. letter-spacing: 1px;
  225. font-family: 'Ubuntu Condensed', sans-serif;
  226. text-shadow: 1px 1px 4px #000;
  227. border: 4px double {color:borders};
  228. }
  229.  
  230. #sidebarh1 {
  231. background-image: url('{image:infobackground}');
  232. text-align: center;
  233. color: #d5c6d5;
  234. font-family: 'Dancing Script', cursive;
  235. border: 4px double {color:borders};
  236. padding: 10px;
  237. line-height: 110%;
  238. font-size: 16px;
  239. background-position: center;
  240. margin-bottom: 5px;
  241. }
  242.  
  243. #sidebarh1 a {
  244. color:#d5c6d5;
  245. font-size: 20pt;
  246. }
  247.  
  248. #h1 {
  249. background-position: center;
  250. text-shadow: 1px 1px 5px #000;
  251. background-image: url('{image:infobackground}');
  252. text-align: center;
  253. font-family: 'Dancing Script', cursive;
  254. border: 4px double {color:borders};
  255. padding: 5px;
  256. line-height: 120%;
  257. font-size: 22px;
  258. margin-bottom: 5px;
  259. }
  260.  
  261. h1 {
  262. font-family: 'Dancing Script', cursive;
  263. font-size: 20pt;
  264. line-height: 21pt;
  265. color: white;
  266. font-weight: normal;
  267. text-align: center;
  268. }
  269.  
  270. #audio {
  271. text-align: center;
  272. font-size: 8pt;
  273. line-height: 9pt;
  274. }
  275.  
  276.  
  277. #musicinfo {
  278.  
  279. text-transform: uppercase;
  280. margin-top:10px;
  281. }
  282.  
  283. blockquote {
  284. border-right: 2px solid {Color:bold};
  285. border-left: 2px solid {Color:bold};
  286. padding: 5px;
  287. background-color: #a19fa7;
  288. }
  289.  
  290. blockquote img {
  291. max-width: 100%;
  292. }
  293.  
  294.  
  295. ol.notes {
  296. text-align: left;
  297. list-style: upper-roman;
  298. padding: 10px;
  299.  
  300. }
  301.  
  302. #info a {
  303. font-family: 'Ubuntu Condensed', sans-serif;
  304. font-size: 40pt;
  305. text-transform: uppercase;
  306. color: {color:scrollbar};
  307. }
  308.  
  309. #info a:hover {
  310. color: {color:bold};
  311. }
  312.  
  313. #credit {
  314. right:10px;
  315. bottom:7px;
  316. padding:5px;
  317. font-size:10px;
  318. position:fixed;
  319. background-image: url('{image:infobackground}');
  320. text-align: center;
  321. font-style: italic;
  322. font-family: 'Ubuntu Condensed', sans-serif;
  323. letter-spacing: 1px;
  324. border: 4px double {color:borders};
  325. padding: 5px;
  326. font-size: 120%;
  327. margin-bottom: 5px;
  328. transition-duration: 0.6s;
  329. -moz-transition-duration: 0.6s;
  330. -webkit-transition-duration: 0.6s;
  331. -o-transition-duration: 0.6s;
  332. }
  333.  
  334.  
  335. #credit a {
  336. font-family: 'Ubuntu Condensed', sans-serif;
  337. color:#d5c6d5;
  338. padding:5px;
  339. letter-spacing:1px;
  340. text-decoration:none;
  341. font-weight:bold;
  342. }
  343.  
  344. #tags {
  345.  
  346. }
  347.  
  348. #tags a {
  349. color:#c1bbd8;
  350. font-size: 10px;
  351. line-height: 11px;
  352. font-family: times;
  353. text-transform: normal;
  354. }
  355.  
  356. #post {
  357. width: 400px;
  358. margin-bottom: 20px;
  359. }
  360.  
  361. #posts {
  362. width: 400px;
  363. height: 545px;
  364. padding-right: 8px;
  365. position: absolute;
  366. margin-left: 585px;
  367. margin-top: 10px;
  368. overflow: auto;
  369. }
  370.  
  371.  
  372.  
  373. #links {
  374. position: fixed;
  375. margin-top: 450px;
  376. text-align: left;
  377. width: 200px;
  378. font-size: 13pt;
  379. line-height: 6pt;
  380. margin-left: 525px;
  381. font-family: 'Ubuntu Condensed', sans-serif;
  382. }
  383.  
  384. #links a {
  385. color: {color:navlinks};
  386. font-weight: bold;
  387. font-family: 'Ubuntu Condensed', sans-serif;
  388. text-transform: uppercase;
  389. }
  390.  
  391. #links a:hover {
  392. color: {color:bold};
  393. font-style: normal;
  394. }
  395.  
  396. #navlinks {
  397. position: fixed;
  398. margin-left: 1010px;
  399. margin-top: 100px;
  400. font-family: times;
  401. }
  402.  
  403. #navlinks a{ font-family: times;
  404. line-height: 100%;
  405. font-size: 20pt;
  406. color:#c1bbd8;
  407. transition-duration: 0.6s;
  408. -moz-transition-duration: 0.6s;
  409. -webkit-transition-duration: 0.6s;
  410. -o-transition-duration: 0.6s;
  411. }
  412.  
  413. #navlinks a:hover{
  414. color:{color:links};
  415. letter-spacing: 2px;
  416. transform:rotate(2deg);
  417. transition-duration: 0.6s;
  418. -moz-transition-duration: 0.6s;
  419. -webkit-transition-duration: 0.6s;
  420. -o-transition-duration: 0.6s;
  421. }
  422.  
  423. #pages {
  424. }
  425.  
  426. #pages a {
  427. font-size: 12pt;
  428. }
  429.  
  430. #sidebar {
  431. margin-top: 410px;
  432. margin-left: 340px;
  433. position: fixed;
  434. width: 200px;
  435. font-size: 7pt;
  436. }
  437.  
  438. #description {
  439. width: 100px;
  440. height: 115px;
  441. padding-right: 5px;
  442. overflow: auto;
  443. float:left;
  444. }
  445.  
  446. #rightbox {
  447. position: fixed;
  448. width: 100px;
  449. margin-left: 100px;
  450. height: 115px;
  451. margin-top: 5px;
  452. text-align: center;
  453. }
  454.  
  455. #mtitle {
  456. text-transform: uppercase;
  457. font-weight: bold;
  458. color:{color:bold};
  459. margin-top: 10px;
  460. width:90px;
  461. font-size: 12pt;
  462. }
  463.  
  464. #fade {
  465. display: none;
  466. background: #fff;
  467. position: fixed;
  468. left: 0;
  469. top: 0;
  470. width: 100%;
  471. height: 100%;
  472. opacity: .50;
  473. z-index: 9999;
  474. }
  475.  
  476. .popup_block{
  477. display: none;
  478. padding: 20px;
  479. position: fixed;
  480. top: 50%;
  481. left: 50%;
  482. z-index: 99999;
  483. border: 3px solid {color:bold};
  484. background-color: #9d9ba3;
  485. }
  486.  
  487. img.btn_close {
  488. float: right;
  489. margin: -55px -55px 0 0;
  490. }
  491.  
  492. *html #fade {
  493. position: absolute;
  494. }
  495.  
  496. *html .popup_block {
  497. position: absolute;
  498. }
  499.  
  500. #leftimg {
  501. float:left;
  502. margin-right: 5px;
  503. }
  504.  
  505. #mtitle {
  506. margin-top: -3px;
  507. text-transform: uppercase;
  508. font-weight: bold;
  509. font-size: 10pt;
  510. color:{color:bold};
  511. }
  512.  
  513. #poph1 {
  514. color: {color:bold};
  515. background-position: center;
  516. text-shadow: 1px 1px 5px #000;
  517. background-image: url('{image:infobackground}');
  518. text-align: center;
  519. font-family: 'montserrat', sans-serif;
  520. border: 4px double {color:borders};
  521. padding: 5px;
  522. font-size: 10pt;
  523. font-weight: bold;
  524. text-transform: uppercase;
  525. margin-bottom: 5px;
  526. margin-top: 5px;
  527. }
  528.  
  529. </style>
  530.  
  531. </head>
  532.  
  533. <body>
  534.  
  535.  
  536. <div id="navlinks">
  537. <a href="/" title="{text:home link title}"> I.</a><br>
  538. <a href="#?w=400" rel="ask" class="poplight" title="ask" style="color:{color:bold}"> II.</a> <br>
  539. <a href="#?w=400" rel="pop1" class="poplight" title="{text:pop1 link title}" style="color:{color:italic}"> III.</a> <br>
  540. <a href="#?w=400" rel="pop2" class="poplight" style="color:{color:bold}" title="{text:pop2 link title}"> IV.</a> <br>
  541. <a href="#?w=400" rel="pop3" class="poplight" title="{text:pop3 link title}" style="color:{color:italic}"> V.</a> <br>
  542. <a href="#?w=400" rel="pop4" class="poplight" title="{text:pop4 link title}" style="color:{color:bold}"> VI.</a><br>
  543. <a href="#?w=400" rel="pop5" class="poplight" title="{text:pop5 link title}" style="color:{color:italic}"> VII.</a>
  544. </div>
  545.  
  546.  
  547. <div id="sidebar">
  548. <div id="description">
  549. {description}
  550. </div>
  551. <div id="rightbox">
  552. <img src="https://i.imgur.com/fBJzpkL.gif">
  553. <marquee scrolldelay="250" id="mtitle">{title}</marquee>
  554.  
  555. <div id="pages"> {block:Pagination}
  556. {block:PreviousPage}
  557. <a href="{PreviousPage}">fall</a> /
  558. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  559. {/block:NextPage}
  560. {/block:Pagination}</div></div>
  561. </div>
  562.  
  563.  
  564.  
  565. <div id="posts">{block:Posts}<div id="post">
  566.  
  567.  
  568.  
  569. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  570.  
  571. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  572.  
  573. {Caption} {/block:Caption}{/block:Photo}
  574.  
  575. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  576.  
  577. {/block:Photoset}
  578.  
  579. {block:Quote}<div id="h1">{Quote}</div>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  580.  
  581. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  582.  
  583. {Description}{/block:Description}{/block:Link}
  584.  
  585. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  586.  
  587. <div id="l">{Label}</b>{/block:Label} {Line}<br></div>{/block:Lines}{/block:Chat}
  588.  
  589. {block:Audio}
  590. <div id="audio">
  591. {block:TrackName}
  592. <div id="musicinfo" style="margin-top: 5px;">
  593. {AudioPlayerGrey} <br>
  594. {TrackName} by
  595. {/block:TrackName}
  596. {block:Artist}
  597. {Artist}
  598. {/block:Artist}
  599.  
  600. </div>
  601. </div>
  602. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  603. {/block:Audio}
  604.  
  605.  
  606. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  607.  
  608. {block:Answer}
  609. <div id="sidebarh1">
  610. ♦ {Asker} asked, <br>
  611. <span style="font-weight: normal;font-family: 'Ubuntu Condensed', sans-serif; color: {color:text}; font-size: 12pt;">" {Question} "</span>
  612. </div>
  613. {Answer}{/block:Answer}
  614.  
  615. <div id="info">
  616. <a title="{TimeAgo}" title="{timeago}">♦</a> <a href="{Permalink}" title="{NoteCount} notes">♦</a> <a href="{ReblogURL}" title="reblog">♦</a>
  617. <div id="tags">
  618. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  619. {/block:Tags}{/block:HasTags}
  620. </div>
  621. </div>
  622.  
  623. </div>
  624. {block:PostNotes}<Div style="width: 400px;">
  625.  
  626.  
  627. {PostNotes}</div>{/block:PostNotes}
  628. {/block:Posts}</div>
  629.  
  630. <div id="credit">
  631. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  632. </div>
  633.  
  634.  
  635. <div id="ask" class="popup_block">
  636. <iframe frameborder="0"
  637. height="480"
  638. id="ask_form"
  639. scrolling="no"
  640. src="https://www.tumblr.com/ask_form/{text:your url}.tumblr.com"
  641. width="400">
  642. </iframe>
  643. </div>
  644.  
  645. <div id="pop1" class="popup_block">
  646. <div style="height: 480px; overflow: auto; padding-right: 10px;">
  647. <div id="poph1">{text:pop1 page title}</div>
  648. {text:pop1 content}</div>
  649. </div>
  650.  
  651. <div id="pop2" class="popup_block">
  652. <div style="height: 480px; overflow: auto; padding-right: 10px;">
  653. <div id="poph1">{text:pop2 page title}</div>
  654. {text:pop2 content}</div>
  655. </div>
  656.  
  657. <div id="pop3" class="popup_block">
  658. <div style="height: 480px; overflow: auto; padding-right: 10px;">
  659. <div id="poph1">{text:pop3 page title}</div>
  660. {text:pop3 content}</div>
  661. </div>
  662.  
  663. <div id="pop4" class="popup_block">
  664. <div style="height: 480px; overflow: auto; padding-right: 10px;">
  665. <div id="poph1">{text:pop4 page title}</div>
  666. {text:pop4 content}</div>
  667. </div>
  668.  
  669. <div id="pop5" class="popup_block">
  670. <div style="height: 480px; overflow: auto; padding-right: 10px;">
  671. <div id="poph1">{text:pop5 page title}</div>
  672. {text:pop5 content}</div>
  673. </div>
  674.  
  675. </body>
  676.  
  677.  
  678. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement