Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- DAZE DAYS THEME BY ANNIE @NOODLE
- happy august 15th! kagepro day! i can't believe i got into this series when it was still only vocaloid songs n now im an adult who can say they really watched this series grow so much!! also i'm moving into college today. it's also the [REDACTED BECAUSE I DONT WANNA REVEAL MY TRAGIC BACKSTORY ON PASTEBIN BUT BASICALLY ITS SETOS BACKSTORY]
- special thanks to the amazing morgan @082 for helping me with the changing description thing code :3
- ----->
- {block:ifblobs}
- <script type="text/javascript">
- // <![CDATA[
- var colour="{color:blob color}"; // what colour are the blobs
- var speed=66; // speed of animation, lower is faster
- var blobs=20; // how many blobs are in the jar
- var charc="{text:blob}"; // a blob - can be changed to charc='hello' or charc='*' for a different effect
- /***************************\
- * Blobs in a Jar Effect *
- *(c)2012-13 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- \***************************/
- var div;
- var xpos=new Array();
- var ypos=new Array();
- var zpos=new Array();
- var dx=new Array();
- var dy=new Array();
- var dz=new Array();
- var blob=new Array();
- var swide=800;
- var shigh=600;
- var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
- function addLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addLoadEvent(fill_the_jar);
- function fill_the_jar() {
- var i, dvs;
- div=document.createElement('div');
- dvs=div.style;
- dvs.position='fixed';
- dvs.left='0px';
- dvs.top='0px';
- dvs.width='1px';
- dvs.height='1px';
- document.body.appendChild(div);
- set_width();
- for (i=0; i<blobs; i++) {
- add_blob(i);
- jamjar(i);
- }
- }
- function add_blob(ref) {
- var dv, sy;
- dv=document.createElement('div');
- sy=dv.style;
- sy.position='absolute';
- sy.textAlign='center';
- if (ie_version && ie_version<10) {
- sy.fontSize="10px";
- sy.width="100px";
- sy.height="100px";
- sy.paddingTop="40px";
- sy.color=colour;
- dv.appendChild(document.createTextNode(charc));
- }
- else if (ie_version) {
- sy.fontSize="1px";
- sy.width="0px";
- sy.height="0px";
- }
- else {
- dv.appendChild(document.createTextNode(charc));
- sy.color='rgba(0,0,0,0)';
- }
- ypos[ref]=Math.floor(shigh*Math.random());
- dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
- xpos[ref]=Math.floor(swide*Math.random());
- dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
- zpos[ref]=Math.random()*20;
- dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
- blob[ref]=dv;
- div.appendChild(blob[ref]);
- set_blob(ref);
- }
- function rejig(ref, xy) {
- if (xy=='y') {
- dx[ref]=(0.5+Math.random())*sign(dx[ref]);
- dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
- }
- else {
- dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
- dy[ref]=(0.5+Math.random())*sign(dy[ref]);
- }
- }
- function sign(a) {
- if (a<0) return (-2);
- else if (a>0) return (2);
- else return (0);
- }
- function set_blob(ref) {
- var sy;
- sy=blob[ref].style;
- sy.top=ypos[ref]+'px';
- sy.left=xpos[ref]+'px';
- if (ie_version && ie_version<10) {
- sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
- sy.fontSize=30-zpos[ref]+"px";
- }
- else if (ie_version) {
- sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
- }
- else {
- sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
- sy.fontSize=40+zpos[ref]+'px';
- }
- }
- function jamjar(ref) {
- if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
- ypos[ref]+=dy[ref];
- if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
- xpos[ref]+=dx[ref];
- if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
- zpos[ref]+=dz[ref];
- set_blob(ref);
- setTimeout("jamjar("+ref+")", speed);
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- // ]]>
- </script>{/block:ifblobs}
- {block:ifrainbowlinks}
- <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:ifrainbowlinks}
- <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>
- <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=Karla|Kosugi+Maru|Kosugi|Roboto|Roboto+Mono|Short+Stack|Inconsolata|Lacquer|Single+Day|Pangolin" rel="stylesheet">
- <meta name="image:sidebar">
- <meta name="image:favicon">
- <meta name="image:bg">
- <meta name="image:post bg">
- <meta name="image:footer pixel">
- <meta name="color:bg">
- <meta name="color:post bg">
- <meta name="color:post hover glow">
- <meta name="color:text">
- <meta name="color:link">
- <meta name="color:link hover">
- <meta name="color:text glow">
- <meta name="color:link glow">
- <meta name="color:link glow hover">
- <meta name="color:border color">
- <meta name="color:blob color">
- <meta name="color:selection bg">
- <meta name="color:selection text">
- <meta name="select:link decoration" content="none">
- <meta name="select:link decoration" content="underline">
- <meta name="select:align things" content="center">
- <meta name="select:align things" content="left">
- <meta name="select:align things" content="right">
- <meta name="select:sidebar width" content="200px">
- <meta name="select:sidebar width" content="250px">
- <meta name="select:sidebar width" content="300px">
- <meta name="select:border style" content="none">
- <meta name="select:border style" content="solid">
- <meta name="select:border style" content="dashed">
- <meta name="select:border style" content="dotted">
- <meta name="select:border style" content="double">
- <meta name="select:border style" content="inset">
- <meta name="select:border style" content="outset">
- <meta name="select:border style" content="groove">
- <meta name="select:border style" content="ridge">
- <meta name="if:rainbow border">
- <meta name="if:round">
- <meta name="if:post border">
- <meta name="if:sidebar border">
- <meta name="if:circle sidebar">
- <meta name="if:heart sidebar">
- <meta name="if:text glow">
- <meta name="if:link glow">
- <meta name="if:link border">
- <meta name="if:bold links">
- <meta name="if:rainbow links">
- <meta name="if:cover bg">
- <meta name="if:blobs">
- <meta name="if:redirect">
- <meta name="text:font size" content="12">
- <meta name="text:font" content="">
- <meta name="text:desc 1" content="">
- <meta name="text:desc 2" content="">
- <meta name="text:desc 3" content="">
- <meta name="text:desc 4" content="">
- <meta name="text:sidebar hover" content="">
- <meta name="text:border width" content="4px">
- <meta name="text:link 1 name" content="link 1">
- <meta name="text:link 2 name" content="link 2">
- <meta name="text:link 3 name" content="link 3">
- <meta name="text:link 1 url" content="/">
- <meta name="text:link 2 url" content="/">
- <meta name="text:link 3 url" content="/">
- <meta name="text:blob" content="?">
- <meta name="text:previouspage" content="previous">
- <meta name="text:nextpage" content="next">
- <meta name="text:redirect" content=""/>
- <style type="text/css">
- ::selection {
- background: {color:selection bg};
- color:{color:selection text};
- }
- ::-moz-selection {
- background: {color:selection bg};
- 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;
- }
- .iframe-controls--desktop {
- position:fixed;
- top:0px;
- right:0px;
- z-index:214748364789123456789;
- filter:invert(100%);
- -webkit-filter:invert(100%);
- -webkit-transform:scale(0.6,0.6);
- -webkit-transform-origin: 100% 0%;
- -ms-transform-origin:100% 0%;
- -ms-transform:scale(0.6,0.6);
- transform:scale(0.6,0.6);
- transform-origin:100% 0%;
- }
- .tooltip {
- display: inline;
- position: relative;
- }
- #s-m-t-tooltip {
- z-index:99999999999999999;
- max-width: 300px;
- margin: 20px;
- padding:5px;
- background-color:rgba(0,0,0,0.5);
- color:white;
- transition: 0.2s;
- text-align:center;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- body {
- background-color: {color:bg};
- background-image: url('{image:bg}');
- {block:ifnotcoverbg}
- background-repeat: repeat;
- background-attachment: fixed;
- {/block:ifnotcoverbg}
- {block:ifcoverbg}
- background-size: cover;
- background-attachment: fixed;
- {/block:ifcoverbg}
- font-family:{text:font};
- font-size:{text:font size}px;
- color:{color:text};
- {block:iftextglow}
- text-shadow: 0 0 2px {color:text glow};
- {/block:iftextglow}
- word-wrap:break-word;
- }
- p{
- margin:0 0 5px 0;
- padding:10;
- }
- pre {
- white-space: pre-wrap;
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- word-wrap: break-word;
- }
- a{
- color:{color:link};
- text-decoration: {select:link decoration};
- {block:iflinkglow}
- text-shadow:0 0 2px {color:link glow},0 0 2px {color:link glow},0 0 2px {color:link glow},0 0 1px {color:link glow};
- {/block:iflinkglow}
- {block:iflinkborder}
- text-shadow: -1px 0 {color:link glow}, 0 1px {color:link glow}, 1px 0 {color:link glow}, 0 -1px {color:link glow};
- {/block:iflinkborder}
- {block:ifboldlinks}font-weight:bold;{/block:ifboldlinks}
- cursor:help;
- }
- a:hover{
- color:{color:link hover};
- {block:iflinkglow}
- text-shadow:0 0 2px {color:link glow hover},0 0 2px {color:link glow hover},0 0 2px {color:link glow hover},0 0 1px {color:link glow hover};
- {/block:iflinkglow}
- {block:iflinkborder}
- text-shadow: -1px 0 {color:link glow hover}, 0 1px {color:link glow hover}, 1px 0 {color:link glow hover}, 0 -1px {color:link glow hover};
- {/block:iflinkborder}
- transition:0.2s;
- -o-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- }
- li{
- margin-left:-15px;
- }
- #wrapper{
- width:900px;
- margin:30px auto;
- }
- #sidebar{
- margin-left:-75px;
- margin-top:100px;
- width:{select:sidebar width};
- position:fixed;
- float:left;
- text-align:center;
- {block:ifsidebarborder}
- padding:5px;
- border: {text:border width}px {select:border style} {color:border color};
- {block:ifrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {/block:ifsidebarborder}
- padding-bottom:0px;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifsidebarborder}
- background: {color:post bg};
- background-image: url('{image:post bg}');
- background-repeat: repeat;
- {/block:ifsidebarborder}
- z-index:1;
- box-sizing: border-box;
- }
- #sidebar:hover{
- -webkit-filter: drop-shadow(0 0 5px {color:post hover glow});
- transition:0.2s;
- -o-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- }
- #sidebar img{
- max-width:100%;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifcirclesidebar}
- border-radius:100%;
- {/block:ifcirclesidebar}
- {block:ifheartsidebar}
- -webkit-mask-image: url(https://cdn.discordapp.com/attachments/291662432298860545/438850568765702144/guhhhhh.png);
- display:inline;
- {/block:ifheartsidebar}
- }
- #desc{
- font-size:1.3em;
- line-height:100%;
- text-align:{select:align things};
- }
- #desc:hover{
- -webkit-filter: blur(0px);
- -o-transition: all 0.1s ease-out;
- -webkit-transition: all 0.1s ease-out;
- -moz-transition: all 0.1s ease-out;
- }
- #links {
- position: fixed;
- width: 100px;
- text-align: right;
- margin-left: -185px;
- margin-top:110px;
- direction: rtl;
- font-size:1.3em;
- z-index:1;
- box-sizing: border-box;
- }
- #links a{
- line-height:225%;
- {block:ifsidebarborder}
- padding:5px;
- border: {text:border width}px {select:border style} {color:border color};
- {block:ifrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {/block:ifsidebarborder}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifsidebarborder}
- background: {color:post bg};
- background-image: url('{image:post bg}');
- background-repeat: repeat;
- {/block:ifsidebarborder}
- }
- #links a:hover{
- -webkit-filter: drop-shadow(0 0 5px {color:post hover glow});
- -webkit-filter: drop-shadow(0 0 5px {color:post hover glow});
- transition:0.2s;
- -o-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- }
- #content {
- width:500px;
- margin-left:300px;
- }
- .post{
- position:relative;
- {block:ifpostborder}
- background: {color:post bg};
- background-image: url('{image:post bg}');
- background-repeat: repeat;
- {/block:ifpostborder}
- width:500px;
- margin: 0 0 50px 0;
- overflow:hidden;
- {block:ifpostborder}
- padding:5px;
- border: {text:border width}px {select:border style} {color:border color};
- {block:ifrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {/block:ifpostborder}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- z-index:1;
- box-sizing: border-box;
- }
- .post:hover{
- -webkit-filter: drop-shadow(0 0 5px {color:post hover glow});
- transition:0.2s;
- -o-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- }
- .post img{
- max-width:100%;
- height:auto;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- #nav{
- position:relative;
- margin:50px 0 0 0;
- font-size: 2em;
- text-align:center;
- width:500px;
- overflow:hidden;
- {block:ifpostborder}
- padding:5px;
- border: {text:border width}px {select:border style} {color:border color};
- {block:ifrainbowborder}
- border-image: linear-gradient(to top left, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- background: {color:post bg};
- background-image: url('{image:post bg}');
- background-repeat: repeat;
- {/block:ifpostborder}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- z-index:1;
- box-sizing: border-box;
- }
- #nav:hover{
- -webkit-filter: drop-shadow(0 0 5px {color:post hover glow});
- transition:0.2s;
- -o-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- }
- .media{
- margin:0 0 10px 0;
- text-align:{select:align things};
- }
- .playbutton {
- position:relative;
- margin-top:45px;
- margin-left:44px;
- z-index:9;
- width:33px;
- height:30px;
- overflow:hidden;}
- .albumart img {
- position:relative;
- margin-top:-75px;
- margin-left:0px
- height:120px;
- width:120px;
- }
- .trackinfo {
- padding:10px;
- box-sizing: border-box;
- background-color:rgba(0,0,0,0.5);
- color:white;
- margin-bottom:0px;
- top:-10px;
- position:relative;
- margin-left:120px;
- height:120px;
- margin-top:-120px;
- overflow:auto;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- .trackname {
- position:relative;
- padding-top:0px;
- text-align:left;
- text-transform:uppercase;
- font-weight: bold;
- letter-spacing:2px;}
- .artist {
- text-align:left;
- text-transform:uppercase;
- letter-spacing:2px;}
- .album {
- text-align:left;
- font-style: italic;
- letter-spacing:4px;}
- .playcount {
- font-weight: bold;
- margin-top:5px;
- text-align:left;
- letter-spacing:2px;}
- }
- .title{
- font-weight:bold;
- font-size:1.3em;
- margin:0 0 10px 0;
- }
- .quote{
- font-weight:normal;
- font-size:1.3em;
- margin:0 0 10px 0;
- }
- .question{
- margin-bottom:10px;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid; 1px {color:text};
- }
- blockquote img {max-width:100%;}
- .post .footer{
- margin:0;
- text-align:{select:align things};
- }
- ol.notes{
- list-style-type:none;
- padding:0px;
- margin-top:10px;
- overflow:auto;
- max-height:250px;
- }
- ol.notes li.note img{
- width:16px;
- height:16px;
- }
- ol.notes li.note{
- margin:0px;
- }
- .tags{
- font-size:0.75em;
- }
- {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="links">
- {block:iflink1url}<a href="{text:link 1 url}">{block:iflink1name}{text:link 1 name}{/block:iflink1name}{block:ifnotlink1name}{text:link 1 url}{/block:ifnotlink1name}</a>{/block:iflink1url}{block:iflink2url}<br><a href="{text:link 2 url}">{block:iflink2name}{text:link 2 name}{/block:iflink2name}{block:ifnotlink2name}{text:link 2 url}{/block:ifnotlink2name}</a>{/block:iflink2url}{block:iflink3url}<br><a href="{text:link 3 url}">{block:iflink3name}{text:link 3 name}{/block:iflink3name}{block:ifnotlink3name}{text:link 3 url}{/block:ifnotlink3name}</a>{/block:iflink3url}
- </div>
- <div id="sidebar">
- <a href="/" title="{text:sidebar hover}"><img src="{image:sidebar}"></a>
- <div id="desc">
- <script language="JavaScript" type="text/javascript">// <![CDATA[
- // <![CDATA[
- function random_imglink(){
- var myQuotes=new Array()
- //specify random images below. You can have as many as you wish
- myQuotes[1]="{text:desc 1}";
- myQuotes[2]="{text:desc 2}";
- myQuotes[3]="{text:desc 3}";
- myQuotes[4]="{text:desc 4}";
- var ry=Math.floor(Math.random()*myQuotes.length)
- if (ry==0)
- ry=1
- document.write('<p>'+myQuotes[ry]+'</p>')
- }
- random_imglink()
- // ]]]]><![CDATA[>
- // ]]></script>
- </div>
- {block:HasPages}
- {block:Pages}
- <a href="{URL}">{Label}</a><br>
- {/block:Pages}
- {/block:HasPages}
- </div>
- <div id="content">
- {block:Posts}
- <div class="post">
- {block:Text}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- <div class="media">{Photoset}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/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">{Video-400}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Video}
- {block:Audio}
- {block:AudioPlayer}
- <div class="playbutton">{AudioPlayerGrey}</div>
- {block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
- <div class="trackinfo">
- <div class="trackname">
- {block:TrackName}{TrackName}{/block:TrackName}
- </div>
- <div class="artist">
- {block:Artist}{Artist}{/block:Artist}
- </div>
- <div class="album">
- {block:Album}{Album}{/block:Album}
- </div>
- </div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:AudioPlayer}
- {/block:Audio}
- {block:Answer}
- <div class="question" style="font-style:italic;"><strong>{Asker}</strong>: {Question}</div>
- <div class="caption">{Answer}</div>
- {/block:Answer}
- {block:Date}
- <div class="footer">
- <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">↻</a>
- <!-- {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 class="tags"> {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
- </div>
- {block:PermalinkPage}
- {block:NoteCount}
- {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> {/block:RebloggedFrom}{block:ContentSource} x <a href="{SourceURL}" title="{SourceTitle}">source</a>{/block:ContentSource}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:NoteCount}
- {/block:PermalinkPage}
- {/block:Date}
- </div>
- {/block:Posts}
- {block:Pagination}
- <div id="nav">
- {block:PreviousPage}<a href="{PreviousPage}">{text:previouspage}</a> {/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}">{text:nextpage}</a>{/block:NextPage}
- </div>
- {/block:Pagination}
- </div>
- </div>
- </div>
- <a style="position:fixed;left:3px;bottom:3px;" <a href="https://noodle.tumblr.com/" title="annie with the red eyes">✡</a>
- <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>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement