Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- MRS. PUMPKIN THEME BY ANNIE @NOODLE
- happy halloween!!!!! it's my first halloween away from home lol. this was gonna be released on actual halloween but a bitch is busy. anyways don't (re)move the credit or use as a basecode or i will steal all ur candy !!
- if u want a wobbly title, put <div id="wobble">UR TITLE</div>"
- ----->
- <script type="text/javascript">
- // <![CDATA[
- var speed=100; // speed of wobbling, lower is faster
- var height=3; // height of wobbling in pixels
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- * Wobbly Text Effect *
- *(c) 2003-6 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var wobtxt, wobble, wobcnt=0;
- window.onload=function() { if (document.getElementById) {
- var i, wobli;
- wobble=document.getElementById("wobble");
- wobtxt=wobble.firstChild.nodeValue;
- while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
- for (i=0; i<wobtxt.length; i++) {
- wobli=document.createElement("span");
- wobli.setAttribute("id", "wobb"+i);
- wobli.style.position="relative";
- wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
- if (alink) {
- wobli.style.cursor="pointer";
- wobli.onclick=function() { top.location.href=alink; }
- }
- wobble.appendChild(wobli);
- }
- setInterval("wobbler()", speed);
- }}
- function wobbler() {
- for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
- wobcnt++;
- }
- // ]]>
- </script>
- {block:ifcursorhearts}
- <script type="text/javascript">
- // <![CDATA[
- var colours=new Array("{color:cursor hearts}"); // colours of the hearts
- var minisize=15; // smallest size of hearts in pixels
- var maxisize=30; // biggest size of hearts in pixels
- var hearts=69; // maximum number of hearts on screen
- var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
- /*****************************
- *JavaScript Love Heart Cursor*
- * (c)2013+ mf2fm web-design *
- * https://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- *****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var herz=new Array();
- var herzx=new Array();
- var herzy=new Array();
- var herzs=new Array();
- var kiss=false;
- if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addRVLoadEvent(mwah);
- function mwah() { if (document.getElementById) {
- var i, heart;
- for (i=0; i<hearts; i++) {
- heart=createDiv("auto", "auto");
- heart.style.visibility="hidden";
- heart.style.zIndex=(over_or_under=="over")?"1001":"0";
- heart.style.color=colours[i%colours.length];
- heart.style.pointerEvents="none";
- if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
- else heart.style.opacity=0.75;
- heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
- document.body.appendChild(heart);
- herz[i]=heart;
- herzy[i]=false;
- }
- set_scroll();
- set_width();
- herzle();
- }}
- function herzle() {
- var c;
- if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- ox=x;
- oy=y;
- for (c=0; c<hearts; c++) if (herzy[c]===false) {
- herz[c].firstChild.nodeValue=String.fromCharCode(9829);
- herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
- herz[c].style.top=(herzy[c]=y-minisize)+"px";
- herz[c].style.fontSize=minisize+"px";
- herz[c].style.fontWeight='normal';
- herz[c].style.visibility='visible';
- herzs[c]=minisize;
- break;
- }
- }
- for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
- setTimeout("herzle()", 40);
- }
- document.onmousedown=pucker;
- document.onmouseup=function(){clearTimeout(kiss);};
- function pucker() {
- ox=-1;
- oy=-1;
- kiss=setTimeout('pucker()', 100);
- }
- function blow_me_a_kiss(i) {
- herzy[i]-=herzs[i]/minisize+i%2;
- herzx[i]+=(i%5-2)/5;
- if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
- herz[i].style.visibility="hidden";
- herzy[i]=false;
- }
- else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
- else {
- if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
- herz[i].style.top=herzy[i]+"px";
- herz[i].style.left=herzx[i]+"px";
- }
- }
- function break_my_heart(i) {
- var t;
- herz[i].firstChild.nodeValue=String.fromCharCode(9676);
- herz[i].style.fontWeight='bold';
- herzy[i]=false;
- for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
- setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
- }
- document.onmousemove=mouse;
- function mouse(e) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- 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)=='number' && 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;
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height;
- div.style.width=width;
- div.style.overflow="hidden";
- div.style.backgroundColor="transparent";
- return (div);
- }
- // ]]>
- </script>
- {/block:ifcursorhearts}
- {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:pumpkinription}
- <meta name="pumpkinription" content="{Metapumpkinription}" />
- {/block:pumpkinription}
- <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|Kosugi+Maru|Roboto|Short+Stack|Inconsolata|Pangolin" rel="stylesheet">
- <meta name="image:favicon">
- <meta name="image:custom cursor">
- <meta name="image:header">
- <meta name="image:links pixel">
- <meta name="image:bg">
- <meta name="image:post bg">
- <meta name="color:bg">
- <meta name="color:post bg">
- <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:shadows">
- <meta name="color:border color">
- <meta name="color:selection bg">
- <meta name="color:selection text">
- <meta name="color:cursor hearts">
- <meta name="select:link decoration" content="none">
- <meta name="select:link decoration" content="underline">
- <meta name="if:shadowy">
- <meta name="if:content padding">
- <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:blackborder" content="0">
- <meta name="if:whiteborder" content="0">
- <meta name="if:custom cursor">
- <meta name="if:cursor hearts">
- <meta name="if:round">
- <meta name="if:bold links">
- <meta name="if:text glow">
- <meta name="if:link glow">
- <meta name="if:link border">
- <meta name="if:rainbow links">
- <meta name="if:cover bg">
- <meta name="if:hover tags">
- <meta name="if:redirect">
- <meta name="text:font" content="">
- <meta name="text:title" content="look at top of codes for how to get wobble title">
- <meta name="text:desc" content="">
- <meta name="text:border width" content="4">
- <meta name="text:link 1" content="1">
- <meta name="text:link 1 url" content="/">
- <meta name="text:link 2" content="2">
- <meta name="text:link 2 url" content="/">
- <meta name="text:link 3" content="3">
- <meta name="text:link 3 url" content="/">
- <meta name="text:search" content="GO GOOGLE IT"/>
- <meta name="text:previouspage" content="previous">
- <meta name="text:nextpage" content="next">
- <meta name="text:redirect" content="don't put the slash"/>
- <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;
- }
- .tooltip {
- display: inline;
- position: relative;
- }
- #s-m-t-tooltip {
- z-index:99999999999999999;
- background-color:rgba(0,0,0,0.5);
- color:white;
- max-width: 300px;
- margin: 20px;
- padding: 10px;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- text-align:center;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifshadowy}
- -webkit-filter: drop-shadow(0 0 2px {color:shadows});
- {/block:ifshadowy}
- }
- 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:28px;
- color:{color:text};
- {block:iftextglow}
- text-shadow: 0 0 2px {color:text glow};
- {/block:iftextglow}
- word-wrap:break-word;
- overflow-x:hidden;
- }
- p{
- margin:0 0 10px 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{
- color:{color:link};
- text-decoration: {select:link decoration};
- {block:iflinkglow}
- text-shadow:0 0 2px {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};
- }
- a:hover{
- color:{color:link hover};
- text-shadow: 1px 1px 1px {color:link glow hover}, 0 0 1px {color:link glow hover}, 0px 1px 1px {color:link glow hover}, 0 2px 2px {color:link glow hover}, 0 3px 3px {color:link glow hover}, 0 4px 4px {color:link glow hover};
- -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:500px;
- margin:30px auto;
- }
- #header{
- width:500px;
- height:240px;
- text-align:center;
- margin:auto auto 50px auto;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifshadowy}
- -webkit-filter: drop-shadow(0 0 2px {color:shadows});
- {/block:ifshadowy}
- {block:ifcontentpadding}
- padding:20px;
- border: {text:border width}px {select:border style} {color:border color};
- {block:ifblackborder}border-width: {text:border width}px;-moz-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-webkit-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-o-border-image: url({"https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 fill round;{/block:ifblackborder}
- {block:ifwhiteborder}border-width: {text:border width}px;
- -moz-border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 round;
- -webkit-border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 round;-o-border-image: url({"https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 round;border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 fill round;{/block:ifwhiteborder}
- background: {color:post bg};
- background-image: url('{image:post bg}');
- {/block:ifcontentpadding}
- }
- #header img{
- {block:ifnotcontentpadding}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {/block:ifnotcontentpadding}
- }
- #pumpkin{
- float:right;
- width:240px;
- text-align:left;
- line-height:155%;
- }
- #desc{
- width:240px;
- height:69px;
- padding:5px;
- background:#f1f1f1;
- background-image: url('https://i.imgur.com/IGXGYKz.png');
- color:black;
- border-top: 1px solid #bdbdbd;
- border-left: 1px solid #bdbdbd;
- border-right: 1px solid #5f5e5e;
- border-bottom: 1px solid #5f5e5e;
- font-family:{text:font};
- box-sizing: border-box;
- overflow:auto;
- line-height:100%;
- {block:ifnotcontentpadding}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {/block:ifnotcontentpadding}
- }
- #title{
- font-size:1.5em;
- text-align:center;
- margin-top:-10px;
- z-index:1;
- width:calc(500px + calc({text:border width}px * 2));
- {block:ifcontentpadding}
- padding-right:20px;
- padding-left:20px;
- {/block:ifcontentpadding}
- {block:ifshadowy}
- -webkit-filter: drop-shadow(0 0 2px {color:shadows});
- {/block:ifshadowy}
- }
- #title a{
- text-decoration:none;
- }
- .search {
- width:240px;
- height:auto;
- padding:5px;
- background:#f1f1f1;
- background-image: url('https://i.imgur.com/IGXGYKz.png');
- font-size:20px;
- color:black;
- border-top: 1px solid #bdbdbd;
- border-left: 1px solid #bdbdbd;
- border-right: 1px solid #5f5e5e;
- border-bottom: 1px solid #5f5e5e;
- font-family:{text:font};
- box-sizing: border-box;
- {block:ifnotcontentpadding}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {/block:ifnotcontentpadding}
- }
- #content {
- width:500px;
- margin:auto;
- }
- .post{
- width:500px;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifcontentpadding}
- padding:20px;
- background: {color:post bg};
- background-image: url('{image:post bg}');
- border: {text:border width}px {select:border style} {color:border color};
- {block:ifblackborder}border-width: {text:border width}px;-moz-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-webkit-border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;-o-border-image: url({"https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 round;border-image: url("https://67.media.tumblr.com/c0194af5a9536ca2aca7f03b68bddfa4/tumblr_inline_o98mskFnTn1u2r0ws_540.png") 8 fill round;{/block:ifblackborder}
- {block:ifwhiteborder}border-width: {text:border width}px;
- -moz-border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 round;
- -webkit-border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 round;-o-border-image: url({"https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 round;border-image: url("https://65.media.tumblr.com/58a070cdb1f8063000fb9bcc2ebdf501/tumblr_inline_o98n9dbCl61u2r0ws_540.png")
- 8 fill round;{/block:ifwhiteborder}
- {/block:ifcontentpadding}
- {block:ifshadowy}
- -webkit-filter: drop-shadow(0 0 2px {color:shadows});
- {/block:ifshadowy}
- margin:auto auto 50px auto;
- }
- .post img{
- max-width:100%;
- height:auto;
- {block:ifnotcontentpadding}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {/block:ifnotcontentpadding}
- }
- #nav{
- margin:50px 0 50px 0;
- font-size: 1.5em;
- text-align:center;
- {block:ifshadowy}
- -webkit-filter: drop-shadow(0 0 2px {color:shadows});
- {/block:ifshadowy}
- }
- #nav a{
- text-decoration:none;
- }
- .simple-player iframe, .audio_player iframe, .size, .size iframe {
- background: #fff;
- color: {color:text};
- width: 100%;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- .media{
- text-align:center;
- {block:ifnotcontentpadding}
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {/block:ifnotcontentpadding}
- }
- .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:5px;
- box-sizing: border-box;
- background:#f1f1f1;
- background-image: url('https://i.imgur.com/IGXGYKz.png');
- color:black;
- border-top: 1px solid #bdbdbd;
- border-left: 1px solid #bdbdbd;
- border-right: 1px solid #5f5e5e;
- border-bottom: 1px solid #5f5e5e;
- color:black;
- margin-bottom:0px;
- top:-10px;
- position:relative;
- margin-left:120px;
- height:120px;
- margin-top:-116.5px;
- 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;}
- .title{
- font-weight:bold;
- font-size:1.5em;
- }
- .quote{
- font-weight:normal;
- font-size:16px;
- font-style:italic;
- }
- .question{
- margin-bottom:10px;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px {color:text};
- }
- .footer{
- text-align:left;
- }
- ol.notes{
- list-style-type:none;
- padding:0px;
- margin-top:10px;
- overflow: scroll;
- max-height:300px;
- }
- ol.notes li.note img{
- width:auto;
- height:auto;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- ol.notes li.note{
- margin:0px;
- }
- {block:ifhovertags}
- .tags {
- max-height:0px;
- text-align:center;
- opacity:0;
- -webkit-transition: all 0.7s ease;
- transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- .post:hover .tags{
- 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:ifhovertags}
- {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">
- {block:ifcustomcursor}
- <style>body, a, a:hover { cursor:url({image:custom cursor}), auto; }</style>
- {/block:ifcustomcursor}
- <div align="center"><div id="title">
- <a href="/">{text:title}</a></div></div>
- <div id="header">
- <a href="/"><img src="{image:header}" style="float:left;width:240px;height:240px"></a>
- <div id="pumpkin">
- <div id="desc">{text:desc}</div>
- <img src="{image:links pixel}"> <a href="{text:link 1 url}">{text:Link 1}</a><br>
- <img src="{image:links pixel}"> <a href="{text:link 2 url}">{text:Link 2}</a><br>
- <img src="{image:links pixel}"> <a href="{text:link 3 url}">{text:Link 3}</a><br>
- <form action="/search"
- method="get" class="sfm" name="theform">
- <input class="search" type="text" placeholder="{text:search}" name="q"
- onfocus="this.placeholder = ''"
- onblur="this.placeholder = '{text:search}'" />
- </form>
- </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:pumpkinription}
- <div class="pumpkinription">{pumpkinription}</div>
- {/block:pumpkinription}
- {/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}
- <table>
- <tr>
- <td style="vertical-align:top;padding-right:10px;"><img src="{askerPortraitURL-64}"></td>
- <td style="vertical-align:top;"><strong>{asker} asked:</strong> {Question}</td>
- </tr>
- </table>
- {Answer}
- {/block:Answer}
- {block:Date}
- <div class="footer">
- <a href="{Permalink}"><a href="{Permalink}" title="{notecount}%">{timeago}</a> <a href="{ReblogURL}" class="reblog" style="float:right;" target="_blank" title="REBLOG">↻</a>
- <br>
- <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}
- <br>
- {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>
- <div id="staticimage" style="position:fixed; bottom:{text:image margin bottom}px; z-index:-1; left:{text:image margin left}px;"><img src="{image:static image}"width="{text:image width}"></div>
- <a style="position:fixed;left:3px;bottom:3px;" <a href="https://noodle.tumblr.com/" title="BOO! theme by annie!">✡</a>
- <!-----
- you can change the credit icon if u want but don't remove or obscure it
- ----->
- <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