Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- HUH WHUH THEME by @puella
- this theme is for all the confused b*tches out there (have to censor b*tches bc pastebin doesn't like it :/)
- note: the posts in the preview look wack but i prommy they're actually not when you save
- revamped 6/28/21
- ----->
- {block:ifanimatedrainbowtitle}
- <script type="text/javascript">
- // <![CDATA[
- var speed=100; // speed colours change, 1 second = 1000
- var glow=0; // can be set from '0' for no glow, to 10
- var raincol=new Array("#ff0000", "#ff5500", "#ffaa00", "#ffff00", "#aaff00", "#55ff00", "#00ff00", "#00ff55", "#00ffaa", "#00ffff", "#00aaff", "#0055ff", "#0000ff", "#5500ff", "#aa00ff", "#ff00ff", "#ff00aa", "#ff0055"); // change the colours if you want to
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- * Rainbow Text Effect *
- *(c)2003-13 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var rainbow, raintxt, raincnt=0;
- function addLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addLoadEvent(regenbogen);
- function regenbogen() { if (document.getElementById) {
- var i, rainbeau;
- rainbow=document.getElementById("rainbow");
- raintxt=rainbow.firstChild.nodeValue;
- while (rainbow.childNodes.length) rainbow.removeChild(rainbow.childNodes[0]);
- for (i=0; i<raintxt.length; i++) {
- rainbeau=document.createElement("span");
- rainbeau.setAttribute("id", "rain"+i);
- rainbeau.appendChild(document.createTextNode(raintxt.charAt(i)));
- if (alink) {
- rainbeau.style.cursor="pointer";
- rainbeau.onclick=function() { top.location.href=alink; }
- }
- rainbow.appendChild(rainbeau);
- }
- rainbow=setInterval ("raining()", speed);
- }}
- function raining() {
- var i, c;
- for (i=0; i<raintxt.length; i++) {
- c=raincol[(i+raincnt)%raincol.length];
- document.getElementById("rain"+i).style.color=c;
- if (glow) document.getElementById("rain"+i).style.textShadow=c+" 0px 0px "+glow+"px";
- }
- raincnt++;
- }
- // ]]>
- </script>
- {/block:ifanimatedrainbowtitle}
- {block:ifhoverrainbowlinks}
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 50;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- {
- if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- {/block:ifhoverrainbowlinks}
- <meta charset="utf-8">
- <meta https-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <title>{Title}</title>
- <link rel="shortcut icon" href="{image:favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
- <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
- {block:ifsmoothscrolling}
- <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
- {/block:ifsmoothscrolling}
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script>
- <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>
- <link href="https://fonts.googleapis.com/css?family=Kosugi+Maru|Short+Stack" rel="stylesheet">
- <meta name="image:favicon" content=""/>
- <meta name="image:icon" content=""/>
- <meta name="image:background" content=""/>
- <meta name="image:inner post background" content=""/>
- <meta name="image:outer post background" content=""/>
- <meta name="image:inner sidebar background" content=""/>
- <meta name="image:outer sidebar background" content=""/>
- <meta name="image:footer background" content=""/>
- <meta name="image:pixel link 1" content=""/>
- <meta name="image:pixel link 2" content=""/>
- <meta name="image:pixel link 3" content=""/>
- <meta name="image:footer pixel" content=""/>
- <meta name="color:background" content=""/>
- <meta name="color:footer background" content=""/>
- <meta name="color:inner post background" content=""/>
- <meta name="color:outer post background" content=""/>
- <meta name="color:inner sidebar background" content=""/>
- <meta name="color:outer sidebar background" content=""/>
- <meta name="color:inner border color" content=""/>
- <meta name="color:outer border color" content=""/>
- <meta name="color:gradient one" content=""/>
- <meta name="color:gradient two" content=""/>
- <meta name="color:text" content=""/>
- <meta name="color:title" content=""/>
- <meta name="color:title hover" content=""/>
- <meta name="color:title glow" content=""/>
- <meta name="color:title glow hover" content=""/>
- <meta name="color:title outline" content=""/>
- <meta name="color:title outline hover" content=""/>
- <meta name="color:links" content=""/>
- <meta name="color:links hover" content=""/>
- <meta name="color:links glow" content=""/>
- <meta name="color:links glow hover" content=""/>
- <meta name="color:links outline" content=""/>
- <meta name="color:links outline hover" content=""/>
- <meta name="color:box shadow" content=""/>
- <meta name="color:selection background" content=""/>
- <meta name="color:selection text" content=""/>
- <meta name="if:scrolling desc" content=""/>
- <meta name="if:hover rainbow links" content=""/>
- <meta name="if:smooth scrolling" content="1"/>
- <meta name="if:redirect" content=""/>
- <meta name="if:animated rainbow title" content=""/>
- <meta name="if:static rainbow title" content=""/>
- <meta name="if:rainbow links" content=""/>
- <meta name="if:gradient links" content=""/>
- <meta name="if:gradient title" content=""/>
- <meta name="if:title glow" content=""/>
- <meta name="if:title outline" content=""/>
- <meta name="if:links glow" content=""/>
- <meta name="if:links outline" content=""/>
- <meta name="if:hover blur" content=""/>
- <meta name="if:captions" content=""/>
- <meta name="if:inner rainbow border" content=""/>
- <meta name="if:outer rainbow border" content=""/>
- <meta name="if:inner gradient border" content=""/>
- <meta name="if:outer gradient border" content=""/>
- <meta name="if:round borders" content=""/>
- <meta name="if:box shadow" content=""/>
- <meta name="if:grayscale icon" content=""/>
- <meta name="if:background cover" content=""/>
- <meta name="if:tags" content=""/>
- <meta name="if:inner post background cover" content=""/>
- <meta name="if:outer post background cover" content=""/>
- <meta name="if:inner sidebar background cover" content=""/>
- <meta name="if:outer sidebar background cover" content=""/>
- <meta name="if:fade in out" content="1"/>
- <meta name="select:outer border style" content="solid"/>
- <meta name="select:outer border style" content="dashed"/>
- <meta name="select:outer border style" content="dotted"/>
- <meta name="select:outer border style" content="double"/>
- <meta name="select:outer border style" content="inset"/>
- <meta name="select:outer border style" content="outset"/>
- <meta name="select:outer border style" content="groove"/>
- <meta name="select:outer border style" content="ridge"/>
- <meta name="select:inner border style" content="solid"/>
- <meta name="select:inner border style" content="dashed"/>
- <meta name="select:inner border style" content="dotted"/>
- <meta name="select:inner border style" content="double"/>
- <meta name="select:inner border style" content="inset"/>
- <meta name="select:inner border style" content="outset"/>
- <meta name="select:inner border style" content="groove"/>
- <meta name="select:inner border style" content="ridge"/>
- <meta name="text:font size" content="30"/>
- <meta name="text:font" content=""/>
- <meta name="text:title size" content="50"/>
- <meta name="text:title" content=""/>
- <meta name="text:title font" content=""/>
- <meta name="text:description" content=""/>
- <meta name="text:description speed" content="10"/>
- <meta name="text:inner border width" content="3"/>
- <meta name="text:outer border width" content="3"/>
- <meta name="text:link 1" content=""/>
- <meta name="text:link 1 url" content=""/>
- <meta name="text:link 2" content=""/>
- <meta name="text:link 2 url" content=""/>
- <meta name="text:link 3" content=""/>
- <meta name="text:link 3 url" content=""/>
- <meta name="text:sidebar icon hover" content="hello :)"/>
- <meta name="text:next" content="→"/>
- <meta name="text:previous" content="←"/>
- <meta name="text:redirect" content=""/>
- <style type="text/css">
- ::selection {
- background: {color:selection background};
- color:{color:selection text};
- }
- ::-moz-selection {
- background: {color:selection background};
- color:{color:selection text};
- }
- ::-webkit-scrollbar {
- width: 16px;
- height: 10px;
- }
- ::-webkit-scrollbar-thumb {
- background-color: #fff;
- background-image: url(https://i.imgur.com/Qtm9Z60.png);
- border-top: 1px solid #bdbdbd;
- border-left: 1px solid #bdbdbd;
- border-right: 1px solid black;
- border-bottom: 1px solid black;
- }
- ::-webkit-scrollbar-track {
- background-color: #fff;
- background-image: url(https://i.imgur.com/IGXGYKz.png);
- }
- ::-webkit-scrollbar-button:vertical:increment {
- background-image: url(https://i.imgur.com/WhC8iy3.png);
- width: 14px;
- height: 16px;
- border-top: 1px solid #bdbdbd;
- border-left: 1px solid #bdbdbd;
- border-right: 1px solid black;
- border-bottom: 1px solid black;
- }
- ::-webkit-scrollbar-button:vertical:decrement {
- background-image: url(https://i.imgur.com/fQ18mrR.png);
- border-top: 1px solid #bdbdbd;
- border-left: 1px solid #bdbdbd;
- border-right: 1px solid black;
- border-bottom: 1px solid black;
- width: 14px;
- height: 16px;
- }
- #s-m-t-tooltip {
- z-index:99999999999999999;
- background: {color:inner sidebar background};
- max-width: 300px;
- margin: 20px;
- padding: 5px;
- color:{color:text};
- border:{text:outer border width}px {select:outer border style} {color:outer border color};
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- {block:ifouterrainbowborder}
- border: {text:outer border width}px {select:outer border style} transparent;
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url();
- {/block:ifroundborders}
- {/block:ifouterrainbowborder}
- {block:ifoutergradientborder}
- border: {text:outer border width}px {select:outer border style} transparent;
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url();
- {/block:ifroundborders}
- {/block:ifoutergradientborder}
- }
- body {
- margin:0px;
- background:{color:background};
- background-image: url('{image:background}');
- {block:ifbackgroundcover}
- background-size: cover;
- {/block:ifbackgroundcover}
- {block:ifnotbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotbackgroundcover}
- background-attachment:fixed;
- font-family:{text:font};
- font-size:{text:font size}px;
- color:{color:text};
- }
- p{
- margin:0 0 0px 0;
- padding:0;
- }
- pre {
- white-space: pre-wrap;
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- word-wrap: break-word;
- }
- a{
- text-decoration:none;
- color:{color:links};
- {block:ifnotrainbowlinks}
- {block:ifnotgradientlinks}
- color:{color:links};
- {block:iflinksglow}
- 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};
- {/block:iflinksglow}
- {block:iflinksoutline}
- text-shadow: -1px 0 {color:links outline}, 0 1px {color:links outline}, 1px 0 {color:links outline}, 0 -1px {color:links outline};
- {/block:iflinksoutline}
- transition:0.5s;
- {/block:ifnotgradientlinks}
- {/block:ifnotrainbowlinks}
- {block:ifrainbowlinks}
- background-image: linear-gradient(to left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- -webkit-background-clip:text;
- color:transparent;
- {/block:ifrainbowlinks}
- {block:ifgradientlinks}
- background-image: linear-gradient(to right, {color:gradient one} 0%, {color:gradient two} 100%);
- -webkit-background-clip:text;
- color:transparent;
- {/block:ifgradientlinks}
- transition:0.5s;
- }
- a:hover{
- {block:ifnotrainbowlinks}
- {block:ifnotgradientlinks}
- color:{color:links hover};
- {block:iflinksglow}
- 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};
- {/block:iflinksglow}
- {block:iflinksoutline}
- 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};
- {/block:iflinksoutline}
- {block:ifnothoverrainbowlinks}
- transition:0.5s;
- {/block:ifnothoverrainbowlinks}
- {/block:ifnotgradientlinks}
- {/block:ifnotrainbowlinks}
- {block:ifhoverblur}
- -webkit-filter: blur(.9px);
- {/block:ifhoverblur}
- cursor:help;
- {block:ifnotrainbowlinks}
- {block:ifnotgradientlinks}
- transition:0.5s;
- {/block:ifnotgradientlinks}
- {/block:ifnotrainbowlinks}
- transition:0.5s;
- }
- a.tumblr_blog{
- display:inline-block;
- margin-bottom:5px;
- z-index:100;
- position:relative;
- }
- li{
- margin-left:-15px;
- }
- #wrapper{
- width:980px;
- margin:20px auto;
- {block:iffadeinout}
- animation: fadeEffect 1s;
- {block:iffadeinout}
- }
- @keyframes fadeEffect {
- from {opacity: 0;}
- to {opacity: 1;}
- }
- #title{
- max-width:290px;
- text-align:center;
- font-size:{text:title size}px;
- font-family:{text:title font};
- z-index:101;
- {block:ifstaticrainbowtitle}
- background-image: linear-gradient(to left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- -webkit-background-clip:text;
- color:transparent;
- {/block:ifstaticrainbowtitle}
- {block:ifgradienttitle}
- background-image: linear-gradient(to right, {color:gradient one} 0%, {color:gradient two} 100%);
- -webkit-background-clip:text;
- color:transparent;
- {/block:ifgradienttitle}
- {block:ifnotstaticrainbowtitle}
- {block:ifnotanimatedrainbowtitle}
- {block:ifnotgradienttitle}
- color:{color:title};
- {block:iftitleglow}
- text-shadow:0 0 2px {color:title glow},0 0 2px {color:title glow},0 0 2px {color:title glow}, 0 0 1px {color:title glow};
- {/block:iftitleglow}
- {block:iftitleoutline}
- text-shadow: -1px 0 {color:title outline}, 0 1px {color:title outline}, 1px 0 {color:title outline}, 0 -1px {color:title outline};
- {/block:iftitleoutline}
- {/block:ifnotgradienttitle}
- {/block:ifnotanimatedrainbowtitle}
- {/block:ifnotstaticrainbowtitle}
- }
- #title a{
- {block:ifnotstaticrainbowtitle}
- {block:ifnotanimatedrainbowtitle}
- {block:ifnotgradienttitle}
- color:{color:title};
- {block:iftitleglow}
- text-shadow:0 0 2px {color:title glow},0 0 2px {color:title glow},0 0 2px {color:title glow}, 0 0 1px {color:title glow};
- {/block:iftitleglow}
- {block:iftitleoutline}
- text-shadow: -1px 0 {color:title outline}, 0 1px {color:title outline}, 1px 0 {color:title outline}, 0 -1px {color:title outline};
- {/block:iftitleoutline}
- {/block:ifnotgradienttitle}
- {/block:ifnotanimatedrainbowtitle}
- {/block:ifnotstaticrainbowtitle}
- }
- #title a:hover{
- {block:ifnotstaticrainbowtitle}
- {block:ifnotanimatedrainbowtitle}
- {block:ifnotgradienttitle}
- color:{color:title hover};
- {block:iftitleglow}
- text-shadow:0 0 2px {color:title glow hover},0 0 2px {color:title glow hover},0 0 2px {color:title glow hover},0 0 1px {color:title glow hover};
- {/block:iftitleglow}
- {block:iftitleoutline}
- text-shadow: -1px 0 {color:title outline hover}, 0 1px {color:title outline hover}, 1px 0 {color:title outline hover}, 0 -1px {color:title outline hover};
- {/block:iftitleoutline}
- {block:ifnothoverrainbowlinks}
- transition:0.5s;
- {/block:ifnothoverrainbowlinks}
- {/block:ifnotgradienttitle}
- {/block:ifnotanimatedrainbowtitle}
- {/block:ifnotstaticrainbowtitle}
- {block:ifhoverblur}
- -webkit-filter: blur(.9px);
- {/block:ifhoverblur}
- cursor:help;
- }
- #sidebarwrapper{
- position:fixed;
- display: flex;
- flex-direction: column;
- justify-content:center;
- align-items: center;
- gap:20px;
- height:fit-content;
- height:-moz-fit-content;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- #sidebar{
- width:200px;
- text-align:center;
- padding:20px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:inner sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:inner sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:inner sidebar background};
- {block:ifinnersidebarbackgroundcover}
- background-size: cover;
- {/block:ifinnersidebarbackgroundcover}
- {block:ifnotinnersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:inner sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:inner sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:inner sidebar background};
- {block:ifinnersidebarbackgroundcover}
- background-size: cover;
- {/block:ifinnersidebarbackgroundcover}
- {block:ifnotinnersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:inner sidebar background};
- background-image: url('{image:inner sidebar background}');
- {block:ifinnersidebarbackgroundcover}
- background-size: cover;
- {/block:ifinnersidebarbackgroundcover}
- {block:ifnotinnersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- }
- #sidebarback{
- padding:20px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:outer border width}px {select:outer border style} {color:outer border color};
- text-align:center;
- {block:ifouterrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:outer sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:outer sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:outer sidebar background};
- {block:ifoutersidebarbackgroundcover}
- background-size: cover;
- {/block:ifoutersidebarbackgroundcover}
- {block:ifnotoutersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotoutersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifouterrainbowborder}
- {block:ifoutergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:outer sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:outer sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:outer sidebar background};
- {block:ifoutersidebarbackgroundcover}
- background-size: cover;
- {/block:ifoutersidebarbackgroundcover}
- {block:ifnotoutersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotoutersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifoutergradientborder}
- {block:ifnotouterrainbowborder}
- {block:ifnotoutergradientborder}
- background-color:{color:outer sidebar background};
- background-image: url('{image:outer sidebar background}');
- {block:ifoutersidebarbackgroundcover}
- background-size: cover;
- {/block:ifoutersidebarbackgroundcover}
- {block:ifnotoutersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotoutersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifnotoutergradientborder}
- {/block:ifnotouterrainbowborder}
- {block:ifboxshadow}
- box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
- {/block:ifboxshadow}
- }
- #sidebar img{
- width:200px;
- height:200px;
- box-sizing: border-box;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- {block:ifgrayscaleicon}
- filter: grayscale(100%);
- {/block:ifgrayscaleicon}
- z-index:100;
- margin-bottom:-5px;
- }
- #description{
- width:200px;
- text-align:center;
- padding:20px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:inner sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:inner sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:inner sidebar background};
- {block:ifinnersidebarbackgroundcover}
- background-size: cover;
- {/block:ifinnersidebarbackgroundcover}
- {block:ifnotinnersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:inner sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:inner sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:inner sidebar background};
- {block:ifinnersidebarbackgroundcover}
- background-size: cover;
- {/block:ifinnersidebarbackgroundcover}
- {block:ifnotinnersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:inner sidebar background};
- background-image: url('{image:inner sidebar background}');
- {block:ifinnersidebarbackgroundcover}
- background-size: cover;
- {/block:ifinnersidebarbackgroundcover}
- {block:ifnotinnersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- }
- #descriptionback{
- padding:20px;
- text-align:center;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:outer border width}px {select:outer border style} {color:outer border color};
- text-align:center;
- {block:ifouterrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:outer sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:outer sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:outer sidebar background};
- {block:ifoutersidebarbackgroundcover}
- background-size: cover;
- {/block:ifoutersidebarbackgroundcover}
- {block:ifnotoutersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotoutersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifouterrainbowborder}
- {block:ifoutergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:outer sidebar background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:outer sidebar background}');
- {/block:ifnotroundborders}
- background-color:{color:outer sidebar background};
- {block:ifoutersidebarbackgroundcover}
- background-size: cover;
- {/block:ifoutersidebarbackgroundcover}
- {block:ifnotoutersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotoutersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifoutergradientborder}
- {block:ifnotouterrainbowborder}
- {block:ifnotoutergradientborder}
- background-color:{color:outer sidebar background};
- background-image: url('{image:outer sidebar background}');
- {block:ifoutersidebarbackgroundcover}
- background-size: cover;
- {/block:ifoutersidebarbackgroundcover}
- {block:ifnotoutersidebarbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotoutersidebarbackgroundcover}
- background-attachment:fixed;
- {/block:ifnotoutergradientborder}
- {/block:ifnotouterrainbowborder}
- {block:ifboxshadow}
- box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
- {/block:ifboxshadow}
- }
- #links{
- text-align:center;
- line-height:200%;
- }
- #content{
- float:right;
- width:fit-content;
- width:-moz-fit-content;
- padding-bottom:50px;
- }
- .post{
- width:450px;
- padding:20px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:inner post background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:inner post background}');
- {/block:ifnotroundborders}
- background-color:{color:inner post background};
- {block:ifinnerpostbackgroundcover}
- background-size: cover;
- {/block:ifinnerpostbackgroundcover}
- {block:ifnotinnerpostbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnerpostbackgroundcover}
- background-attachment:fixed;
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:inner post background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:inner post background}');
- {/block:ifnotroundborders}
- background-color:{color:inner post background};
- {block:ifinnerpostbackgroundcover}
- background-size: cover;
- {/block:ifinnerpostbackgroundcover}
- {block:ifnotinnerpostbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnerpostbackgroundcover}
- background-attachment:fixed;
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:inner post background};
- background-image: url('{image:inner post background}');
- {block:ifinnerpostbackgroundcover}
- background-size: cover;
- {/block:ifinnerpostbackgroundcover}
- {block:ifnotinnerpostbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotinnerpostbackgroundcover}
- background-attachment:fixed;
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- word-wrap:break-word;
- }
- .postback{
- margin:50px auto;
- padding:20px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:outer border width}px {select:outer border style} {color:outer border color};
- {block:ifouterrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:outer post background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:outer post background}');
- {/block:ifnotroundborders}
- background-color:{color:outer post background};
- {block:ifouterpostbackgroundcover}
- background-size: cover;
- {/block:ifouterpostbackgroundcover}
- {block:ifnotouterpostbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotouterpostbackgroundcover}
- background-attachment:fixed;
- {/block:ifouterrainbowborder}
- {block:ifoutergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:outer post background});
- background-attachment: fixed;
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:outer post background}');
- {/block:ifnotroundborders}
- background-color:{color:outer post background};
- {block:ifouterpostbackgroundcover}
- background-size: cover;
- {/block:ifouterpostbackgroundcover}
- {block:ifnotouterpostbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotouterpostbackgroundcover}
- background-attachment:fixed;
- {/block:ifoutergradientborder}
- {block:ifnotouterrainbowborder}
- {block:ifnotoutergradientborder}
- background-color:{color:outer post background};
- background-image: url('{image:outer post background}');
- {block:ifouterpostbackgroundcover}
- background-size: cover;
- {/block:ifouterpostbackgroundcover}
- {block:ifnotouterpostbackgroundcover}
- background-repeat:repeat;
- {/block:ifnotouterpostbackgroundcover}
- background-attachment:fixed;
- {/block:ifnotoutergradientborder}
- {/block:ifnotouterrainbowborder}
- {block:ifboxshadow}
- box-shadow: 10px 10px rgb({RGBcolor:box shadow}, .3);
- {/block:ifboxshadow}
- }
- .post img{
- max-width:100%;
- height:auto;
- position:relative;
- z-index:100;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- }
- .post img:hover{
- {block:ifhoverblur}
- -webkit-filter: blur(.9px);
- {/block:ifhoverblur}
- }
- .postback .footer{
- margin-top:20px;
- text-align:center;
- padding:10px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:footer background};
- background-image: url('{image:footer background}');
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- }
- #nav{
- /* if ur reading this then u r gay lol */
- }
- video{
- max-width:100%;
- height:auto!important;
- }
- .video-container {
- overflow: hidden;
- }
- .video-container iframe,
- .video-container object,
- .video-container embed {
- position: center;
- max-width: 450px;
- max-height: 450px;
- }
- .video-wrapper {
- max-width: 450px;
- max-height: 450px;
- }
- .media{
- margin:0 0 -5px 0;
- text-align:center;
- position:relative;
- }
- .media:hover{
- {block:ifhoverblur}
- -webkit-filter: blur(.9px);
- {/block:ifhoverblur}
- }
- .title{
- font-size:{text:title size}px;
- font-weight:bold;
- margin:10px 0 10px 0;
- color:{color:text};
- }
- h1, h2, h3, h4, h5, h6{
- font-size:{text:title size};
- font-weight:bold;
- margin:10px 0 10px 0;
- color:{color:text};
- }
- .quote{
- font-weight:normal;
- font-size:{text:font size};
- font-style:italic;
- margin:0 0 10px 0;
- }
- .question{
- margin-bottom:10px;
- }
- .caption{
- margin-top:15px;
- z-index:100;
- position:relative;
- }
- .postnotes{
- width:450px;
- margin-top:20px;
- padding:20px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:footer background};
- background-image: url('{image:footer background}');
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- }
- blockquote{
- margin:0px 0 10px 10px;
- padding:0 0 0 10px;
- border-radius:5px;
- border-left:dotted 0.5px {color:text};
- }
- blockquote img{
- {block:ifroundborders}
- border-radius:5px
- {/block:ifroundborders}
- }
- ol.notes{
- list-style-type:none;
- padding:0;
- margin:0;
- }
- ol.notes li.note img{
- width:16px;
- height:16px;
- margin-right:3px;
- }
- ol.notes li.note{
- margin:0px;
- }
- {block:iftags}
- .tags {
- max-height:0px;
- max-width:470px;
- text-align:center;
- opacity:0;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:footer background};
- background-image: url('{image:footer background}');
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- z-index:100;
- -webkit-transition: all 0.7s ease;
- transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- .postback:hover .tags{
- margin-top:20px;
- text-align:center;
- padding:10px;
- {block:ifroundborders}
- border-radius:5px;
- {/block:ifroundborders}
- border: {text:inner border width}px {select:inner border style} {color:inner border color};
- {block:ifinnerrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnerrainbowborder}
- {block:ifinnergradientborder}
- border-image: linear-gradient(to bottom right, {color:gradient one} 0%, {color:gradient two} 100%);
- border-image-slice: 1;
- {block:ifroundborders}
- border-radius:5px;
- background-image:url(https://i.imgur.com/GK9LBut.gif), url({image:footer background});
- {/block:ifroundborders}
- {block:ifnotroundborders}
- background-image: url('{image:footer background}');
- {/block:ifnotroundborders}
- background-color:{color:footer background};
- {/block:ifinnergradientborder}
- {block:ifnotinnerrainbowborder}
- {block:ifnotinnergradientborder}
- background-color:{color:footer background};
- background-image: url('{image:footer background}');
- {/block:ifnotinnergradientborder}
- {/block:ifnotinnerrainbowborder}
- z-index:100;
- opacity:1;
- max-height:300px;
- -webkit-transition: all 0.7s ease;
- transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- {/block:iftags}
- {block:ifnotrainbowlinks}
- {block:ifnotgradientlinks}
- .heartbeat:hover{
- animation: heartbeat 1s infinite;
- }
- @keyframes heartbeat
- {
- 0%
- {
- transform: scale( .90 );
- }
- 20%
- {
- transform: scale( 1 );
- }
- 40%
- {
- transform: scale( .90 );
- }
- 60%
- {
- transform: scale( 1 );
- }
- 80%
- {
- transform: scale( .90 );
- }
- 100%
- {
- transform: scale( .90 );
- }
- }
- {/block:ifnotgradientlinks}
- {/block:ifnotrainbowlinks}
- {CustomCSS}
- </style>
- </head>
- <body>
- {block:ifredirect}
- {block:IndexPage}
- <script type="text/javascript">
- var url = location.href;
- if (url == "{BlogURL}") {
- window.location = "{BlogURL}tagged/{text:redirect}";
- }
- </script>
- {/block:IndexPage}
- {/block:ifredirect}
- <div id="wrapper">
- <div id="sidebarwrapper">
- {block:ifanimatedrainbowtitle}
- <div id="title"><span id="rainbow">{text:title}</span></div>
- {/block:ifanimatedrainbowtitle}
- {block:ifnotanimatedrainbowtitle}
- <div id="title"><a href="/">{text:title}</a></div>
- {/block:ifnotanimatedrainbowtitle}
- <div id="sidebarback"><div id="sidebar">
- <a title="{text:sidebar icon hover}" href="/"><img src="{image:icon}"></a>
- </div>
- </div>
- <div id="descriptionback"><div id="description">
- <marquee scrollamount="{text:description speed}">{text:description}</marquee>
- </div></div>
- <div id="links">
- <p><img src="{image:pixel link 1}"> <a href="{text:link 1 url}">{text:link 1}</a> <img src="{image:pixel link 1}"></p>
- <p><img src="{image:pixel link 2}"> <a href="{text:link 2 url}">{text:link 2}</a> <img src="{image:pixel link 2}"></p>
- <p><img src="{image:pixel link 3}"> <a href="{text:link 3 url}">{text:link 3}</a> <img src="{image:pixel link 3}"></p>
- </div>
- </div>
- <div id="content">
- {block:Posts}
- <div class="postback"><div class="post">
- {block:Text}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- <div class="media" style="z-index:100;">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Photo}
- {block:Photoset}
- <div class="media" style="z-index:100;">{Photoset}</div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Photoset}
- {block:Quote}
- <div class="quote">"{Quote}"</div>
- {block:Source}
- <div class="quotesource">{Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <div class="title"><a href="{URL}">{Name}</a></div>
- {block:Description}
- <div class="description">{Description}</div>
- {/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {block:Lines}
- <div class="{Alt} user_{UserNumber}">
- {block:Label}
- <b>{Label}</b>{/block:Label}
- {Line}
- </div>
- {/block:Lines}
- {/block:Chat}
- {block:Video}
- <div class="media" style="margin-bottom:10px"><div class="video-wrapper">
- <div class="video-container">{video-400}</div>
- </div></div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Video}
- {block:Audio}
- <div class="media" style="margin-bottom:-90px">
- {block:AudioEmbed}<div class="video-wrapper"><div class="video-container">{AudioEmbed-500}</div></div>{/block:AudioEmbed}
- </div>
- {block:ifcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifcaptions}
- {/block:Audio}
- {block:Answer}
- <div class="question" style="font-style:italic">{Asker}: {Question}</div>
- <div class="caption">{Answer}</div>
- {/block:Answer}
- </div>
- {block:PermalinkPage}
- {block:Date}
- <div class="footer">
- <img src="{image:footer pixel}"> <a href="{Permalink}" title="{notecount}%">{24hourwithzero}:{minutes}</a> <img src="{image:footer pixel}">
- <!-- {block:NoRebloggedFrom}
- {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
- {/block:NoRebloggedFrom} -->{block:ContentSource}<!-- {SourceURL}
- {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- </div>
- {block:iftags}{block:HasTags}<div class="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:iftags}
- {block:NoteCount}
- {block:PostNotes}<div class="postnotes">{PostNotes}</div>{/block:PostNotes}
- {/block:NoteCount}
- {/block:Date}
- {/block:PermalinkPage}
- {block:IndexPage}
- {block:Date}
- <div class="footer">
- <img src="{image:footer pixel}"> <a href="{Permalink}" title="{notecount}%">{24hourwithzero}:{minutes}</a> <img src="{image:footer pixel}">
- <!-- {block:NoRebloggedFrom}
- {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
- {/block:NoRebloggedFrom} -->{block:ContentSource}<!-- {SourceURL}
- {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- </div>
- {block:iftags}{block:HasTags}<div class="tags">{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}{/block:iftags}
- {/block:Date}
- {/block:IndexPage}
- </div>
- {/block:Posts}
- {block:Pagination}
- <div id="nav">
- <div style="float:left;">{block:PreviousPage}<a href="{PreviousPage}">{text:previous}</a>{/block:PreviousPage}</div>
- <div style="float:right;">{block:NextPage}<a href="{NextPage}">{text:next}</a>{/block:NextPage}</div>
- </div>
- {/block:Pagination}
- </div>
- </div>
- </div>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script>window.jQuery || document.write('<script src="https://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
- <a href="https://puella.tumblr.com" title="by @puella" style="position:fixed;left:12px;bottom:-12px;font-size:20px;"><div class="heartbeat"><3</div>️</a>
- </body>
- </html>
Add Comment
Please, Sign In to add comment