alicescreed

timoremdei - watchmen

Jul 2nd, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.74 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.  
  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="color:text" content="#000000">
  17. <meta name="color:bold" content="#9c6a34">
  18. <meta name="color:italic" content="#526546">
  19. <meta name="color:links" content="#731212">
  20. <meta name="color:borders" content="#3a3635">
  21. <meta name="color:hover link" content="#848484">
  22.  
  23. <meta name="text:link1url" content="link">
  24. <meta name="text:link1title" content="title">
  25. <meta name="text:link2url" content="link">
  26. <meta name="text:link2title" content="title">
  27. <meta name="text:link3url" content="link">
  28. <meta name="text:link3title" content="title">
  29. <meta name="text:link4url" content="link">
  30. <meta name="text:link4title" content="title">
  31. <meta name="text:link5url" content="link">
  32. <meta name="text:link5title" content="title">
  33. <meta name="text:link6url" content="link">
  34. <meta name="text:link6title" content="title">
  35.  
  36.  
  37. <link href="https://fonts.googleapis.com/css2?family=Notable&family=Roboto+Condensed&display=swap" rel="stylesheet">
  38.  
  39. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  40. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  41. <script>
  42. (function($){
  43. $(document).ready(function(){
  44. $("[title]").style_my_tooltips({
  45. tip_follows_cursor:true,
  46. tip_delay_time:200,
  47. tip_fade_speed:300
  48. }
  49. );
  50. });
  51. })(jQuery);
  52. </script>
  53.  
  54. <script type="text/javascript"
  55. src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  56. <script>
  57. $(document).ready(function() {
  58. //
  59. $('a.poplight[href^=#]').click(function() {
  60. var popID = $(this).attr('rel'); //Get Popup Name
  61. var popURL = $(this).attr('href'); //Get Popup href to define size
  62. var query= popURL.split('?');
  63. var dim= query[1].split('&');
  64. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  65. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  66. var popMargTop = ($('#' + popID).height() + 80) / 2;
  67. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  68. //Apply Margin to Popup
  69. $('#' + popID).css({
  70. 'margin-top' : -popMargTop,
  71. 'margin-left' : -popMargLeft
  72. });
  73. $('body').append('<div id="fade"></div>');
  74. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  75. return false;
  76. });
  77. $('a.close, #fade').live('click', function() {
  78. $('#fade , .popup_block').fadeOut(function() {
  79. $('#fade, a.close').remove(); //fade them both out
  80. });
  81. return false;
  82. });
  83. });
  84. </script>
  85.  
  86.  
  87. <style type="text/css">
  88.  
  89.  
  90. body {
  91. font-family: 'Roboto Condensed', sans-serif;
  92. color: {color:text};
  93. font-size: 8pt;
  94. letter-spacing: 0px;
  95. background-color:#000000;
  96. background-image: url('https://i.imgur.com/CnjTtqN.png');
  97. background-position: top-right;
  98. background-repeat: no-repeat;
  99. background-attachment: fixed;
  100. line-height: 12pt;
  101. text-align: justify;
  102. }
  103.  
  104. #s-m-t-tooltip{
  105. position: absolute;
  106. z-index: 999999999999999999999999999999999999999999999999999999999999;
  107. margin-top: 10px;
  108. margin-left: 5px;
  109. display: block;
  110. color: #fff;
  111. background-image: url('https://i.imgur.com/GECbPJY.png');
  112. background-attachment: fixed;
  113. background-repeat: repeat;
  114. background-position: center;
  115. text-align: center;
  116. font-style: italic;
  117. box-shadow: 2px 2px 5px #000;
  118. font-family: 'Roboto Condensed', sans-serif;
  119. letter-spacing: 1px;
  120. text-shadow: 1px 1px 5px black;
  121. border: 4px double{Color:Borders};
  122. padding: 10px;
  123. font-size: 22pt;
  124. margin-bottom: 5px;
  125. }
  126.  
  127. ::-webkit-scrollbar-thumb:vertical {
  128. background-color: {color:scrollbar};
  129. height:auto;
  130. }
  131.  
  132. ::-webkit-scrollbar-thumb:horizontal {
  133. background-color: {color:scrollbar};
  134. height:2px;
  135. }
  136.  
  137. ::-webkit-scrollbar {
  138. height:2px;
  139. width:2px;
  140. background-color:transparent;
  141. }
  142.  
  143.  
  144. a {
  145. text-decoration: none;
  146. color: {color:links};
  147. font-size: 13pt;
  148. line-height: 19pt;
  149. transition-duration: 0.6s;
  150. -moz-transition-duration: 0.6s;
  151. -webkit-transition-duration: 0.6s;
  152. -o-transition-duration: 0.6s;
  153. font-family: 'Roboto Condensed', sans-serif;
  154. font-weight: bold;
  155. letter-spacing: 1px;
  156. text-shadow: 1px 1px 3px black;
  157. }
  158.  
  159.  
  160. a:hover {
  161. text-decoration: none;
  162. letter-spacing: 1px;
  163. filter:blur(2px);
  164. color: {color:hover link};
  165. transition-duration: 0.6s;
  166. -moz-transition-duration: 0.6s;
  167. -webkit-transition-duration: 0.6s;
  168. -o-transition-duration: 0.6s;
  169. }
  170.  
  171. small, sup, sub {
  172. font-size: 100%;
  173. }
  174.  
  175. b, strong {
  176. text-shadow: 1px 1px 4px black;
  177. padding-left: 2px;
  178. padding-right: 2px;
  179. color:{color:bold};
  180. letter-spacing: 0px;
  181. font-size: 12pt;
  182. font-family: 'Notable', sans-serif;
  183. }
  184.  
  185. i, em {
  186. text-shadow: 1px 1px 4px black;
  187. color:{color:italic};
  188. font-style: italic;
  189. font-family: 'Roboto Condensed', sans-serif;
  190. letter-spacing: 1px;
  191. padding-left:5px;
  192. padding-right: 5px;
  193. padding-top: 10px;
  194. padding-bottom: 10px;
  195. font-size: 13pt;
  196. }
  197.  
  198.  
  199.  
  200.  
  201. h2 {
  202. text-shadow: 1px 1px 5px black;
  203. font-family: 'Roboto Condensed', sans-serif;
  204. font-size: 16pt;
  205. font-weight: bold;
  206. line-height: 120%;
  207. letter-spacing: 1px;
  208. }
  209.  
  210.  
  211. #info {
  212. padding: 10px;
  213. color: {color:bold};
  214. margin-top: 10px;
  215. background-image: url('https://i.imgur.com/GECbPJY.png');
  216. text-align: center;
  217. letter-spacing: 1px;
  218. text-shadow: 1px 1px #000;
  219. transition-duration: 0.6s;
  220. -moz-transition-duration: 0.6s;
  221. -webkit-transition-duration: 0.6s;
  222. -o-transition-duration: 0.6s;
  223. font-size:14pt;
  224. border: 4px double{Color:Borders};
  225. }
  226.  
  227. #info a {
  228. color: {color:Bold};
  229. font-size: 12pt;
  230. text-shadow: 1px 1px 3px #000;
  231. font-weight:bold;
  232. }
  233.  
  234. #h1 {
  235. text-align: center;
  236. font-family: 'Roboto Condensed', sans-serif;
  237. padding: 10px;
  238. text-shadow: 1px 1px 4px #000;
  239. line-height: 110%;
  240. font-size: 18pt;
  241. background-position: center;
  242. margin-bottom: 5px;
  243. }
  244.  
  245. #sidebar {
  246. margin-left:1035px;
  247. width: 115px;
  248. font-size: 10pt;
  249. margin-top: 45px;
  250. position: fixed;
  251. }
  252.  
  253. #description {
  254. height:155px;
  255. font-size: 10px;
  256. line-height: 14px;
  257. overflow: auto;
  258. }
  259.  
  260. #audio {
  261. text-align: center;
  262. font-size: 8pt;
  263. line-height: 9pt;
  264. }
  265.  
  266.  
  267. #musicinfo {
  268.  
  269. text-transform: uppercase;
  270. margin-top:10px;
  271. }
  272.  
  273. blockquote {
  274. border-left: 5px solid {color:links};
  275. color: gray;
  276. background-color: #3a3635;
  277. padding: 5px;
  278. font-size: 95%
  279. }
  280.  
  281. blockquote img {
  282. max-width: 100%;
  283. display: block;
  284. height: auto
  285. }
  286.  
  287. img {
  288. max-width: 100%;
  289. display: block;
  290. height: auto
  291. }
  292.  
  293.  
  294. ol.notes {
  295. text-align: left;
  296. list-style: upper-roman;
  297. padding: 10px;
  298.  
  299. }
  300.  
  301.  
  302. #info a:hover {
  303. color: {color:bold};
  304. }
  305.  
  306. #credit {
  307. right:10px;
  308. bottom:7px;
  309. padding:5px;
  310. font-size:10px;
  311. position:fixed;
  312. background-image: url('https://i.imgur.com/GECbPJY.png');
  313. text-align: center;
  314. font-style: italic;
  315. font-family: 'Roboto Condensed', sans-serif;
  316. letter-spacing: 1px;
  317. border: 4px double {Color:Borders};
  318. padding: 5px;
  319. font-size: 120%;
  320. margin-bottom: 5px;
  321. transition-duration: 0.6s;
  322. -moz-transition-duration: 0.6s;
  323. -webkit-transition-duration: 0.6s;
  324. -o-transition-duration: 0.6s;
  325. }
  326.  
  327.  
  328. #credit a {
  329. font-family: 'Roboto Condensed', sans-serif;
  330. color:#fff;
  331. padding:5px;
  332. letter-spacing:1px;
  333. text-decoration:none;
  334. font-weight:bold;
  335. }
  336.  
  337. #tags a {
  338. font-family: verdana;
  339. font-weight: bold;
  340. font-size: 8px;
  341. line-height: 6px;
  342. color: gray;
  343. text-transform: uppercase;
  344. text-shadow: 1px 1px 1px #000;
  345. }
  346.  
  347. #post {
  348. width: 500px;
  349. margin-bottom: 25px;
  350. }
  351.  
  352. #posts {
  353. width: 500px;
  354. background-color: #4a4a46;
  355. height: auto;
  356. border-left: 3px solid #000000;
  357. border-right: 3px solid #000000;
  358. overflow-y: auto;
  359. margin-top: 20px;
  360. padding: 20px;
  361. position: absolute;
  362. margin-left:458px;
  363. }
  364.  
  365. #ask a {
  366. color: {color:italic};
  367. font-size:20pt;
  368. }
  369.  
  370. #ask {
  371. background-image: url('https://i.imgur.com/GECbPJY.png');
  372. background-repeat: repeat;
  373. text-align: center;
  374. color: {Color:Bold};
  375. padding: 10px;
  376. height: auto;
  377. border: 4px double{Color:Borders};
  378. background-color: #040404;
  379. text-shadow: 1px 1px 2px #000;
  380. }
  381.  
  382. #pa { margin-top: 20px;
  383. text-align: center;
  384. }
  385.  
  386. #pa a {
  387. text-shadow: 1px 1px 5px #000;
  388. color: gray;
  389. font-family: 'Roboto Condensed', sans-serif;
  390. text-transform: uppercase;
  391. font-size: 15pt;
  392. }
  393.  
  394. #links {
  395. position: fixed;
  396. text-align: left;
  397. margin-top: 40px;
  398. margin-left: 1170px;
  399. width: 500px;
  400. line-height: 14pt;
  401. transition-duration: 0.6s;
  402. -moz-transition-duration: 0.6s;
  403. -webkit-transition-duration: 0.6s;
  404. -o-transition-duration: 0.6s;
  405. }
  406.  
  407. #links a {
  408. font-weight: bold;
  409. filter:blur(0px);
  410. animation: spin 6s;
  411. animation-direction: alternate;
  412. animation-iteration-count: infinite;
  413. transition-duration: 1s;
  414. -moz-transition-duration: 1s;
  415. -webkit-transition-duration:1s;
  416. -o-transition-duration: 1s;
  417. text-shadow: 2px 2px 4px #000;
  418. font-size: 14pt;
  419. line-height: 16pt;
  420. font-family: 'Notable', sans-serif;
  421. }
  422.  
  423.  
  424. #links a:hover {
  425. filter:blur(3px); transition-duration: 0.6s;
  426. -moz-transition-duration: 0.6s;
  427. -webkit-transition-duration: 0.6s;
  428. -o-transition-duration: 0.6s;
  429.  
  430. }
  431.  
  432. #desctitle {
  433. padding: 4px;
  434. font-family: verdana;
  435. text-transform: uppercase;
  436. font-size: 8px;
  437. text-shadow: 1px 1px 3px #000;
  438. color: gray;
  439. font-weight: bold;
  440. border: 4px double{Color:Borders};
  441. text-align: center;
  442. background-position: center;
  443. background-image: url('https://i.imgur.com/GECbPJY.png');
  444. }
  445.  
  446.  
  447.  
  448. </style>
  449.  
  450. </head>
  451.  
  452. <body>
  453.  
  454. <div id="links">
  455. <a href="/" title="return">I.</a><br>
  456. <a href="/ask" title="ask">II.</a><br>
  457. <a href="{text:link1url}" title="{text:link1title}">III.</a><br>
  458. <a href="{text:link2url}" title="{text:link2title}">IV.</a><br>
  459. <a href="{text:link3url}" title="{text:link3title}">V.</a><br>
  460. <a href="{text:link4url}" title="{text:link4title}">VI.</a><br>
  461. <a href="{text:link5url}" title="{text:link5title}">VII.</a><br>
  462. <a href="{text:link6url}" title="{text:link6title}">VIII.</a><br>
  463. </div>
  464.  
  465. <div id="sidebar">
  466. <div id="desctitle" style="margin-bottom: 5px;">{title}</div>
  467. <div id="description">
  468. {Description}
  469. </div>
  470. <div id="pa">{block:Pagination}
  471. {block:PreviousPage}
  472. <a href="{PreviousPage}">back</a> /
  473. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">next</a>
  474. {/block:NextPage}
  475. {/block:Pagination}</div>
  476. </div>
  477.  
  478. <div id="posts">
  479.  
  480.  
  481. {block:Posts}<div id="post">
  482.  
  483.  
  484.  
  485. {block:Text}<div id="h1">{block:Title}{Title}{/block:Title}</div>{Body}{/block:Text}
  486.  
  487. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  488.  
  489. {Caption} {/block:Caption}{/block:Photo}
  490.  
  491. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  492.  
  493. {/block:Photoset}
  494.  
  495. {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}
  496.  
  497. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  498.  
  499. {Description}{/block:Description}{/block:Link}
  500.  
  501. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  502.  
  503. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  504.  
  505. {block:Audio}
  506. <div id="audio">
  507. {block:TrackName}
  508. <div id="musicinfo" style="margin-top: 5px;">
  509. {AudioPlayerGrey} <br>
  510. {TrackName} by
  511. {/block:TrackName}
  512. {block:Artist}
  513. {Artist}
  514. {/block:Artist}
  515.  
  516. </div>
  517. </div>
  518. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  519. {/block:Audio}
  520.  
  521.  
  522. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  523.  
  524. {block:Answer}
  525. <div id="ask">
  526. <center>
  527. <img src="{AskerPortraitURL-128}" width="64" style="border-radius: 100px; box-shadow: 3px 3px 5px #000; margin-bottom: 6px;"></center>
  528. {Asker} asked,<br>
  529. {Question}
  530. </div>
  531. {Answer}{/block:Answer}
  532.  
  533. <div id="info">
  534. <a title="{TimeAgo}" title="{TimeAgo}">{Timeago}️</a> || <a href="{Permalink}" title="{NoteCount} notes">{notecount}️</a> || <a href="{ReblogURL}" title="reblog">reblog️</a>
  535. <div id="tags">
  536. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  537. {/block:Tags}{/block:HasTags}
  538. </div>
  539. </div>
  540.  
  541.  
  542. </div>
  543. {block:PostNotes}<Div style="width: 500px;">
  544.  
  545.  
  546. {PostNotes}</div>{/block:PostNotes}
  547. {/block:Posts}</div>
  548.  
  549.  
  550. <div id="credit">
  551. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  552. </div>
  553.  
  554.  
  555.  
  556. </body>
  557.  
  558.  
  559.  
  560. </html>
Add Comment
Please, Sign In to add comment