Advertisement
Sky_Blue

DEATH GAME theme

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