Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- ♡ cybrrbully bf theme by boyfriended ♡
- pogchamp
- base code by animecharacter
- ----->
- <script type="text/javascript">{block:ifsparkles}
- // <![CDATA[
- var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-13 mf2fm web-design*
- * http://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 tiny=new Array();
- var star=new Array();
- var starv=new Array();
- var starx=new Array();
- var stary=new Array();
- var tinyx=new Array();
- var tinyy=new Array();
- var tinyv=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, rats, rlef, rdow;
- for (var i=0; i<sparkles; i++) {
- var rats=createDiv(3, 3);
- rats.style.visibility="hidden";
- rats.style.zIndex="999";
- document.body.appendChild(tiny[i]=rats);
- starv[i]=0;
- tinyv[i]=0;
- var rats=createDiv(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- rats.style.zIndex="999";
- var rlef=createDiv(1, 5);
- var rdow=createDiv(5, 1);
- rats.appendChild(rlef);
- rats.appendChild(rdow);
- rlef.style.top="2px";
- rlef.style.left="0px";
- rdow.style.top="0px";
- rdow.style.left="2px";
- document.body.appendChild(star[i]=rats);
- }
- set_width();
- sparkle();
- }}
- function sparkle() {
- var c;
- if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- ox=x;
- oy=y;
- for (c=0; c<sparkles; c++) if (!starv[c]) {
- star[c].style.left=(starx[c]=x)+"px";
- star[c].style.top=(stary[c]=y+1)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
- star[c].style.visibility="visible";
- starv[c]=50;
- break;
- }
- }
- for (c=0; c<sparkles; c++) {
- if (starv[c]) update_star(c);
- if (tinyv[c]) update_tiny(c);
- }
- setTimeout("sparkle()", 40);
- }
- function update_star(i) {
- if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
- if (starv[i]) {
- stary[i]+=1+Math.random()*3;
- starx[i]+=(i%5-2)/5;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- star[i].style.left=starx[i]+"px";
- }
- else {
- star[i].style.visibility="hidden";
- starv[i]=0;
- return;
- }
- }
- else {
- tinyv[i]=50;
- tiny[i].style.top=(tinyy[i]=stary[i])+"px";
- tiny[i].style.left=(tinyx[i]=starx[i])+"px";
- tiny[i].style.width="2px";
- tiny[i].style.height="2px";
- tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
- star[i].style.visibility="hidden";
- tiny[i].style.visibility="visible"
- }
- }
- function update_tiny(i) {
- if (--tinyv[i]==25) {
- tiny[i].style.width="1px";
- tiny[i].style.height="1px";
- }
- if (tinyv[i]) {
- tinyy[i]+=1+Math.random()*3;
- tinyx[i]+=(i%5-2)/5;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- tiny[i].style.left=tinyx[i]+"px";
- }
- else {
- tiny[i].style.visibility="hidden";
- tinyv[i]=0;
- return;
- }
- }
- else tiny[i].style.visibility="hidden";
- }
- 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.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;
- }
- }
- 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;
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height+"px";
- div.style.width=width+"px";
- div.style.overflow="hidden";
- return (div);
- }
- function newColour() {
- var c=new Array();
- c[0]=255;
- c[1]=Math.floor(Math.random()*256);
- c[2]=Math.floor(Math.random()*(256-c[1]/2));
- c.sort(function(){return (0.5 - Math.random());});
- return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
- }
- // ]]>
- {/block:ifsparkles}
- </script>
- {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 = 70; // Saturation
- var elmV = 250; // 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}
- {block:ifclicksplosion}
- <script type="text/javascript">
- // <![CDATA[
- var sparks=75; // how many sparks per clicksplosion
- var speed=33; // how fast - smaller is faster
- var bangs=5; // how many can be launched simultaneously (note that using too many can slow the script down)
- var colours=new Array('#03f', '#f03', '#0e0', '#93f', '#0cf', '#f93', '#f0c');
- // blue red green purple cyan orange pink
- /****************************
- * Clicksplosion Effect *
- *(c)2012-3 mf2fm web-design *
- * https://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var intensity=new Array();
- var Xpos=new Array();
- var Ypos=new Array();
- var dX=new Array();
- var dY=new Array();
- var stars=new Array();
- var decay=new Array();
- var timers=new Array();
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var count=0;
- function addLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addLoadEvent(clicksplode);
- function clicksplode() { if (document.getElementById) {
- var i, j;
- window.onscroll=set_scroll;
- window.onresize=set_width;
- document.onclick=eksplode;
- set_width();
- set_scroll();
- for (i=0; i<bangs; i++) for (j=sparks*i; j<sparks+sparks*i; j++) {
- stars[j]=createDiv('*', 13);
- document.body.appendChild(stars[j]);
- }
- }}
- function createDiv(char, size) {
- var div, sty;
- div=document.createElement('div');
- sty=div.style;
- sty.font=size+'px monospace';
- sty.position='absolute';
- sty.backgroundColor='transparent';
- sty.visibility='hidden';
- sty.zIndex='101';
- div.appendChild(document.createTextNode(char));
- return (div);
- }
- function bang(N) {
- var i, Z, A=0;
- for (i=sparks*N; i<sparks*(N+1); i++) {
- if (decay[i]) {
- Z=stars[i].style;
- Xpos[i]+=dX[i];
- Ypos[i]+=(dY[i]+=1.25/intensity[N]);
- if (Xpos[i]>=swide || Xpos[i]<0 || Ypos[i]>=shigh+sdown || Ypos[i]<0) decay[i]=1;
- else {
- Z.left=Xpos[i]+'px';
- Z.top=Ypos[i]+'px';
- }
- if (decay[i]==15) Z.fontSize='7px';
- else if (decay[i]==7) Z.fontSize='2px';
- else if (decay[i]==1) Z.visibility='hidden';
- decay[i]--;
- }
- else A++;
- }
- if (A!=sparks) timers[N]=setTimeout('bang('+N+')', speed);
- }
- function eksplode(e) {
- var x, y, i, M, Z, N;
- set_scroll();
- y=(e)?e.pageY:event.y+sdown;
- x=(e)?e.pageX:event.x+sleft;
- N=++count%bangs;
- M=Math.floor(Math.random()*3*colours.length);
- intensity[N]=5+Math.random()*4;
- for (i=N*sparks; i<(N+1)*sparks; i++) {
- Xpos[i]=x;
- Ypos[i]=y-5;
- dY[i]=(Math.random()-0.5)*intensity[N];
- dX[i]=(Math.random()-0.5)*(intensity[N]-Math.abs(dY[i]))*1.25;
- decay[i]=16+Math.floor(Math.random()*16);
- Z=stars[i].style;
- if (M<colours.length) Z.color=colours[i%2?count%colours.length:M];
- else if (M<2*colours.length) Z.color=colours[count%colours.length];
- else Z.color=colours[i%colours.length];
- Z.fontSize='13px';
- Z.visibility='visible';
- }
- clearTimeout(timers[N]);
- bang(N);
- }
- 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-7;
- shigh=sh_min-7;
- }
- 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;
- }
- }
- // ]]>
- </script>
- {/block:ifclicksplosion}
- <meta charset="utf-8">
- <meta https-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <link rel="shortcut icon" href="{image:favicon}">
- <link rel="alternate" type="application/rss+xml" href="{rss}">
- <title>{Title}</title>
- <link rel="shortcut icon" href="{image:favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <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>
- <!--lulw -->
- <meta name="color:background" content="#ffffff"/>
- <meta name="color:posts" content=""/>
- <meta name="color:sidebar" content=""/>
- <meta name="color:border" content="#000">
- <meta name="color:text" content="#2b2b2b"/>
- <meta name="color:link" content="#2b2b2b"/>
- <meta name="color:link hover" content="#ff0000"/>
- <meta name="color:selection bg" content="#fff"/>
- <meta name="color:selection text">
- <meta name="color:tooltip" content="#ffffff"/>
- <meta name="color:tooltip text" content="#6d6d6d"/>
- <meta name="image:background" content="" />
- <meta name="image:post background" content="" />
- <meta name="image:sidebar">
- <meta name="image:sidebar background" content="" />
- <meta name="image:title img" content="" />
- <meta name="image:favicon" content="">
- <meta name="image:cursor" content=""/>
- <meta name="image:bottom left" content=""/>
- <meta name="image:bottom right" content=""/>
- <meta name="image:link pixel 1" content=""/>
- <meta name="image:link pixel 2" content=""/>
- <meta name="image:link pixel 3" content=""/>
- <meta name="image:link pixel 4" content=""/>
- <meta name="image:blinkie 1" content=""/>
- <meta name="image:blinkie 2" content=""/>
- <meta name="image:blinkie 3" content=""/>
- <meta name="image:blinkie 4" content=""/>
- <meta name="image:blinkie 5" content=""/>
- <meta name="text:description" content="cmon and fuck me emo boy"/>
- <meta name="text:date" content="06/06/06">
- <meta name="text:title" content="p o g c h a m p"/>
- <meta name="text:navi title" content="click!" />
- <meta name="text:redirect" content=""/>
- <meta name="text:font size" content="12px">
- <meta name="text:title size" content="15px">
- <meta name="text:border size" content="3px" />
- <meta name="text:right width" content="450px"/>
- <meta name="text:left width" content="450px"/>
- <meta name="text:link 1" content="one" />
- <meta name="text:link 1 url" content="/" />
- <meta name="text:link 2" content="two" />
- <meta name="text:link 2 url" content="" />
- <meta name="text:link 3" content="three" />
- <meta name="text:link 3 url" content="" />
- <meta name="text:link 4" content="four" />
- <meta name="text:link 4 url" content="" />
- <meta name="if:redirect" content=""/>
- <meta name="if:sidebar bg" content="" />
- <meta name="if:post bg" content="" />
- <meta name="if:cover bg" content=""/>
- <meta name="if:post bg" content=""/>
- <meta name="if:cover post bg" content=""/>
- <meta name="if:sidebar bg" content=""/>
- <meta name="if:cover sidebar bg" content=""/>
- <meta name="if:blinkies" content=""/>
- <meta name="if:cursor" content=""/>
- <meta name="if:sidebar border" content="" />
- <meta name="if:post border" content="" />
- <meta name="if:dropdown" content="" />
- <meta name="if:rainbow links" content=""/>
- <meta name="if:clicksplosion" content=""/>
- <meta name="if:sparkles" content=""/>
- <meta name="select:font" content="arial">
- <meta name="select:font" content="georgia">
- <meta name="select:font" content="times new roman">
- <meta name="select:font" content="ms gothic"/>
- <meta name="select:font" content="comic sans ms">
- <meta name="select:font" content="consolas">
- <meta name="select:border type" content="solid" />
- <meta name="select:border type" content="double" />
- <meta name="select:border type" content="dashed" />
- <meta name="select:border type" content="dotted" />
- <meta name="select:border type" content="outset">
- <meta name="select:border type" content="inset">
- {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}
- <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
- <style type="text/css">
- ::-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;
- }
- ::selection {
- background: {color:selection bg};
- color:{color:selection text};
- }
- ::-moz-selection {
- background: {color:selection bg};
- color:{color:selection text};
- }
- }
- .tooltip{
- display:inline;
- position:relative;
- }
- #s-m-t-tooltip{
- max-width:300px;
- padding:5px;
- margin:20px 7px -2px 20px;
- background-color:{color:tooltip};
- letter-spacing:1px;
- border:1px solid {color:tooltip text};
- text-align:center;
- color:{color:tooltip text};
- z-index:99999999999999999999;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- /*
- general text styles, fonts and colours
- */
- body {
- background:{color:background};
- background-image: url('{image:background}');
- {block:ifnotcoverbg}
- background-repeat: repeat;
- background-attachment: fixed;
- {/block:ifnotcoverbg}
- {block:ifcoverbg}
- background-size: cover;
- background-attachment: fixed;
- {/block:ifcoverbg}
- color:{color:text};
- font-family: {select:font};
- font-size: {text:font size};
- margin:0;
- text-align:justify;
- line-height:16px;
- }
- 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};
- }
- a:hover{
- color:{color:link hover};
- }
- li{
- margin-left:-15px;
- }
- {block:ifcursor}
- body, *, a, a:hover { cursor:url({image:Cursor}), auto;}
- {/block:ifcursor}
- /*
- containers etc
- */
- #wrapper{
- width:450px;
- margin:50px auto;
- }
- #con {
- left:50%;
- margin-left:-140px;
- position:absolute;
- }
- #head{
- text-align:center;
- width: 400px;
- margin-bottom:-10px;
- padding: 5px;
- }
- #content{
- width:450px;
- overflow:hidden;
- text-align:center;
- margin-left:0px;
- margin-bottom:10px;
- }
- #sidebar {
- width: 250px;
- {block:ifsidebarbg}
- background-color:{color:sidebar};
- background-image: url('{image:sidebar background}');
- {block:ifnotcoversidebarbg}
- background-repeat: repeat;
- background-attachment: fixed;
- {/block:ifnotcoversidebarbg}
- {block:ifcoversidearbg}
- background-size: cover;
- background-attachment: fixed;
- {/block:ifcoversidearbg}
- {/block:ifsidebarbg}
- margin-left: -400px;
- margin-top:100px;
- line-height:20px;
- font-size:{text:font size};
- padding:10px;
- text-align:center;
- {block:ifsidebarborder}
- border-width:{text:border size};
- border-style:{select:border type};
- border-color:{color:border};
- {/block:ifsidebarborder}
- text-align: center;
- position: fixed;
- }
- #sidebar img {
- max-width:100%;
- height:auto;
- }
- .post{
- width:400px;
- margin:20px 0;
- padding:10px;
- overflow:hidden;
- {block:ifpostbg}
- background-color:{color:posts};
- background-image: url('{image:post background}');
- {block:ifnotcoverpostbg}
- background-repeat: repeat;
- background-attachment: fixed;
- {/block:ifnotcoverpostbg}
- {block:ifcoverpostbg}
- background-size: cover;
- background-attachment: fixed;
- {/block:ifcoverpostbg}
- {/block:ifpostbg}
- {block:ifpostborder}
- border:{text:border size} {select:border type} {color:border};
- padding: 10px 10px 8px 10px;
- {/block:ifpostborder}
- }
- .post img{
- max-width:100%;
- height:auto
- }
- #scream{
- width:400px;
- margin:20px 0;
- padding:10px;
- text-align:center;
- }
- #nav{
- margin:50px 0 0 0;
- }
- #tit {
- font-size: {text:title size};
- }
- #pog{
- text-align: left;
- }
- #ow {
- text-align:center;
- margin-top:15px;
- line-height:30px;
- }
- #left img{
- position:fixed;
- z-index: -1;
- bottom:10px;
- left:30px;
- width:{text:left width};
- }
- #right img{
- position:fixed;
- z-index: -1;
- bottom:10px;
- right:60px;
- left:fixed;
- width:{text:right width};
- }
- /*
- content in the body of the posts - quotes, asks, etc
- "media" contains photos, photosets, videos, audio posts
- */
- .media{
- margin:0 0 10px 0;
- }
- .title{
- font-weight:normal;
- font-size:18px;
- margin:0 0 10px 0;
- }
- .quote{
- font-weight:normal;
- font-size:16px;
- font-style:italic;
- margin:0 0 10px 0;
- }
- .question{
- margin-bottom:10px;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px #000;
- }
- /*
- post footers - date, tags, via and source
- */
- .post .footer{
- margin:0;
- text-align:left;
- }
- /*
- post notes
- */
- ol.notes{
- list-style-type:none;
- padding:0;
- margin:0;
- }
- ol.notes li.note img{
- width:16px;
- height:16px;
- }
- ol.notes li.note{
- margin:0px;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <div id="left"><img src="{image:bottom left}"></div>
- <div id="right"><img src="{image:bottom right}"></div>
- <div id="con">
- <div id="sidebar">
- <a href="/"><img src="{image:sidebar}"></a>
- {block:ifDescription}<Center>{text:description}</Center>{/block:ifDescription}
- <p class="desc">
- {block:ifdropdown}
- <select style="margin-top:10px;" onChange="location=this.options[this.selectedIndex].value;">
- <option value="">{text:navi title}</option>
- {block:iflink1}<option value="{text:link 1 url}">{text:link 1}</option>{/block:iflink1}
- {block:iflink2}<option value="{text:link 2 url}">{text:link 2}</option>{/block:iflink2}
- {block:iflink3}<option value="{text:link 3 url}">{text:link 3}</option>{/block:iflink3}
- {block:iflink4}<option value="{text:link 4 url}">{text:link 4}</option>{/block:iflink4}
- </option> </select>
- {/block:ifdropdown}
- {block:ifnotdropdown}
- <div id="pog">
- <img src="{image:link pixel 1}"> <a href="{text:link 1 URL}">{text:link 1}</a>
- <br>
- <img src="{image:link pixel 2}"> <a href="{text:link 2 URL}">{text:link 2}</a>
- <br>
- <img src="{image:link pixel 3}"> <a href="{text:link 3 URL}">{text:link 3}</a>
- <br>
- <img src="{image:link pixel 4}"> <a href="{text:link 4 URL}">{text:link 4}</a>
- </div>
- {/block:ifnotdropdown}
- </p>
- {block:ifblinkies}
- <div id="ow">
- <img src="{image:blinkie 1}"> <br> <img src="{image:blinkie 2}"> <br>
- <img src="{image:blinkie 3}"> <br> <img src="{image:blinkie 4}"> <br>
- <img src="{image:blinkie 5}"></div>
- {/block:ifblinkies}
- </div>
- <div id="wrapper">
- <div id="head">
- <img src="{image:title img}">
- <div id="tit">{text:title}</p></div>
- </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-400}</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}
- <div class="media">
- {AudioPlayerWhite}
- {block:TrackName}{TrackName}{/block:TrackName} /
- {block:Artist}{Artist}{/block:Artist}
- </div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Answer}
- <div class="question">{Asker}: {Question}</div>
- <div class="caption">{Answer}</div>
- {/block:Answer}
- {block:Date}
- <div class="footer">
- <a href="{Permalink}"><a href="{Permalink}" title="{timeago}">{notecount}{text:notes symbol}</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}
- <br>
- <div class="tags"> {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}</div>
- </div>
- {block:PermalinkPage}
- {block:NoteCount}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:NoteCount}
- {/block:PermalinkPage}
- {/block:Date}
- </div>
- {/block:Posts}
- <center>
- {block:Pagination}
- <div id="navi">
- {block:PreviousPage}<a href="{PreviousPage}">{lang:Previous}</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}">{lang:Next}</a>{/block:NextPage}
- </div>
- {/block:Pagination}
- </center>
- </div>
- <div id="scream"><a href="https://boyfriended.tumblr.com/" title="theme by artie o.0">this page was last updated {text:date}</a>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement