Advertisement
alicescreed

xxj0kerxx

Feb 28th, 2020
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.20 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! anacommissions loves 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.  
  15. <meta name="text:link1url" content="">
  16. <meta name="text:link1title" content="title">
  17. <meta name="text:link2url" content="">
  18. <meta name="text:link2title" content="title">
  19. <meta name="text:link3url" content="">
  20. <meta name="text:link3title" content="title">
  21.  
  22. <meta name="image:background" content="">
  23. <meta name="image:infobackground" content="">
  24.  
  25. <meta name="color:text" content="#dbe0e5">
  26. <meta name="color:scrollbar" content="#6cad64">
  27. <meta name="color:bold" content="#e12e1b">
  28. <meta name="color:italic" content="#4597c4">
  29. <meta name="color:links" content="#ca6635">
  30. <meta name="color:borders" content="#898989">
  31. <meta name="color:hover link" content="#6cad64">
  32.  
  33. <link href="https://fonts.googleapis.com/css?family=Bebas+Neue|Roboto&display=swap" rel="stylesheet">
  34.  
  35. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  36. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  37. <script>
  38. (function($){
  39. $(document).ready(function(){
  40. $("[title]").style_my_tooltips({
  41. tip_follows_cursor:true,
  42. tip_delay_time:200,
  43. tip_fade_speed:300
  44. }
  45. );
  46. });
  47. })(jQuery);
  48. </script>
  49.  
  50. <style type="text/css">
  51.  
  52.  
  53. body {
  54. font-family: 'Roboto', sans-serif;
  55. color: {color:text};
  56. font-size: 11px;
  57. letter-spacing: 0px;
  58. background-color: #000;
  59. background-image: url('{image:background}');
  60. background-position: absolute;
  61. background-attachment: fixed;
  62. line-height: 120%;
  63. background-repeat: no-repeat;
  64. text-align: justify;
  65. }
  66.  
  67. #s-m-t-tooltip{
  68. position: absolute;
  69. z-index: 999999999999999999999999999999999999999999999999999999999999;
  70. margin-top: 10px;
  71. margin-left: 5px;
  72. display: block;
  73. background-image: url('{image:infobackground}');
  74. background-position: center;
  75. text-align: center;
  76. border-radius: 20px;
  77. color: #fff;
  78. font-style: italic;
  79. font-family: 'bebas neue', cursive;
  80. letter-spacing: 1px;
  81. border: 1px dashed {color:borders};
  82. padding: 10px;
  83. font-size: 14pt;
  84. margin-bottom: 5px;
  85. }
  86.  
  87. ::-webkit-scrollbar-thumb:vertical {
  88. background-color: {color:scrollbar};
  89. height:auto;
  90. }
  91.  
  92. ::-webkit-scrollbar-thumb:horizontal {
  93. background-color: {color:scrollbar};
  94. height:2px;
  95. }
  96.  
  97. ::-webkit-scrollbar {
  98. height:2px;
  99. width:2px;
  100. background-color: transparent;
  101. }
  102.  
  103.  
  104. a {
  105. text-decoration: none;
  106. color: {color:links};
  107. font-size: 14pt;
  108. line-height: 16pt;
  109. font-weight: bold;
  110. transition-duration: 0.6s;
  111. -moz-transition-duration: 0.6s;
  112. -webkit-transition-duration: 0.6s;
  113. -o-transition-duration: 0.6s;
  114. font-family: 'bebas neue', cursive;
  115. letter-spacing: 1px;
  116. text-shadow: 1px 1px 5px #000;
  117. }
  118.  
  119.  
  120. a:hover {
  121. letter-spacing: 2px;
  122. text-decoration: none;
  123. font-size: 14pt;
  124. filter:blur(1px);
  125. color: {color:hover link};
  126. transition-duration: 0.6s;
  127. -moz-transition-duration: 0.6s;
  128. -webkit-transition-duration: 0.6s;
  129. -o-transition-duration: 0.6s;
  130. text-shadow: 1px 1px 4px #000;
  131. }
  132.  
  133. small, sup, sub {
  134. font-size: 100%;
  135. }
  136.  
  137. b, strong {
  138. text-shadow: 1px 1px 5px #000;
  139. padding-left: 2px;
  140. padding-right: 2px;
  141. color:{color:bold};
  142. letter-spacing: 1px;
  143. font-weight: bold;
  144. font-size: 120%;
  145. font-family: verdana;
  146. }
  147.  
  148. i, em {
  149. text-shadow: 1px 1px 5px #000;
  150. color:{color:italic};
  151. font-style: italic;
  152. letter-spacing: 1px;
  153. padding-left:5px;
  154. padding-right: 5px;
  155. padding-top: 10px;
  156. padding-bottom: 10px;
  157. font-size: 15pt;
  158. font-family: 'bebas neue', cursive;
  159. }
  160.  
  161. h2 {
  162. text-shadow: 1px 1px 5px #000;
  163. font-family: 'Roboto', sans-serif;
  164. font-size: 14pt;
  165. line-height: 16pt;
  166. font-weight: bold;
  167. letter-spacing: 1px;
  168. }
  169.  
  170. #info {
  171. background-color: grey;
  172. padding: 20px;
  173. border-radius: 20px;
  174. background-image: url('{image:infobackground}');
  175. background-position: center;
  176. text-align: center;
  177. color: #fff;
  178. letter-spacing: 1px;
  179. font-family:'Roboto', sans-serif;
  180. text-shadow: 1px 1px 4px #000;
  181. border: 1px dashed {color:borders};
  182. }
  183.  
  184. #ask {
  185. background-image: url('{image:infobackground}');
  186. text-align: center;
  187. color: #fff;
  188. border-radius: 20px;
  189. font-family: 'Roboto', sans-serif;
  190. border: 1px dashed {color:borders};
  191. padding: 10px;
  192. line-height: 110%;
  193. font-size: 16px;
  194. background-position: center;
  195. margin-bottom: 5px;
  196. }
  197.  
  198. #h1 {
  199. color: white;
  200. background-position: center;
  201. text-shadow: 1px 1px 5px #000;
  202. background-image: url('{image:infobackground}');
  203. text-align: center;
  204. font-family: 'Roboto', sans-serif;
  205. border: 1px dashed {color:borders};
  206. padding: 5px;
  207. line-height: 120%;
  208. font-size: 22px;
  209. margin-bottom: 5px;
  210. }
  211.  
  212. h1 {
  213. font-family: 'bebas neue', cursive;
  214. font-size: 14pt;
  215. line-height: 16pt;
  216. color: white;
  217. font-weight: normal;
  218. text-align: center;
  219. }
  220.  
  221. #sidebar {
  222. margin-left: 760px;
  223. width: 135px;
  224. font-size: 9px;
  225. height: auto;
  226. margin-top: 412px;
  227. position: fixed;
  228. background-color: transparent;
  229. padding: 10px;
  230. }
  231.  
  232. #description {
  233. height: 155px;
  234. padding-right: 3px;
  235. overflow: auto;
  236. }
  237.  
  238. #audio {
  239. text-align: center;
  240. font-size: 8pt;
  241. line-height: 9pt;
  242. }
  243.  
  244.  
  245. #musicinfo {
  246.  
  247. text-transform: uppercase;
  248. margin-top:10px;
  249. }
  250.  
  251. blockquote {
  252. border-left: 2px solid {Color:bold};
  253. border-right: 2px solid {Color:italic};
  254. padding: 5px;
  255. border-radius: 5px;
  256. background-color: #121212;
  257. }
  258.  
  259. blockquote img {
  260. max-width: 100%;
  261. }
  262.  
  263.  
  264. ol.notes {
  265. text-align: left;
  266. list-style: upper-roman;
  267. padding: 10px;
  268.  
  269. }
  270.  
  271. #info a {
  272. font-family: 'bebas neue', cursive;
  273. font-size: 12pt;
  274. color: {color:italic};
  275. }
  276.  
  277. #info a:hover {
  278. color: {color:bold};
  279. }
  280.  
  281. #credit {
  282. right:10px;
  283. bottom:7px;
  284. padding:5px;
  285. font-size:10px;
  286. position:fixed;
  287. background-image: url('{image:infobackground}');
  288. text-align: center;
  289. font-style: italic;
  290. font-family: 'Roboto', sans-serif;
  291. letter-spacing: 1px;
  292. border: 1px dashed {color:borders};
  293. padding: 5px;
  294. font-size: 120%;
  295. margin-bottom: 5px;
  296. transition-duration: 0.6s;
  297. -moz-transition-duration: 0.6s;
  298. -webkit-transition-duration: 0.6s;
  299. -o-transition-duration: 0.6s;
  300. }
  301.  
  302.  
  303. #credit a {
  304. font-family: 'Roboto', sans-serif;
  305. color:#fff;
  306. padding:5px;
  307. letter-spacing:1px;
  308. text-decoration:none;
  309. font-weight:bold;
  310. }3
  311. II
  312. #tags {
  313.  
  314. }
  315.  
  316. #tags a {
  317. font-size: 8px;
  318. line-height: 9px;
  319. font-family: verdana;
  320. text-transform: uppercase;
  321. color:{color:text};
  322. }
  323.  
  324. #post {
  325. width: 500px;
  326. margin-bottom: 20px;
  327. }
  328.  
  329. #posts {
  330. width: 500px;
  331. height: 540px;
  332. padding-right: 5px;
  333. position: absolute;
  334. margin-left: 225px;
  335. margin-top: 35px;
  336. overflow: auto;
  337. }
  338.  
  339.  
  340. #navlinks {
  341. margin-left: 915px;
  342. margin-top: 425px;
  343. position: fixed;
  344. }
  345.  
  346. #navlinks a{
  347. line-height: 100%;
  348. font-size: 14pt;
  349. color:{color:text};
  350. transition-duration: 0.6s;
  351. -moz-transition-duration: 0.6s;
  352. -webkit-transition-duration: 0.6s;
  353. -o-transition-duration: 0.6s;
  354. }
  355.  
  356. #navlinks a:hover{
  357. color:{color:links};
  358. letter-spacing: 2px;
  359. transition-duration: 0.6s;
  360. -moz-transition-duration: 0.6s;
  361. -webkit-transition-duration: 0.6s;
  362. -o-transition-duration: 0.6s;
  363. }
  364.  
  365. #pages {
  366. position: fixed;
  367. margin-top: 10px;
  368. width: 140px;
  369. text-align:center;
  370. }
  371.  
  372. </style>
  373.  
  374. </head>
  375.  
  376. <body>
  377.  
  378.  
  379. <div id="navlinks">
  380. <a href="/" title="home">01.</a> <br>
  381. <a href="/ask" title="ask">02.</a> <br>
  382. <a href="{text:link1url}" title="{text:link1title}">03.</a><br>
  383. <a href="{text:link2url}" title="{text:link2title}">04.</a><br>
  384. <a href="{text:link3url}" title="{text:link3title}">05.</a><br>
  385. {block:Pagination}
  386. {block:PreviousPage}
  387. <a href="{PreviousPage}">fall</a> /
  388. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  389. {/block:NextPage}
  390. {/block:Pagination}
  391.  
  392. </div>
  393.  
  394.  
  395. <div id="sidebar">
  396. <div id="description">
  397. {description}
  398. </div>
  399. </div>
  400.  
  401.  
  402.  
  403. <div id="posts">{block:Posts}<div id="post">
  404.  
  405.  
  406.  
  407. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  408.  
  409. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  410.  
  411. {Caption} {/block:Caption}{/block:Photo}
  412.  
  413. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  414.  
  415. {/block:Photoset}
  416.  
  417. {block:Quote}<div id="h1">{Quote}</div>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  418.  
  419. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  420.  
  421. {Description}{/block:Description}{/block:Link}
  422.  
  423. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  424.  
  425. {Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  426.  
  427. {block:Audio}
  428. <div id="audio">
  429. {block:TrackName}
  430. <div id="musicinfo" style="margin-top: 5px;">
  431. {AudioPlayerGrey} <br>
  432. {TrackName} by
  433. {/block:TrackName}
  434. {block:Artist}
  435. {Artist}
  436. {/block:Artist}
  437.  
  438. </div>
  439. </div>
  440. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  441. {/block:Audio}
  442.  
  443.  
  444. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  445.  
  446. {block:Answer}
  447. <div id="ask">
  448. {Asker} asked, <br>
  449. <span style="font-weight: normal; color: {color:text}; font-size: 12px; text-shadow: 1px 1px 1px #000;">" {Question} "</span>
  450. </div>
  451. {Answer}{/block:Answer}
  452.  
  453. <div id="info">
  454. <a title="{TimeAgo}" title="{timeago}">{TimeAgo}</a> ♦ <a href="{Permalink}" title="{NoteCount} notes"> {NoteCount}</a> ♦ <a href="{ReblogURL}" title="reblog">reblog</a>
  455. <div id="tags">
  456. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  457. {/block:Tags}{/block:HasTags}
  458. </div>
  459. </div>
  460.  
  461. </div>
  462. {block:PostNotes}<Div style="width: 500px;">
  463.  
  464.  
  465. {PostNotes}</div>{/block:PostNotes}
  466. {/block:Posts}</div>
  467.  
  468. <div id="credit">
  469. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  470. </div>
  471.  
  472.  
  473.  
  474.  
  475.  
  476. </body>
  477.  
  478. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement