Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- _____ _
- / __ \ | |
- ___ ___ `' / /' __| |
- / _ \/ __| / / / _` |
- | (_) \__ \./ /__| (_| |
- \___/|___/\_____/\__,_|
- dont use as a base code no removing credit you get the gist. go crazy dude
- base code by animecharacter.tumblr.com
- ----->
- <meta charset="utf-8">
- <meta http-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}">
- {block:ifsparkles}<script type="text/javascript">
- // <![CDATA[
- var colour="{color:sparkles}"; // 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]+")");
- }
- // ]]>
- </script>{/block:ifsparkles}
- <link rel="shortcut icon" href="{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="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
- <link href="https://fonts.googleapis.com/css?family=Nanum+Gothic+Coding|Short+Stack&display=swap" rel="stylesheet">
- <meta name="image:favicon" content="">
- <meta name="image:icon" content="">
- <meta name="image:permalink" content="">
- <meta name="image:bg" content="">
- <meta name="image:post bg" content="">
- <meta name="image:permalink bg" content="">
- <meta name="image:container bg" content="">
- <meta name="image:words at bottom bg" content="">
- <meta name="image:ask bg" content="">
- <meta name="color:text" content="black">
- <meta name="color:links" content="blue">
- <meta name="color:link hover" content="red">
- <meta name="color:bg" content="white">
- <meta name="color:post bg" content="white">
- <meta name="color:container bg" content="white">
- <meta name="color:popup bg" content="white">
- <meta name="color:words at bottom bg" content="white">
- <meta name="color:border" content="black">
- <meta name="color:tooltip" content="white">
- <meta name="color:tooltip text" content="black">
- <meta name="color:sparkles" content="black">
- <meta name="color:link border" content="black">
- <meta name="color:permalink bg" content="white">
- <meta name="color:icon glow" content="red">
- <meta name="color:container glow" content="blue">
- <meta name="color:text glow" content="black">
- <meta name="select:font" content="arial">
- <meta name="select:font" content="ms pgothic">
- <meta name="select:font" content="times">
- <meta name="select:font" content="short stack">
- <meta name="select:font" content="bellota">
- <meta name="select:font" content="Liu Jian Mao Cao">
- <meta name="select:font" content="Playfair Display">
- <meta name="select:font" content="Pacifico">
- <meta name="select:font" content="Rajdhani">
- <meta name="select:font" content="Bebas Neue">
- <meta name="select:font" content="Advent Pro">
- <meta name="select:font" content="Orbitron">
- <meta name="select:border" content="none">
- <meta name="select:border" content="solid">
- <meta name="select:border" content="double">
- <meta name="select:border" content="dashed">
- <meta name="select:border" content="ridge">
- <meta name="select:border" content="dotted">
- <meta name="select:border" content="outset">
- <meta name="text:font size" content="18">
- <meta name="text:link divider" content="x">
- <meta name="text:words at bottom font size" content="25">
- <meta name="text:border width" content="2">
- <meta name="text:words at tha bottom" content="bee bee boop make sure this text is kinda long so the fun scrolly things can happen">
- <meta name="text:redirect" content="no slash needed">
- <meta name="text:next text" content=">">
- <meta name="text:back text" content="<">
- <meta name="text:link 1" content="info">
- <meta name="text:link 1 url" content="/">
- <meta name="text:link 2" content="mail">
- <meta name="text:link 2 url" content="/ask">
- <meta name="if:round" content="1">
- <meta name="if:sparkles" content="0">
- <meta name="if:bg cover" content="0">
- <meta name="if:redirect" content="0">
- <meta name="if:captions" content="1">
- <meta name="if:icon glow" content="1">
- <meta name="if:container glow" content="1">
- <meta name="if:link border" content="1">
- <meta name="if:drop shadow" content="1">
- <meta name="if:text glow" content="1">
- <meta name="if:rainbow links" content="0">
- <meta name="if:pastel rainbow links" content="0">
- <meta name="if:link drop shadow" content="0">
- <meta name="if:image blur" content="0">
- <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=Advent+Pro|Bebas+Neue|Bellota|Liu+Jian+Mao+Cao|Orbitron|Pacifico|Playfair+Display|Rajdhani&display=swap" rel="stylesheet">
- <style type="text/css">
- /*
- general text styles, fonts and colours
- */
- body {
- margin:0px;
- {block:iftextglow}
- text-shadow: 0px 0px 3px {color:text glow};
- {/block:iftextglow}
- background:{color:bg};
- background-image:url('{image:bg}');
- background-attachment:fixed;
- background-repeat:repeat;
- background-size:{block:ifbgcover}cover{/block:ifbgcover};
- font-family:{select:font};
- font-size:{text:font size}px;
- color:{color:text};
- }
- 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{
- -webkit-transition-duration: .2s;
- -moz-transition-duration: .2s;
- -o-transition-duration: .2s;
- color:{color:links};
- text-decoration: none;
- transition: .2s ease;
- {block:iflinkborder}
- text-shadow: -1px 0 {color:link border}, 0 1px {color:link border}, 1px 0 {color:link border}, 0 -1px {color:link border};
- {/block:iflinkborder}
- }
- a:hover{
- transition: .2s ease;
- color:{color:link hover};
- {block:ifrainbowlinks}
- -webkit-animation:rainbow 1s infinite;
- -ms-animation:rainbow 1s infinite;
- -o-animation:rainbow 1s infinite;
- animation:rainbow 1s infinite;
- {/block:ifrainbowlinks}
- {block:ifpastelrainbowlinks}
- -webkit-animation:pastelrainbow 1s infinite;
- -ms-animation:pastelrainbow 1s infinite;
- -o-animation:pastelrainbow 1s infinite;
- animation:pastelrainbow 1s infinite;
- {/block:ifpastelrainbowlinks}
- {block:iflinkdropshadow}
- text-shadow: 0 1px 1px {color:link border}, 0 1px 1px {color:link border}, 0 1px 0px {color:link border}, 0px 1px 0px {color:link border}, 0px 2px 0px {color:link border}, 0px 3px 0px {color:link border},0px 4px 0px {color:link border};
- {/block:iflinkdropshadow}
- transition: .2s ease;
- }
- li{
- margin-left:-15px;
- }
- /*
- containers etc
- */
- #wrapper{
- width:600px;
- margin:50px auto;
- }
- #sidebar{
- width:200px;
- height:200px;
- margin:20px auto;
- z-index:100;
- position:relative;
- {block:ificonglow}
- box-shadow: 0px 0px 20px 10px {color:icon drop shadow};
- {/block:ificonglow}
- {block:ifdropshadow}
- box-shadow:5px 15px 3px rgba(0, 0, 0, 0.5);
- {/block:ifdropshadow}
- }
- #sidebar img{
- width:200px;
- height:200px;
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- opacity: 1;
- transition: .5s ease;
- backface-visibility: hidden;
- background-color:white;
- }
- .middle {
- transition: .5s ease;
- opacity: 0;
- position:relative;
- top:-120px;
- text-align:center;
- font-variant: small-caps;
- font-size:35px;
- }
- #sidebar:hover img {
- filter: contrast(130%) brightness(50%);
- }
- #sidebar:hover .middle {
- opacity: 1;
- }
- #content{
- width: 430px;
- height:350px;
- padding: 5px;
- padding-right:10px;
- border: {text:border width}px {select:border} {color:border};
- margin:auto;
- margin-top:-75px;
- background: {color:container bg};
- background-image: url('{image:container bg}');
- overflow-y:scroll;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifcontainerglow}
- box-shadow: 0px 0px 20px 10px {color:container drop shadow};
- {/block:ifcontainerglow}
- {block:ifdropshadow}
- box-shadow:5px 15px 3px rgba(0, 0, 0, 0.5);
- {/block:ifdropshadow}
- }
- .post{
- width:400px;
- margin-bottom:10px;
- padding:5px;
- overflow:hidden;
- background-image:url('{image:post bg}');
- background-color:{color:post bg};
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- {block:ifdropshadow}
- box-shadow:5px 15px 3px rgba(0, 0, 0, 0.5);
- {/block:ifdropshadow}
- }
- #sidebar img, .post img{
- max-width:100%;
- }
- #nav{
- margin:15px;
- }
- .marquee {
- margin-top:10px;
- width: 445px;
- overflow: hidden;
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- font-size:{text:words at bottom font size}px;
- background-image:url('{image:words at bottom bg}');
- background-color:{color:words at bottom bg};
- {block:ifcontainerglow}
- box-shadow: 0px 0px 20px 10px {color:container drop shadow};
- {/block:ifcontainerglow}
- {block:ifdropshadow}
- box-shadow:5px 15px 3px rgba(0, 0, 0, 0.5);
- {/block:ifdropshadow}
- z-index:69;
- }
- .marquee marquee{
- padding:5px;
- transition: .2s ease;
- }
- .marquee marquee a{
- transition: .2s ease;
- }
- /*
- 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;
- background-image:url('{image:ask bg}');
- background-color:white;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- border: {text:border width}px {select:border} {color:border};
- padding:5px;
- box-shadow:0px 1px {color:border};
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px #000;
- }
- #perma {
- text-align: center;
- background-color: {color:permalink bg};
- background-image: url('{image:permalink bg}');
- margin-top:10px;
- padding: 5px;
- margin:5px;
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- #perma img {
- max-width: 350px;
- }
- #goofy{
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- padding:5px;
- background-color: {color:permalink bg};
- background-image: url('{image:post bg}');
- {block:ifdropshadow}
- box-shadow:5px 15px 3px rgba(0, 0, 0, 0.5);
- {/block:ifdropshadow}
- margin-left:5px;
- }
- /*
- post footers - date, tags, via and source
- */
- .post .footer{
- margin:0;
- text-align:left;
- }
- .post img{
- transition:0.3s;
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- .post img:hover{
- transition:0.3s;
- {block:ifimageblur}
- -webkit-filter: blur(2px); /* Safari 6.0 - 9.0 */
- filter: blur(2px);
- {/block:ifimageblur}
- }
- @-webkit-keyframes rainbow {
- 0% {color: #ff0000;}
- 10% {color: #ff8000;}
- 20% {color: #ffff00;}
- 30% {color: #80ff00;}
- 40% {color: #00ff00;}
- 50% {color: #00ff80;}
- 60% {color: #00ffff;}
- 70% {color: #0080ff;}
- 80% {color: #0000ff;}
- 90% {color: #8000ff;}
- 100% {color: #ff0080;}
- }
- @-ms-keyframes rainbow {
- 0% {color: #ff0000;}
- 10% {color: #ff8000;}
- 20% {color: #ffff00;}
- 30% {color: #80ff00;}
- 40% {color: #00ff00;}
- 50% {color: #00ff80;}
- 60% {color: #00ffff;}
- 70% {color: #0080ff;}
- 80% {color: #0000ff;}
- 90% {color: #8000ff;}
- 100% {color: #ff0080;}
- }
- @-o-keyframes rainbow {
- 0% {color: #ff0000;}
- 10% {color: #ff8000;}
- 20% {color: #ffff00;}
- 30% {color: #80ff00;}
- 40% {color: #00ff00;}
- 50% {color: #00ff80;}
- 60% {color: #00ffff;}
- 70% {color: #0080ff;}
- 80% {color: #0000ff;}
- 90% {color: #8000ff;}
- 100% {color: #ff0080;}
- }
- @keyframes rainbow {
- 0% {color: #ff0000;}
- 10% {color: #ff8000;}
- 20% {color: #ffff00;}
- 30% {color: #80ff00;}
- 40% {color: #00ff00;}
- 50% {color: #00ff80;}
- 60% {color: #00ffff;}
- 70% {color: #0080ff;}
- 80% {color: #0000ff;}
- 90% {color: #8000ff;}
- 100% {color: #ff0080;}
- }
- /*PASTEL RAINBOW*/
- @-webkit-keyframes pastelrainbow {
- 0% {color: #ff9494; }
- 16% {color: #ffbb94; }
- 32% {color: #ffe194; }
- 48% {color: #b1f2ba; }
- 64% {color: #b8f5ff; }
- 80% {color: #d8b8ff; }
- 100% {color: #ffb8ee; }
- }
- @-ms-keyframes pastelrainbow {
- 0% {color: #ff9494; }
- 16% {color: #ffbb94; }
- 32% {color: #ffe194; }
- 48% {color: #b1f2ba; }
- 64% {color: #b8f5ff; }
- 80% {color: #d8b8ff; }
- 100% {color: #ffb8ee; }
- }
- @-o-keyframes pastelrainbow {
- 0% {color: #ff9494; }
- 16% {color: #ffbb94; }
- 32% {color: #ffe194; }
- 48% {color: #b1f2ba; }
- 64% {color: #b8f5ff; }
- 80% {color: #d8b8ff; }
- 100% {color: #ffb8ee; }
- }
- @keyframes pastelrainbow {
- 0% {color: #ff9494; }
- 16% {color: #ffbb94; }
- 32% {color: #ffe194; }
- 48% {color: #b1f2ba; }
- 64% {color: #b8f5ff; }
- 80% {color: #d8b8ff; }
- 100% {color: #ffb8ee; }
- }
- .tags {
- max-height:0px;
- line-height:130%;
- font-size:{text:font size};
- 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;}
- /*
- 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;
- }
- ::-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 {
- max-width:300px;
- {block:ifround}
- border-radius: 5px;
- {block:ifround}
- text-align:center;
- padding:4px;
- margin:20px 7px -2px 20px;
- background-color:{color:tooltip};
- color:{color:tooltip text};
- border:{text:border width}px {color:border} {select:border};
- z-index:999999999999999999999999999999999999;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- /** LIGHTBOX MARKUP **/
- .lightbox {
- /** Default lightbox to hidden */
- display: none;
- /** Position and style */
- position: fixed;
- z-index: 999;
- width: 100%;
- height: 100%;
- text-align: center;
- top: 0;
- left: 0;
- background: rgba(106, 148, 148, 0.3);
- transition:0.3s;
- }
- .lightbox img {
- /** Pad the lightbox image */
- width:150px;
- height:150px;
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- }
- .lightbox:target {
- /** Remove default browser outline */
- outline: none;
- /** Unhide lightbox **/
- display: flex;
- transition:0.3s;
- }
- .lightbox table{
- margin:auto;
- background-color: {color:popup bg};
- background-image: url('{image:popup bg}');
- border: {text:border width}px {select:border} {color:border};
- {block:ifround}
- border-radius:5px;
- {/block:ifround}
- text-align:center;
- }
- {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="sidebar">
- <img src="{image:icon}">
- <div class="middle">
- <a href="{text:link 1 url}">{text:link 1}</a>
- {text:link divider}
- <a href="{text:link 2 url}">{text:link 2}</a>
- </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:ifcaptions}
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:ifcaptions}
- {/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">
- {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}
- {AudioPlayerWhite}
- {block:TrackName}{TrackName}<br>{/block:TrackName}
- {block:Artist}{Artist}<br>{/block:Artist}
- {block:Album}{Album}{/block:Album}
- </div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Answer}
- <div class="question"><i><b>{Asker} asked: </b></i>{Question}</div>
- <div class="caption">{Answer}</div>
- {/block:Answer}
- <div id="perma">
- <a href="{Permalink}" title='{TimeAgo}' style="float:left;">{12Hour}:{Minutes}</a> <a href='{ReblogURL}'><img src="{image:permalink}"></a> <a href="{Permalink}" style="float:right;">{NoteCount}%</a><div class='tags'>{block:HasTags}{block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}{/block:HasTags}</div>
- </div>
- </div>
- {/block:Posts}
- <center>
- {block:Pagination}
- <div id="nav">
- {block:PreviousPage}<a id='goofy' href="{PreviousPage}">{text:back text}</a>{/block:PreviousPage}
- {block:NextPage} <a id='goofy' href="{NextPage}">{text:next text}</a> {/block:NextPage}
- </div>
- {/block:Pagination}
- </center>
- </div>
- <center>
- <div class='marquee'>
- <marquee behavior='alternate'>{text:words at tha bottom}</marquee>
- </div>
- </center>
- </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://os2d.tumblr.com/" title="theme by hoyoung" style="left:0;bottom:0;position:fixed;"><img src="https://66.media.tumblr.com/4515d4b64b9624c92c898e9d7a869295/e1e73e83a936d42d-80/s75x75_c1/78a63fffbf4482f804950713924190d64d4904e1.gif"></a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment