Sky_Blue

SURVIVAL GAME! theme

Apr 12th, 2020 (edited)
1,101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 19.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5.  
  6. SURVIVAL GAME! theme by @puella
  7.  
  8. first theme fellas... :flushed:
  9.  
  10. you can move the credit / change the credit emoji, but don't completely remove or obscure it or else i'll stand in front of your bed in the middle of the night
  11.  
  12. revamped 3/23/21
  13.  
  14. ----->
  15.  
  16. <script src="https://kit.fontawesome.com/f936906ae0.js" crossorigin="anonymous"></script>
  17.  
  18. <script type="text/javascript">
  19. // <![CDATA[
  20. var speed=100; // speed of wobbling, lower is faster
  21. var height=3; // height of wobbling in pixels
  22. var alink="/"; // page to link text to (set to ="" for no link)
  23.  
  24. /****************************
  25. *    Wobbly Text Effect     *
  26. *(c) 2003-6 mf2fm web-design*
  27. *  http://www.mf2fm.com/rv  *
  28. * DON'T EDIT BELOW THIS BOX *
  29. ****************************/
  30. var wobtxt, wobble, wobcnt=0;
  31. window.onload=function() { if (document.getElementById) {
  32. var i, wobli;
  33. wobble=document.getElementById("wobble");
  34. wobtxt=wobble.firstChild.nodeValue;
  35. while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  36. for (i=0; i<wobtxt.length; i++) {
  37.   wobli=document.createElement("span");
  38.   wobli.setAttribute("id", "wobb"+i);
  39.   wobli.style.position="relative";
  40.   wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  41.   if (alink) {
  42.     wobli.style.cursor="pointer";
  43.     wobli.onclick=function() { top.location.href=alink; }
  44.   }
  45.   wobble.appendChild(wobli);
  46. }
  47. setInterval("wobbler()", speed);
  48. }}
  49.  
  50. function wobbler() {
  51. for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  52. wobcnt++;
  53. }
  54. // ]]>
  55. </script>
  56.  
  57. {block:ifrainbowlinks}
  58. <script type='text/javascript'>
  59. //<![CDATA[
  60. var rate = 50;
  61. if (document.getElementById)
  62. window.onerror=new Function("return true")
  63.  
  64. var objActive; // The object which event occured in
  65. var act = 0; // Flag during the action
  66. var elmH = 0; // Hue
  67. var elmS = 128; // Saturation
  68. var elmV = 255; // Value
  69. var clrOrg; // A color before the change
  70. var TimerID; // Timer ID
  71. if (document.all) {
  72. document.onmouseover = doRainbowAnchor;
  73. document.onmouseout = stopRainbowAnchor;
  74. }
  75. else if (document.getElementById) {
  76. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  77. document.onmouseover = Mozilla_doRainbowAnchor;
  78. document.onmouseout = Mozilla_stopRainbowAnchor;
  79. }
  80. function doRainbow(obj)
  81. {
  82. if (act == 0) {
  83. act = 1;
  84. if (obj)
  85. objActive = obj;
  86. else
  87. objActive = event.srcElement;
  88. clrOrg = objActive.style.color;
  89. TimerID = setInterval("ChangeColor()",100);
  90. }
  91. }
  92. function stopRainbow()
  93. {
  94. if (act) {
  95. objActive.style.color = clrOrg;
  96. clearInterval(TimerID);
  97. act = 0;
  98. }
  99. }
  100. function doRainbowAnchor()
  101. {
  102. if (act == 0) {
  103. var obj = event.srcElement;
  104. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  105. obj = obj.parentElement;
  106. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  107. break;
  108. }
  109. if (obj.tagName == 'A' && obj.href != '') {
  110. objActive = obj;
  111. act = 1;
  112. clrOrg = objActive.style.color;
  113. TimerID = setInterval("ChangeColor()",100);
  114. }
  115. }
  116. }
  117. function stopRainbowAnchor()
  118. {
  119. if (act) {
  120. if (objActive.tagName == 'A') {
  121. objActive.style.color = clrOrg;
  122. clearInterval(TimerID);
  123. act = 0;
  124. }
  125. }
  126. }
  127. function Mozilla_doRainbowAnchor(e)
  128. {
  129. if (act == 0) {
  130. obj = e.target;
  131. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  132. obj = obj.parentNode;
  133. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  134. break;
  135. }
  136. if (obj.nodeName == 'A' && obj.href != '') {
  137. objActive = obj;
  138. act = 1;
  139. clrOrg = obj.style.color;
  140. TimerID = setInterval("ChangeColor()",100);
  141. }
  142. }
  143. }
  144. function Mozilla_stopRainbowAnchor(e)
  145. {
  146. if (act) {
  147. if (objActive.nodeName == 'A') {
  148. objActive.style.color = clrOrg;
  149. clearInterval(TimerID);
  150. act = 0;
  151. }
  152. }
  153. }
  154. function ChangeColor()
  155. {
  156. objActive.style.color = makeColor();
  157. }
  158. function makeColor()
  159. {
  160. // Don't you think Color Gamut to look like Rainbow?
  161. // HSVtoRGB
  162. if (elmS == 0) {
  163. elmR = elmV; elmG = elmV; elmB = elmV;
  164. }
  165. else {
  166. t1 = elmV;
  167. t2 = (255 - elmS) * elmV / 255;
  168. t3 = elmH % 60;
  169. t3 = (t1 - t2) * t3 / 60;
  170. if (elmH < 60) {
  171. elmR = t1; elmB = t2; elmG = t2 + t3;
  172. }
  173. else if (elmH < 120) {
  174. elmG = t1; elmB = t2; elmR = t1 - t3;
  175. }
  176. else if (elmH < 180) {
  177. elmG = t1; elmR = t2; elmB = t2 + t3;
  178. }
  179. else if (elmH < 240) {
  180. elmB = t1; elmR = t2; elmG = t1 - t3;
  181. }
  182. else if (elmH < 300) {
  183. elmB = t1; elmG = t2; elmR = t2 + t3;
  184. }
  185. else if (elmH < 360) {
  186. elmR = t1; elmG = t2; elmB = t1 - t3;
  187. }
  188. else {
  189. elmR = 0; elmG = 0; elmB = 0;
  190. }
  191. }
  192. elmR = Math.floor(elmR).toString(16);
  193. elmG = Math.floor(elmG).toString(16);
  194. elmB = Math.floor(elmB).toString(16);
  195. if (elmR.length == 1) elmR = "0" + elmR;
  196. if (elmG.length == 1) elmG = "0" + elmG;
  197. if (elmB.length == 1) elmB = "0" + elmB
  198. elmH = elmH + rate;
  199. if (elmH >= 360)
  200. elmH = 0;
  201. return '#' + elmR + elmG + elmB;
  202. }
  203. //]]>
  204. </script>
  205. {/block:ifrainbowlinks}
  206.  
  207. <meta charset="utf-8">
  208. <meta https-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  209. {block:Description}
  210. <meta name="description" content="{MetaDescription}" />
  211. {/block:Description}
  212.    
  213. <title>{Title}</title>
  214.        
  215. <link rel="shortcut icon" href="{image:favicon}">
  216. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  217. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  218.  
  219. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  220.  
  221. {block:ifsmoothscrolling}
  222. <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
  223. {/block:ifsmoothscrolling}
  224.  
  225. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  226. <script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script>
  227. <script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
  228.  
  229. <link href="https://fonts.googleapis.com/css?family=Kosugi+Maru|Short+Stack" rel="stylesheet">
  230.        
  231. <meta name="image:favicon" content=""/>
  232. <meta name="image:icon" content=""/>
  233. <meta name="image:background" content=""/>
  234. <meta name="image:post background" content=""/>
  235. <meta name="image:footer pixel" content=""/>
  236.  
  237. <meta name="color:background" content=""/>
  238. <meta name="color:post background" content=""/>
  239. <meta name="color:text" content=""/>
  240. <meta name="color:links" content=""/>
  241. <meta name="color:links hover" content=""/>
  242. <meta name="color:links glow" content=""/>
  243. <meta name="color:links glow hover" content=""/>
  244. <meta name="color:links outline" content=""/>
  245. <meta name="color:links outline hover" content=""/>
  246. <meta name="color:border color" content=""/>
  247. <meta name="color:tooltip background" content="#fff"/>
  248. <meta name="color:tooltip text" content="#000"/>
  249. <meta name="color:selection background" content=""/>
  250. <meta name="color:selection text" content=""/>
  251. <meta name="color:box shadow" content=""/>
  252.  
  253. <meta name="if:rainbow links" content=""/>
  254. <meta name="if:smooth scrolling" content="1"/>
  255. <meta name="if:redirect" content=""/>
  256. <meta name="if:links glow" content=""/>
  257. <meta name="if:links outline" content=""/>
  258. <meta name="if:hover blur" content=""/>
  259. <meta name="if:hover tags" content=""/>
  260. <meta name="if:captions" content="1"/>
  261. <meta name="if:show tags" content="1"/>
  262. <meta name="if:box shadow" content=""/>
  263. <meta name="if:round borders" content=""/>
  264. <meta name="if:background cover" content=""/>
  265. <meta name="if:post background cover" content=""/>
  266.  
  267. <meta name="select:border style" content="solid"/>
  268. <meta name="select:border style" content="dashed"/>
  269. <meta name="select:border style" content="dotted"/>
  270. <meta name="select:border style" content="double"/>
  271. <meta name="select:border style" content="inset"/>
  272. <meta name="select:border style" content="outset"/>
  273. <meta name="select:border style" content="groove"/>
  274. <meta name="select:border style" content="ridge"/>
  275.  
  276. <meta name="text:font size" content="20"/>
  277. <meta name="text:font" content=""/>
  278. <meta name="text:title font" content=""/>
  279. <meta name="text:title size" content="50"/>
  280. <meta name="text:title" content=""/>
  281. <meta name="text:description" content=""/>
  282. <meta name="text:border width" content="4"/>
  283. <meta name="text:redirect" content=""/>        
  284.        
  285. <style type="text/css">
  286.  
  287. ::selection {
  288. background: {color:selection background};
  289. color:{color:selection text};
  290. }
  291.  
  292. ::-moz-selection {
  293. background: {color:selection background};
  294. color:{color:selection text};
  295. }
  296.  
  297. ::-webkit-scrollbar {
  298. width: 16px;
  299. height: 10px;
  300. }
  301.  
  302. ::-webkit-scrollbar-thumb {
  303. background-color: #fff;
  304. background-image: url(https://i.imgur.com/Qtm9Z60.png);
  305. border-top: 1px solid #bdbdbd;
  306. border-left: 1px solid #bdbdbd;
  307. border-right: 1px solid black;
  308. border-bottom: 1px solid black;
  309. }
  310.  
  311. ::-webkit-scrollbar-track {
  312. background-color: #fff;
  313. background-image: url(https://i.imgur.com/IGXGYKz.png);
  314. }
  315.  
  316. ::-webkit-scrollbar-button:vertical:increment {
  317. background-image: url(https://i.imgur.com/WhC8iy3.png);
  318. width: 14px;
  319. height: 16px;
  320. border-top: 1px solid #bdbdbd;
  321. border-left: 1px solid #bdbdbd;
  322. border-right: 1px solid black;
  323. border-bottom: 1px solid black;
  324. }
  325.  
  326. ::-webkit-scrollbar-button:vertical:decrement {
  327. background-image: url(https://i.imgur.com/fQ18mrR.png);
  328. border-top: 1px solid #bdbdbd;
  329. border-left: 1px solid #bdbdbd;
  330. border-right: 1px solid black;
  331. border-bottom: 1px solid black;
  332. width: 14px;
  333. height: 16px;
  334. }
  335.  
  336. #s-m-t-tooltip{
  337.     margin: 20px 0 0 20px;
  338.     padding: 5px;
  339.     max-width: 300px;
  340.     background-color:{color:tooltip background};
  341.     color:{color:tooltip text};
  342.     border:{text:border width}px {select:border style} {color:border color};
  343.     z-index: 9999;
  344.     {block:ifroundborders}
  345.     border-radius:10px;
  346.     {/block:ifroundborders}
  347. }
  348.  
  349. @font-face{
  350.     font-family: 'Magica';
  351.     src: url(https://static.tumblr.com/p6yopnt/Qkiqnu0r5/theheart.ttf);
  352. }
  353. @font-face{
  354.     font-family: 'DEAD END';
  355.     src: url(https://static.tumblr.com/pvnotae/DzVqdg2j5/dead_end.ttf);
  356. }
  357. @font-face{
  358.     font-family: 'Decibil';
  359.     src: url(https://static.tumblr.com/pvnotae/kwwqdg2pw/decibel_2.ttf);
  360. }
  361. @font-face{
  362.     font-family: 'Aachen';
  363.     src: url(https://static.tumblr.com/pvnotae/YIoqdg2yp/aachen-bold-opentype.otf);
  364. }
  365.  
  366. body {
  367.     margin:0px;
  368.     background:{color:background};
  369.     background-image: url('{image:background}');
  370.     {block:ifbackgroundcover}
  371.     background-size: cover;
  372.     {/block:ifbackgroundcover}
  373.     {block:ifnotbackgroundcover}
  374.     background-repeat:repeat;
  375.     {/block:ifnotbackgroundcover}
  376.     background-attachment:fixed;
  377.     font-family:{text:font};
  378.     font-size:{text:font size}px;
  379.     color:{color:text};
  380.     line-height:140%;
  381. }
  382.  
  383. p{
  384.     margin:0 0 0px 0;
  385.     padding:0;
  386. }
  387.  
  388. pre {
  389.     white-space: pre-wrap;
  390.     white-space: -moz-pre-wrap;
  391.     white-space: -pre-wrap;
  392.     white-space: -o-pre-wrap;
  393.     word-wrap: break-word;
  394. }
  395.  
  396. a{
  397.     color:{color:links};
  398.     {block:iflinksglow}
  399.     text-shadow:0 0 2px {color:links glow},0 0 2px {color:links glow},0 0 2px {color:links glow}, 0 0 1px {color:links glow};
  400.     {/block:iflinksglow}
  401.     {block:iflinksoutline}
  402.     text-shadow: -1px 0 {color:links outline}, 0 1px {color:links outline}, 1px 0 {color:links outline}, 0 -1px {color:links outline};
  403.     {/block:iflinksoutline}
  404.     text-decoration:none;
  405.     transition:0.5s;
  406. }
  407.  
  408. a:hover{
  409.     color:{color:links hover};
  410.     {block:iflinksglow}
  411.     text-shadow:0 0 2px {color:links glow hover},0 0 2px {color:links glow hover},0 0 2px {color:links glow hover},0 0 1px {color:links glow hover};
  412.     {/block:iflinksglow}
  413.     {block:iflinksoutline}
  414.     text-shadow: -1px 0 {color:links outline hover}, 0 1px {color:links outline hover}, 1px 0 {color:links outline hover}, 0 -1px           {color:links outline hover};
  415.     {/block:iflinksoutline}
  416.     {block:ifhoverblur}
  417.     -webkit-filter: blur(.9px);
  418.     {/block:ifhoverblur}
  419.     cursor:help;
  420. }
  421.  
  422. a.tumblr_blog{
  423.     display:inline-block;
  424.     margin-bottom:5px;
  425. }
  426.  
  427. li{
  428.     margin-left:-15px;
  429. }
  430.  
  431. #wrapper{
  432.     width:520px;
  433.     margin:50px auto;
  434. }
  435.  
  436. #sidebar{
  437.     width:520px;
  438.     text-align:center;
  439.     box-sizing:border-box;
  440. }
  441.  
  442. #sidebar img{
  443.     width:250px;
  444.     height:250px;
  445.     border: {text:border width}px {select:border style} {color:border color};
  446.     box-sizing: border-box;
  447.     {block:ifboxshadow}
  448.     box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  449.     {/block:ifboxshadow}
  450.     {block:ifroundborders}
  451.     border-radius:10px;
  452.     {/block:ifroundborders}
  453. }
  454.  
  455. #title{
  456.     width:520px;
  457.     margin-bottom:-20px;
  458.     font-size:{text:title size}px;
  459.     position: relative;
  460.     font-family:{text:title font};
  461. }
  462.  
  463. #description{
  464.     max-width:520px;
  465.     margin-bottom:50px;
  466.     margin-top:5px;
  467.     font-size:{text:font size}px;  
  468. }
  469.  
  470.  
  471. .post{
  472.     width:520px;
  473.     margin:0 0 50px 0;
  474.     overflow:hidden;
  475.     padding:10px;
  476.     border: {text:border width}px {select:border style} {color:border color};
  477.     background:{color:post background};
  478.     background-image: url('{image:post background}');
  479.     {block:ifpostbackgroundcover}
  480.     background-size: cover;
  481.     {/block:ifpostbackgroundcover}
  482.     {block:ifnotpostbackgroundcover}
  483.     background-repeat:repeat;
  484.     {/block:ifnotpostbackgroundcover}
  485.     box-sizing:border-box;
  486.     {block:ifboxshadow}
  487.     box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
  488.     {/block:ifboxshadow}
  489.     {block:ifroundborders}
  490.     border-radius:10px;
  491.     {/block:ifroundborders}
  492. }
  493.  
  494. .post img{
  495.     max-width:100%;
  496.     height:auto;
  497.     {block:ifroundborders}
  498.     border-radius:10px;
  499.     {/block:ifroundborders}
  500. }
  501.  
  502. .post .footer{
  503.     text-align:center;
  504. }
  505.  
  506. #nav{
  507.     margin:50px;
  508.     text-align:center;
  509. }
  510.  
  511. video{
  512.     max-width:100%;
  513.     height:auto!important;
  514. }
  515.  
  516. .video-container {
  517.     overflow: hidden;
  518. }
  519.  
  520. .video-container iframe,
  521. .video-container object,
  522. .video-container embed {
  523.     position: center;
  524.     max-width: 500px;
  525.     max-height: 500px;
  526. }
  527.  
  528. .video-wrapper {
  529.     max-width: 500px;
  530.     max-height: 500px;
  531.  
  532. }
  533.  
  534. .media{
  535.     margin:0 0 0px 0;
  536.     text-align:center;
  537.     {block:ifroundborders}
  538.     border-radius:10px;
  539.     {/block:ifroundborders}
  540. }
  541.  
  542. .media:hover{
  543.     {block:ifhoverblur}
  544.     -webkit-filter: blur(.9px);
  545.     {/block:ifhoverblur}
  546. }
  547.  
  548. .title{
  549.     font-size:{text:title size}px;
  550.     font-weight:bold;
  551.     margin:10px 0 10px 0;
  552.     color:black;
  553. }
  554.  
  555. h1, h2, h3, h4, h5, h6{
  556.     font-size:{text:title size};
  557.     font-weight:bold;
  558.     margin:10px 0 10px 0;
  559.     color:black;
  560. }
  561.  
  562. .quote{
  563.     font-weight:normal;
  564.     font-size:{text:font size};
  565.     font-style:italic;
  566.     margin:0 0 10px 0;
  567. }
  568.  
  569. .question{
  570.     margin-bottom:10px;
  571. }
  572.  
  573. blockquote{
  574.     margin:0 0 10px 10px;
  575.     padding:0 0 0 10px;
  576.     border-left:dotted 1px {color:text};
  577.     border-radius:5px;
  578. }
  579.  
  580. ol.notes{
  581.     list-style-type:none;
  582.     padding:0;
  583.     margin:0;
  584. }
  585.  
  586. ol.notes li.note img{
  587.     width:16px;
  588.     height:16px;
  589.     margin-right:3px;
  590. }
  591.  
  592. ol.notes li.note{
  593.     margin:0px;
  594. }
  595.  
  596. .heartbeat:hover{
  597.     animation: heartbeat 1s infinite;
  598. }
  599.  
  600. @keyframes heartbeat
  601. {
  602.   0%
  603.   {
  604.     transform: scale( .90 );
  605.   }
  606.   20%
  607.   {
  608.     transform: scale( 1 );
  609.   }
  610.   40%
  611.   {
  612.     transform: scale( .90 );
  613.   }
  614.   60%
  615.   {
  616.     transform: scale( 1 );
  617.   }
  618.   80%
  619.   {
  620.     transform: scale( .90 );
  621.   }
  622.   100%
  623.   {
  624.     transform: scale( .90 );
  625.   }
  626. }
  627.  
  628. {block:ifhovertags}
  629. .tags {
  630.    max-height:0px;
  631.    text-align:center;
  632.    opacity:0;
  633.     -webkit-transition: all 0.7s ease;
  634.    transition: all 0.7s ease;
  635.    -moz-transition: all 0.7s ease;
  636.    -o-transition: all 0.7s ease;}    
  637.  
  638. .post:hover .tags{
  639.    opacity:1;
  640.    max-height:300px;
  641.    -webkit-transition: all 0.7s ease;
  642.    transition: all 0.7s ease;
  643.    -moz-transition: all 0.7s ease;
  644.    -o-transition: all 0.7s ease;}
  645. {/block:ifhovertags}
  646.  
  647. {CustomCSS}
  648. </style>
  649. </head>
  650.  
  651. <body>
  652.  
  653. {block:ifredirect}
  654. {block:IndexPage}
  655. <script type="text/javascript">
  656.     var url = location.href;
  657.     if (url == "{BlogURL}") {
  658.         window.location = "{BlogURL}tagged/{text:redirect}";
  659.     }
  660. </script>
  661. {/block:IndexPage}
  662. {/block:ifredirect}
  663.  
  664. <div id="wrapper">
  665.  
  666.  
  667. <div id="sidebar">
  668. <div id="title" style="z-index:100">
  669. <a href="/">{text:title}</a>
  670. </div>
  671. <div style="z-index:-1"><img src="{image:icon}"></div>
  672. <div id="description">
  673. {text:description}
  674. </div>
  675. </div>
  676.  
  677. {block:Posts}
  678.  
  679. <div class="post">
  680.  
  681. {block:Text}
  682. {block:Title}
  683. <div class="title">{Title}</div>
  684. {/block:Title}
  685. {Body}
  686. {/block:Text}
  687.  
  688. {block:Photo}
  689. <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  690. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  691. {/block:Photo}
  692.  
  693. {block:Photoset}
  694. <div class="media">{Photoset}</div>
  695. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  696. {/block:Photoset}
  697.  
  698. {block:Quote}
  699. <div class="quote">"{Quote}"</div>
  700. {block:Source}
  701. <div class="quotesource">{Source}</div>
  702. {/block:Source}
  703. {/block:Quote}
  704.  
  705. {block:Link}
  706. <div class="title"><a href="{URL}">{Name}</a></div>
  707. {block:Description}
  708. <div class="description">{Description}</div>
  709. {/block:Description}
  710. {/block:Link}
  711.  
  712. {block:Chat}
  713. {block:Title}
  714. <div class="title">{Title}</div>
  715. {/block:Title}
  716.  
  717. {block:Lines}
  718. <div class="{Alt} user_{UserNumber}">
  719. {block:Label}
  720. <b>{Label}</b>{/block:Label}
  721. &nbsp;{Line}
  722. </div>
  723. {/block:Lines}
  724. {/block:Chat}
  725.  
  726. {block:Video}
  727. <div class="media"><div class="video-wrapper">
  728. <div class="video-container">{video-500}</div>
  729. </div></div>
  730. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  731. {/block:Video}
  732.  
  733. {block:Audio}
  734. <div class="media" style="margin-bottom:-85px">
  735. {block:AudioEmbed}<div class="video-wrapper"><div class="video-container">{AudioEmbed-500}</div></div>{/block:AudioEmbed}
  736. </div>
  737. {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
  738. {/block:Audio}
  739.  
  740. {block:Answer}
  741. <div class="question" style="font-style:italic">{Asker}: {Question}</div>
  742. <div class="caption">{Answer}</div>
  743. {/block:Answer}
  744.  
  745.  
  746. {block:Date}
  747. <div class="footer">
  748. <a href="{Permalink}"><a href="{Permalink}" title="{notecount}%">{24hourwithzero}:{minutes}</a> <img src="{image:footer pixel}"> <a href="{ReblogURL}" class="reblog" target="_blank" title="reblog"><i class="fas fa-retweet"></i></a>
  749.  
  750. <!-- {block:NoRebloggedFrom}
  751. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  752. {/block:NoRebloggedFrom} -->{block:ContentSource}<!-- {SourceURL}
  753. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  754. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  755. {/block:ContentSource}
  756.  
  757. {block:ifshowtags} {block:HasTags}<div class="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  758.  
  759. </div>
  760.  
  761. {block:PermalinkPage}
  762. {block:NoteCount}
  763. {block:PostNotes}{PostNotes}{/block:PostNotes}
  764. {/block:NoteCount}
  765. {/block:PermalinkPage}
  766. {/block:Date}
  767.  
  768. </div>
  769. {/block:Posts}
  770.  
  771. {block:Pagination}
  772. <div id="nav">
  773. {block:PreviousPage}<a href="{PreviousPage}"><i class="fas fa-arrow-left" style="padding:0 10px 0 10px"></i></a>{/block:PreviousPage}
  774.  
  775. {block:NextPage}<a href="{NextPage}"><i class="fas fa-arrow-right" style="padding:0 10px 0 10px"></i></a>{/block:NextPage}
  776. </div>
  777. {/block:Pagination}
  778. </div>
  779.  
  780. </div>
  781.  
  782.         <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  783.         <script>window.jQuery || document.write('<script src="https://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  784.  
  785. <a href="https://puella.tumblr.com" title="by @puella" style="position:fixed;left:12px;bottom:-12px !important;font-size:20px !important;"><div class="heartbeat">&lt;3</div></a>
  786.  
  787.     </body>
  788. </html>
Add Comment
Please, Sign In to add comment