Advertisement
alicescreed

HRLYQN 2.24.2020

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