Advertisement
alicescreed

tinymute

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