Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- theme by eva @ramdons
- dont steal + dont remove credit + dm me if u run into bugs
- ----->
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.14.0/css/all.css" integrity="sha384-HzLeBuhoNPvSl5KYnjx0BT+WB0QEEqLprO+NBkkk5gbc67FTaL7XIGa2w1L0Xbgc" crossorigin="anonymous">
- <link href="https://allfont.net/allfont.css?fonts=comic-sans-ms" rel="stylesheet" type="text/css" />
- <link href="https://allfont.net/allfont.css?fonts=silkscreen-expanded" rel="stylesheet" type="text/css" />
- <link href="https://allfont.net/allfont.css?fonts=00-starmap-truetype" rel="stylesheet" type="text/css" />
- <link href="https://allfont.net/allfont.css?fonts=lombardina-initial-one" rel="stylesheet" type="text/css" />
- <link href="https://allfont.net/allfont.css?fonts=cyrillicgoth" rel="stylesheet" type="text/css" />
- <link href="https://allfont.net/allfont.css?fonts=zx-spectrum" rel="stylesheet" type="text/css" />
- <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">
- <link href="https://fonts.googleapis.com/css2?family=Metal+Mania&family=MuseoModerno:wght@531&family=Press+Start+2P&family=Short+Stack&family=Staatliches&display=swap" rel="stylesheet">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <title>{Title}</title>
- {block:ifredirect}
- {block:IndexPage}<script type="text/javascript">
- var url = location.href;
- if (url == "{BlogURL}") {
- window.location = "{BlogURL}tagged/{text:redirect tag}";
- }
- </script>{/block:IndexPage}
- {/block:ifredirect}
- {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}
- <meta name="image:favicon" content="">
- <meta name="image:icon" content="">
- <meta name="image:floaty" content=""/>
- <meta name="image:custom cursor" content=""/>
- <meta name="image:perma pixel" content=""/>
- <meta name="image:music pixel" content=""/>
- <meta name="image:sidebar move pixel" content=""/>
- <meta name="image:top pixel 1" content=""/>
- <meta name="image:top pixel 2" content=""/>
- <meta name="image:top pixel 3" content=""/>
- <meta name="image:top pixel 4" content=""/>
- <meta name="image:top pixel 5" content=""/>
- <meta name="image:top pixel 6" content=""/>
- <meta name="image:top pixel 7" content=""/>
- <meta name="image:bottom pixel 1" content=""/>
- <meta name="image:bottom pixel 2" content=""/>
- <meta name="image:bottom pixel 3" content=""/>
- <meta name="image:bottom pixel 4" content=""/>
- <meta name="image:bottom pixel 5" content=""/>
- <meta name="image:bottom pixel 6" content=""/>
- <meta name="image:bottom pixel 7" content=""/>
- <meta name="image:bg" content=""/>
- <meta name="image:post bg" content="">
- <meta name="image:inner post bg" content="">
- <meta name="image:sidebar bg" content="">
- <meta name="image:inner sidebar bg" content="">
- <meta name="image:scrollbar thumb" content="">
- <meta name="image:scrollbar bg" content="">
- <meta name="color:sparkles" content="black">
- <meta name="color:bg" content=""/>
- <meta name="color:post bg" content="">
- <meta name="color:inner post bg" content="">
- <meta name="color:sidebar bg" content="">
- <meta name="color:inner sidebar bg" content="">
- <meta name="color:post glow" content="">
- <meta name="color:post hover" content="">
- <meta name="color:post drop shadow" content="">
- <meta name="color:sidebar drop shadow" content="">
- <meta name="color:scrollbar thumb" content="">
- <meta name="color:scrollbar bg" content="">
- <meta name="color:tooltip text" content="">
- <meta name="color:tooltip bg" content="">
- <meta name="color:border" content="">
- <meta name="color:inner border" content="">
- <meta name="color:inner sidebar border" content="">
- <meta name="color:text" content="">
- <meta name="color:text glow" content="">
- <meta name="color:text outline" content="">
- <meta name="color:link" content="">
- <meta name="color:link outline" content="">
- <meta name="color:link glow" content="">
- <meta name="color:link hover" content="">
- <meta name="color:link outline hover" content="">
- <meta name="color:link glow hover" content="">
- <meta name="color:selection" content="#000">
- <meta name="color:selection bg" content="#efefef">
- <meta name="if:cover bg" content="">
- <meta name="if:cover sidebar bg" content="">
- <meta name="if:icon tooltip" content="" >
- <meta name="if:flip position" content="">
- <meta name="if:flip sidebar" content="">
- <meta name="if:fancy sidebar shadow" content="">
- <meta name="if:search" content="">
- <meta name="if:top pixels" content="">
- <meta name="if:top pixel 4" content="">
- <meta name="if:top pixel 5" content="">
- <meta name="if:top pixel 6" content="">
- <meta name="if:top pixel 7" content="">
- <meta name="if:bottom pixels" content="">
- <meta name="if:bottom pixel 4" content="">
- <meta name="if:bottom pixel 5" content="">
- <meta name="if:bottom pixel 6" content="">
- <meta name="if:bottom pixel 7" content="">
- <meta name="if:text glow" content="">
- <meta name="if:text outline" content="">
- <meta name="if:link glow" content="">
- <meta name="if:link outline" content="">
- <meta name="if:link drop" content="">
- <meta name="if:link blur" content="">
- <meta name="if:link strikethrough" content="">
- <meta name="if:link italic" content="">
- <meta name="if:link bold" content="">
- <meta name="if:rainbow links" content="">
- <meta name="if:pastel rainbow links" content="">
- <meta name="if:inner post" content="" >
- <meta name="if:inner description" content="" >
- <meta name="if:post glow" content="" >
- <meta name="if:post drop shadow" content="" >
- <meta name="if:post hover" content="0">
- <meta name="if:rainbow border" content="" >
- <meta name="if:rounded" content="" >
- <meta name="if:captions" content="" >
- <meta name="if:tags" content="" >
- <meta name="if:tags 2" content="" >
- <meta name="if:footer" content="" >
- <meta name="if:footer 2" content="" >
- <meta name="if:redirect" content="" >
- <meta name="if:custom cursor" content="">
- <meta name="if:sparkles" content="">
- <meta name="if:fancy scrollbar" content="">
- <meta name="if:shake image" content="" >
- <meta name="if:image blur on hover" content="" >
- <meta name="select:post size" content="250">
- <meta name="select:post size" content="325">
- <meta name="select:post size" content="400">
- <meta name="select:post size" content="450">
- <meta name="select:post size" content="500">
- <meta name="select:description alignment" content="left">
- <meta name="select:description alignment" content="center">
- <meta name="select:description alignment" content="right">
- <meta name="select:font" content="arial">
- <meta name="select:font" content="ms pgothic">
- <meta name="select:font" content="times">
- <meta name="select:font" content="Fantasy">
- <meta name="select:font" content="Monospace">
- <meta name="select:font" content="Verdana">
- <meta name="select:font" content="Courier New">
- <meta name="select:font" content="Calibri">
- <meta name="select:font" content="Cambria">
- <meta name="select:font" content="Comic Sans MS">
- <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:font" content="Metal Mania">
- <meta name="select:font" content="MuseoModerno">
- <meta name="select:font" content="Staatliches">
- <meta name="select:font" content="Silkscreen Expanded">
- <meta name="select:font" content="'00 Starmap Truetype'">
- <meta name="select:font" content="Lombardina Initial One">
- <meta name="select:font" content="CyrillicGoth">
- <meta name="select:font" content="ZX Spectrum">
- <meta name="select:border" content="solid">
- <meta name="select:border" content="dotted">
- <meta name="select:border" content="dashed">
- <meta name="select:border" content="outset">
- <meta name="select:border" content="ridge">
- <meta name="select:border" content="double">
- <meta name="select:border width" content="0">
- <meta name="select:border width" content="1">
- <meta name="select:border width" content="2">
- <meta name="select:border width" content="3">
- <meta name="select:border width" content="4">
- <meta name="select:border width" content="5">
- <meta name="select:border width" content="6">
- <meta name="select:inner border" content="solid">
- <meta name="select:inner border" content="dotted">
- <meta name="select:inner border" content="dashed">
- <meta name="select:inner border" content="outset">
- <meta name="select:inner border" content="ridge">
- <meta name="select:inner border" content="double">
- <meta name="select:inner border width" content="0">
- <meta name="select:inner border width" content="1">
- <meta name="select:inner border width" content="2">
- <meta name="select:inner border width" content="3">
- <meta name="select:inner border width" content="4">
- <meta name="select:inner border width" content="5">
- <meta name="select:inner border width" content="6">
- <meta name="select:inner sidebar border" content="solid">
- <meta name="select:inner sidebar border" content="dotted">
- <meta name="select:inner sidebar border" content="dashed">
- <meta name="select:inner sidebar border" content="outset">
- <meta name="select:inner sidebar border" content="ridge">
- <meta name="select:inner sidebar border" content="double">
- <meta name="select:inner sidebar border width" content="0">
- <meta name="select:inner sidebar border width" content="1">
- <meta name="select:inner sidebar border width" content="2">
- <meta name="select:inner sidebar border width" content="3">
- <meta name="select:inner sidebar border width" content="4">
- <meta name="select:inner sidebar border width" content="5">
- <meta name="select:inner sidebar border width" content="6">
- <meta name="text:icon hover" content="hi hi ^_^">
- <meta name="text:note text" content="%">
- <meta name="text:sidebar move pixel rotation" content="0deg">
- <meta name="text:description text" content="pixels and search will show up here ; turn on top/bottom pixels to see them along with the search">
- <meta name="text:music url" content="">
- <meta name="text:song info" content="let me show youhow to scratch it">
- <meta name="text:song marquee speed" content="5">
- <meta name="text:search text" content=" :zany_face:">
- <meta name="text:search button text" content="GO!!">
- <meta name="text:redirect tag" content="">
- <meta name="text:font size" content="20">
- <meta name="text:description font size" content="20">
- <meta name="text:sidebar margin" content="100">
- <meta name="text:floaty width" content="auto">
- <meta name="text:floaty bottom margin" content="0">
- <meta name="text:floaty right margin" content="0">
- <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>
- <style type="text/css">
- /*Scrollbar and Selection*/
- ::selection {
- background: {color:selection bg};
- color: {color:selection};
- }
- ::-moz-selection {
- background: {color:selection bg};
- color: {color:selection};
- }
- {block:iffancyscrollbar}
- ::-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;
- }
- {/block:iffancyscrollbar}
- {block:ifnotfancyscrollbar}
- ::-webkit-scrollbar {
- width: 16px;
- height: 10px;
- }
- ::-webkit-scrollbar-thumb {
- background:{color:scrollbar thumb};
- background-image: url('{image:scrollbar thumb}');
- border: 1px outset {color:scrollbar thumb};
- {block:ifrounded}
- border-radius:5px;
- {/block:ifrounded}
- }
- ::-webkit-scrollbar-track {
- background:{color:scrollbar bg};
- background-image: url('{image:scrollbar bg}');
- }
- ::-webkit-scrollbar-button:vertical:increment {
- background:{color:scrollbar thumb};
- background-image: url('{image:scrollbar thumb}');
- border: 1px outset {color:scrollbar thumb};
- width: 14px;
- height: 16px;
- }
- ::-webkit-scrollbar-button:vertical:decrement {
- background:{color:scrollbar thumb};
- background-image: url('{image:scrollbar thumb}');
- border: 1px outset {color:scrollbar thumb};
- width: 14px;
- height: 16px;
- }
- {/block:ifnotfancyscrollbar}
- {block:ifrounded}
- .question span::-webkit-scrollbar-button:vertical:increment {
- border-bottom-right-radius:5px;
- }
- .question span::-webkit-scrollbar-button:vertical:decrement {
- border-top-right-radius:5px;
- }
- {/block:ifrounded}
- {block:ifrounded}
- {block:ifflipsidebar}
- #desc::-webkit-scrollbar-button:vertical:increment {
- border-bottom-right-radius:5px;
- }
- #desc::-webkit-scrollbar-button:vertical:decrement {
- border-top-right-radius:5px;
- }
- {/block:ifflipsidebar}
- {/block:ifrounded}
- /*
- general text styles, fonts and colours
- */
- *{
- padding:0;
- margin:0;
- }
- body {
- padding:0px;
- margin:0px;
- background:{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}
- overflow-x:hidden;
- font-family:{select:font}, arial;
- font-size:{text:font size}px;
- line-height:140%;
- color:{color:text};
- {block:iftextglow}
- text-shadow: 0 0 2px {color:text glow};
- {/block:iftextglow}
- {block:iftextoutline}
- text-shadow: -1px 0 {color:text outline}, 0 1px {color:text outline}, 1px 0 {color:text outline}, 0 -1px {color:text outline}{block:iftextglow}, 0 0 3px {color:text glow}, 0 0 3px {color:text glow} {/block:iftextglow};
- {/block:iftextoutline}
- {block:ifcustomcursor}
- cursor:url({image:custom cursor}), auto;
- {/block:ifcustomcursor}
- }
- p{
- margin: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;
- }
- li{
- margin-left:-15px;
- }
- img{
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- img:hover {
- {block:ifimagebluronhover}
- filter:blur(1px);
- {/block:ifimagebluronhover}
- {block:ifshakeimage}
- animation: shake 0.5s;
- animation-iteration-count: infinite;
- {/block:ifshakeimage}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- /*Links styling*/
- a{
- color:{color:link};
- text-decoration:none;
- {block:iflinkglow}
- text-shadow:0 0 2px {color:link glow}, 0 0 2px {color:link glow};
- {/block:iflinkglow}
- {block:iflinkoutline}
- text-shadow: -1px 0 {color:link outline}, 0 1px {color:link outline}, 1px 0 {color:link outline}, 0 -1px {color:link outline}{block:iflinkglow}, 0 0 3px {color:link glow}, 0 0 3px {color:link glow} {/block:iflinkglow};
- {/block:iflinkoutline}
- {block:iflinkbold}
- font-weight:bold;
- {/block:iflinkbold}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- a:hover{
- color:{color:link hover};
- {block:iflinkstrikethrough}
- text-decoration: line-through;
- {/block:iflinkstrikethrough}
- {block:iflinkitalic}
- font-style: italic;
- {/block:iflinkitalic}
- {block:iflinkblur}
- filter: blur(1px);
- {/block:iflinkblur}
- {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:iflinkglow}
- text-shadow:0 0 2px {color:link glow hover}, 0 0 2px {color:link glow hover};
- {/block:iflinkglow}
- {block:iflinkoutline}
- text-shadow: -1px 0 {color:link outline hover}, 0 1px {color:link outline hover}, 1px 0 {color:link outline hover}, 0 -1px {color:link outline hover}{block:iflinkglow}, 0 0 3px {color:link glow hover}, 0 0 3px {color:link glow hover} {/block:iflinkglow};
- {/block:iflinkoutline}
- {block:iflinkblur}
- filter: blur(1px);
- {/block:iflinkblur}
- {/block:iflinkglow}
- {block:iflinkdrop}
- text-shadow: 0 1px 1px {color:link outline hover}, 0 1px 1px {color:link outline hover}, 0 1px 0px{color:link outline hover}, 0px 1px 0px {color:link outline hover}, 0px 2px 0px {color:link outline hover}, 0px 3px 0px {color:link outline hover},0px 4px 0px {color:link outline hover};
- {/block:iflinkdrop}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- cursor:help;
- {block:ifcustomcursor}
- cursor:url({image:custom cursor}), auto;
- {/block:ifcustomcursor}
- }
- /*Tumblr Controls*/
- /*
- Wrapper and Content
- */
- #wrapper{
- width: 800px;
- box-sizing: border-box;
- margin:25px auto;
- }
- #content{
- padding:10px;
- margin:auto;
- text-align:center;
- box-sizing: border-box;
- overflow-x:hidden;
- }
- /* Sidebar*/
- #sidebar{
- position:fixed;
- width:450px;
- z-index:25;
- right:{text:sidebar margin}px;
- top:200px;
- display:grid;
- grid-template-columns:50% 50%;
- align-items:center;
- {block:ifsearch}
- align-items:start;
- {/block:ifsearch}
- background:{color:sidebar bg};
- background-image: url('{image:sidebar bg}');
- {block:ifcoversidebarbg}
- background-size:cover;
- {/block:ifcoversidebarbg}
- border: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 10px;
- {/block:ifrounded}
- {block:ifflipposition}
- left:{text:sidebar margin}px;
- {/block:ifflipposition}
- {block:iffancysidebarshadow}
- box-shadow: 10px 10px 10px {color:sidebar drop shadow}8a, -10px -10px 10px {color:sidebar drop shadow}8a;
- animation: meow 2s alternate infinite;
- {/block:iffancysidebarshadow}
- }
- #desc{
- max-height:calc(225px - {select:border width}px);
- overflow:auto;
- padding:0 10px;
- font-size:{text:description font size}px;
- text-align:{select:description alignment};
- line-height:140%;
- {block:ifflipsidebar}
- grid-column:2/3;
- {/block:ifflipsidebar}
- {block:ifsearch}
- max-height: calc(180px + {select:border width}px*2);
- border-bottom: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-bottom: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {/block:ifsearch}
- }
- #innerdesc{
- background:{color:inner sidebar bg};
- background-image: url('{image:inner sidebar bg}');
- padding: 0 5px;
- margin: 10px 0;
- border: {select:inner sidebar border width}px {select:inner sidebar border} {color:inner sidebar border};
- {block:ifrainbowborder}
- border: {select:inner sidebar border width}px {select:inner sidebar border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- }
- /*Search*/
- #googoo{
- margin:5px;
- z-index: 49875;
- background:white;
- border: 1px solid {color:inner sidebar border};
- {block:ifrainbowborder}
- border-bottom: 1px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius:5px;
- {/block:ifrounded}
- grid-row: 1/2;
- grid-column: 1/2;
- {block:ifflipsidebar}
- grid-column:2/3;
- {/block:ifflipsidebar}
- position: absolute;
- bottom: 0;
- }
- #googoo form{
- height:100%;
- display: grid;
- grid-template-columns: auto auto;
- }
- #googoo .meow{
- border-radius: 0;
- border: none;
- border-left: 1px solid {color:inner sidebar border};
- padding:5px;
- font-family:{select:font}, arial;
- font-size:20px;
- {block:ifrounded}
- border-top-right-radius:5px;
- border-bottom-right-radius:5px;
- {/block:ifrounded}
- }
- input.search{
- width: 100%;
- box-sizing: border-box;
- border: none;
- height:100%;
- font-family:{select:font}, arial;
- font-size:20px;
- {block:ifrounded}
- border-top-left-radius:5px;
- border-bottom-left-radius:5px;
- {/block:ifrounded}
- }
- input.search:focus{
- outline:none;
- }
- #icon{
- border-left: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-left: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifflipsidebar}
- grid-column:1/2;
- grid-row:1/2;
- border:none;
- border-right: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-right: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {/block:ifflipsidebar}
- }
- #icon a img{
- max-width:100%;
- max-height:100%;
- display:block;
- margin:auto;
- {block:ifrounded}
- border-top-right-radius:5px;
- {/block:ifrounded}
- {block:ifflipsidebar}
- {block:ifrounded}
- border-top-right-radius:0;
- border-top-left-radius:5px;
- {/block:ifrounded}
- {/block:ifflipsidebar}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- .pixels{
- display: flex;
- align-items: center;
- justify-content: space-around;
- margin:10px 0;
- }
- .pixels img{
- display: inline-block;
- vertical-align: middle;
- margin-bottom: 0px;
- }
- #bottom{
- grid-column: 1/3;
- border-top: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-top: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- padding: 10px;
- font-size:{text:description font size}px;
- line-height:140%;
- display:flex;
- align-items:center;
- justify-content: space-between;
- }
- /*music player*/
- #musicplayer{
- display:grid;
- grid-template-columns:20px auto;
- align-items:center;
- width: 100%;
- font-size:{text:description font size}px;
- line-height:140%;
- background:{color:inner sidebar bg};
- background-image: url('{image:inner sidebar bg}');
- border: {select:inner sidebar border width}px {select:inner sidebar border} {color:inner sidebar border};
- {block:ifrainbowborder}
- border: {select:inner sidebar border width}px {select:inner sidebar border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- }
- #musictitle{
- overflow: hidden;
- white-space: nowrap;
- display:inline-block;
- width: calc(100% - 10px - {select:inner sidebar border width}px);
- margin-left: calc(10px + {select:inner sidebar border width}px);
- }
- #musicpixel{
- width:100%;
- padding:5px;
- position:relative;
- background:{color:inner sidebar bg};
- background-image: url('{image:inner sidebar bg}');
- border-right: {select:inner sidebar border width}px {select:inner sidebar border} {color:inner sidebar border};
- {block:ifrainbowborder}
- border-right: {select:inner sidebar border width}px {select:inner sidebar border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-top-left-radius: 5px;
- border-bottom-left-radius: 5px;
- {/block:ifrounded}
- }
- .overlay {
- opacity:0;
- position:absolute;
- top:0;
- left:0;
- text-align:center;
- width:100%;
- height:100%;
- transition:0.3s ease;
- background:{color:inner sidebar bg};
- background-image: url('{image:inner sidebar bg}');
- {block:ifrounded}
- border-top-left-radius: 5px;
- border-bottom-left-radius: 5px;
- {/block:ifrounded}
- }
- #musicplayer:hover .overlay {
- opacity: 1;
- transition:0.3s ease;
- }
- .playpause{
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .playpause:hover{
- cursor:help;
- }
- #musicpixel img{
- display:block;
- }
- .marquee{
- display: inline-block;
- padding-left: 100%;
- animation: marquee {text:song marquee speed}s linear infinite;
- }
- @keyframes marquee{
- 0% {
- transform: translate(0, 0);
- }
- 100% {
- transform: translate(-100%, 0);
- }
- }
- #weee{
- position: absolute;
- right: -10px;
- top: -10px;
- transform:rotate({text:sidebar move pixel rotation});
- }
- #weee:hover{
- cursor:move;
- }
- /*Post Styling*/
- .post{
- box-sizing:border-box;
- padding:10px 10px 0 10px;
- margin: 25px auto;
- overflow:hidden;
- z-index:2;
- text-align:left;
- width:{select:post size}px;
- background:{color:post bg};
- background-image: url('{image:post bg}');
- border: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 10px;
- {/block:ifrounded}
- {block:ifpostdropshadow}
- box-shadow: 10px 10px 5px {color:post drop shadow}6b;
- {/block:ifpostdropshadow}
- {block:ifpostglow}
- box-shadow: 0 0 5px {color:post glow}
- {block:ifpostdropshadow}, 10px 10px 5px {color:post drop shadow}6b{/block:ifpostdropshadow};
- {/block:ifpostglow}
- {block:iffooter}
- {block:ifnotfooter2}
- padding-top:0;
- {/block:ifnotfooter2}
- {/block:iffooter}
- {block:ifnotinnerpost}
- padding:10px;
- {/block:ifnotinnerpost}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- -webkit-animation: fadeIn 0.3s;
- animation: fadeIn 0.3s;
- }
- .post:hover{
- {block:ifposthover}
- box-shadow:0 0 5px {color:post hover}{block:ifpostdropshadow}, 10px 10px 5px {color:post drop shadow}6b{/block:ifpostdropshadow};;
- {/block:ifposthover}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- .post img{
- max-width:100%;
- }
- #content .post:first-of-type{
- margin-top:0;
- }
- #content .post:last-of-type{
- margin-bottom:0;
- }
- .insides{
- padding-top:1px;
- {block:ifinnerpost}
- box-sizing:border-box;
- background:{color:inner post bg};
- background-image: url('{image:inner post bg}');
- padding:10px;
- margin-bottom:10px;
- border: {select:inner border width}px {select:inner border} {color:inner border};
- {block:ifrainbowborder}
- border: {select:inner border width}px {select:inner border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- {/block:ifinnerpost}
- }
- /*
- content in the body of the posts - quotes, asks, etc
- "media" contains photos, photosets, videos, audio posts
- */
- h2{
- margin:10px 0;
- }
- .media{
- box-sizing:border-box;
- margin:0 0 10px 0;
- {block:ifnotinnerpost}
- margin: 0;
- {/block:ifnotinnerpost}
- }
- .media img{
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- display:block;
- }
- .tmblr-full img{
- height:auto;
- }
- .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;
- border: 1px outset gray;
- background-image: url(https://i.imgur.com/IGXGYKz.png);
- display: grid;
- grid-template-columns: 100px auto;
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- color:black;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px #000;
- }
- /*Photoset*/
- .photoset{
- {block:ifinnerpost}
- margin-bottom:10px;
- {/block:ifinnerpost}
- }
- .photo-row {
- padding:0.2em 0;
- display:flex;
- }
- .photo-row:first-child {
- padding-top:0;
- }
- .photo-row:last-child {
- padding-bottom:0;
- }
- .image-container {
- cursor:help;
- {block:ifcustomcursor}
- cursor:url({image:custom cursor}), auto;
- {/block:ifcustomcursor}
- padding:0 0.2em;
- flex-grow:1;
- }
- .image-container:first-child {
- padding-left:0;
- }
- .image-container:last-child {
- padding-right:0;
- }
- .image {
- width:100%;
- height:100%;
- display:block;
- {block:ifrounded}
- border-radius:5px;
- {/block:ifrounded}
- object-fit:cover; /* technically not needed, but helps when browsers glitch */
- }
- .tumblr_video_container, .tumblr_video_container iframe{
- max-width:100%;
- }
- /*
- post footers - date, tags, via and source
- */
- .post .footer{
- margin:0;
- text-align:left;
- }
- .caption{
- margin-top:10px;
- }
- #footer{
- {block:iffooter2}
- text-align:center;
- display: grid;
- grid-template-columns: 33% auto 33%;
- align-items: center;
- margin-top:10px;
- {block:ifnotinnerpost}
- margin-top:10px;
- {/block:ifnotinnerpost}
- {/block:iffooter2}
- }
- #footer a img{
- margin-bottom:0px;
- {block:iffooter2}
- margin-bottom:-3px;
- {/block:iffooter2}
- }
- /*
- post notes
- */
- ol.notes{
- box-sizing:border-box;
- padding: 10px;
- margin: 0;
- margin-bottom: 10px;
- {block:ifnotinnerpost}
- padding: 0;
- margin: 10px 0;
- {/block:ifnotinnerpost}
- list-style-type: none;
- max-height: 300px;
- overflow: auto;
- {block:ifinnerpost}
- background:{color:inner post bg};
- background-image: url('{image:inner post bg}');
- border: {select:inner border width}px {select:inner border} {color:inner border};
- {block:ifrainbowborder}
- border: {select:inner border width}px {select:inner border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- {/block:ifinnerpost}
- }
- ol.notes li.note img{
- width: 1em;
- height: 1em;
- margin: 5px;
- margin-bottom: -4px;
- }
- ol.notes li.note{
- margin:0px;
- }
- /*AUDIO*/
- .playbutton {
- position:relative;
- margin-top:45px;
- margin-left:44px;
- z-index:9;
- width:33px;
- height:30px;
- overflow:hidden;
- }
- .albumart{
- padding-bottom:-10px;
- }
- .albumart img {
- background:url(https://i.imgur.com/IGXGYKz.png);
- position:relative;
- margin-top:-75px;
- margin-left:0px
- height:120px;
- width:120px;
- border: 1px outset #bdbdbd;
- {block:ifrounded}
- -webkit-border-top-left-radius: 5px;
- -webkit-border-bottom-left-radius: 5px;
- -moz-border-radius-topleft: 5px;
- -moz-border-radius-bottomleft: 5px;
- border-top-left-radius: 5px;
- border-bottom-left-radius: 5px;
- {/block:ifrounded}
- }
- .trackinfo {
- border: 1px outset #bdbdbd;
- background:#000;
- background:url(https://i.imgur.com/IGXGYKz.png);
- color:black;
- position:relative;
- margin-left:120px;
- height:120px;
- margin-top:calc(-120px - 0.65em);
- font-size:15px;
- line-height:240%;
- overflow:auto;
- {block:ifrounded}
- -webkit-border-top-right-radius: 5px;
- -webkit-border-bottom-right-radius: 5px;
- -moz-border-radius-topright: 5px;
- -moz-border-radius-bottomright: 5px;
- border-top-right-radius: 5px;
- border-bottom-right-radius: 5px;
- {/block:ifrounded}
- }
- .trackname {
- position:relative;
- padding-top:10px;
- text-align:center;
- text-transform:uppercase;
- }
- .artist {
- text-align:center;
- text-transform:uppercase;
- font-style: italic;
- }
- /*tags*/
- .tags {
- line-height:140%;
- text-align:left;
- max-height:0px;
- opacity:0;
- {block:ifinnerpost}
- background:{color:inner post bg};
- background-image: url('{image:inner post bg}');
- border: {select:inner border width}px {select:inner border} {color:inner border};
- {block:ifrainbowborder}
- border: {select:inner border width}px {select:inner border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- {/block:ifinnerpost}
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- }
- .post:hover .tags{
- padding:10px;
- margin-bottom:10px;
- max-height:300px;
- opacity:1;
- {block:ifnotinnerpost}
- padding:0;
- padding-top:10px;
- margin:0;
- {/block:ifnotinnerpost}
- overflow:auto;
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- }
- .tags2{
- text-align:center;
- margin-top: 10px;
- padding-top: 10px;
- border-top: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-top: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {block:ifinnerpost}
- border-top: {select:inner border width}px {select:inner border} {color:inner border};
- {block:ifrainbowborder}
- border-top: {select:inner border width}px {select:inner border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder}
- {/block:ifinnerpost}
- }
- /*Animations*/
- @keyframes shake {
- 0% { transform: translate(1px, 1px) rotate(0deg); }
- 10% { transform: translate(-1px, -2px) rotate(-1deg); }
- 20% { transform: translate(-3px, 0px) rotate(1deg); }
- 30% { transform: translate(3px, 2px) rotate(0deg); }
- 40% { transform: translate(1px, -1px) rotate(1deg); }
- 50% { transform: translate(-1px, 2px) rotate(-1deg); }
- 60% { transform: translate(-3px, 1px) rotate(0deg); }
- 70% { transform: translate(3px, 1px) rotate(-1deg); }
- 80% { transform: translate(-1px, -1px) rotate(1deg); }
- 90% { transform: translate(1px, 2px) rotate(0deg); }
- 100% { transform: translate(1px, -2px) rotate(-1deg); }
- }
- @-webkit-keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @-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; }
- }
- @keyframes meow{
- 0%{
- box-shadow:10px 10px 10px {color:sidebar drop shadow}8a, -10px -10px 10px {color:sidebar drop shadow}8a;
- }
- 25%{
- box-shadow:-10px 10px 10px {color:sidebar drop shadow}8a, 10px -10px 10px {color:sidebar drop shadow}8a;
- }
- 50%{
- box-shadow:10px -10px 10px {color:sidebar drop shadow}8a, -10px 10px 10px {color:sidebar drop shadow}8a;
- }
- 100%{
- box-shadow:-10px -10px 10px {color:sidebar drop shadow}8a, 10px 10px 10px {color:sidebar drop shadow}8a;
- }
- }
- /*custom tooltip*/
- #s-m-t-tooltip {
- z-index: 938458935;
- background: {color:tooltip bg}a3;
- color: {color:tooltip text};
- font-size: {text:font size}px;
- line-height: 140%;
- text-align:center;
- font-family:{text:font};
- letter-spacing: 1px;
- text-transform: normal;
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- max-width: 300px;
- word-wrap: normal;
- padding: 5px;
- display: block;
- margin:10px;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
- <a title='ramdons' href='https://ramdons.tumblr.com' style='filter:none;'><img style='position:fixed; bottom:5px; left:5px; width:20px; filter:none;' src='https://cdn.discordapp.com/attachments/392883996952100887/734223693206782025/723745494513221652.png'></a>
- <img style='position:fixed; bottom:{text:floaty bottom margin}px; width:{text:floaty width}px; z-index:-1; right:{text:floaty right margin}px;' src='{image:floaty}'>
- <div id="wrapper">
- <!--Sidebar Start-->
- <div id='sidebar'>
- <img id='weee' src='{image:sidebar move pixel}'>
- <!--Description-->
- <div id='desc'>
- {block:ifinnerdescription}
- <div id='innerdesc'>
- {block:iftoppixels}
- <div class='pixels tpixels'>
- <img src='{image:top pixel 1}'>
- <img src='{image:top pixel 2}'>
- <img src='{image:top pixel 3}'>
- {block:iftoppixel4}
- <img src='{image:top pixel 4}'>
- {/block:iftoppixel4}
- {block:iftoppixel5}
- <img src='{image:top pixel 5}'>
- {/block:iftoppixel5}
- {block:iftoppixel6}
- <img src='{image:top pixel 6}'>
- {/block:iftoppixel6}
- {block:iftoppixel7}
- <img src='{image:top pixel 7}'>
- {/block:iftoppixel7}
- </div>
- {/block:iftoppixels}
- <div style='margin:10px 0;'>{text:description text}</div>
- {block:ifbottompixels}
- <div class='pixels bpixels'>
- <img src='{image:bottom pixel 1}'>
- <img src='{image:bottom pixel 2}'>
- <img src='{image:bottom pixel 3}'>
- {block:ifbottompixel4}
- <img src='{image:bottom pixel 4}'>
- {/block:ifbottompixel4}
- {block:ifbottompixel5}
- <img src='{image:bottom pixel 5}'>
- {/block:ifbottompixel5}
- {block:ifbottompixel6}
- <img src='{image:bottom pixel 6}'>
- {/block:ifbottompixel6}
- {block:ifbottompixel7}
- <img src='{image:bottom pixel 7}'>
- {/block:ifbottompixel7}
- </div>
- {/block:ifbottompixels}
- </div>
- {/block:ifinnerdescription}
- {block:ifnotinnerdescription}
- {block:iftoppixels}
- <div class='pixels tpixels'>
- <img src='{image:top pixel 1}'>
- <img src='{image:top pixel 2}'>
- <img src='{image:top pixel 3}'>
- {block:iftoppixel4}
- <img src='{image:top pixel 4}'>
- {/block:iftoppixel4}
- {block:iftoppixel5}
- <img src='{image:top pixel 5}'>
- {/block:iftoppixel5}
- {block:iftoppixel6}
- <img src='{image:top pixel 6}'>
- {/block:iftoppixel6}
- {block:iftoppixel7}
- <img src='{image:top pixel 7}'>
- {/block:iftoppixel7}
- </div>
- {/block:iftoppixels}
- <div style='margin:10px 0;'>{text:description text}</div>
- {block:ifbottompixels}
- <div class='pixels bpixels'>
- <img src='{image:bottom pixel 1}'>
- <img src='{image:bottom pixel 2}'>
- <img src='{image:bottom pixel 3}'>
- {block:ifbottompixel4}
- <img src='{image:bottom pixel 4}'>
- {/block:ifbottompixel4}
- {block:ifbottompixel5}
- <img src='{image:bottom pixel 5}'>
- {/block:ifbottompixel5}
- {block:ifbottompixel6}
- <img src='{image:bottom pixel 6}'>
- {/block:ifbottompixel6}
- {block:ifbottompixel7}
- <img src='{image:bottom pixel 7}'>
- {/block:ifbottompixel7}
- </div>
- {/block:ifbottompixels}
- {/block:ifnotinnerdescription}
- </div>
- <!--Description End-->
- <!--Search-->
- {block:ifsearch}
- <div id='googoo'>
- <form action="/search" method="get" class="sfm" name="theform">
- <input class="search" type="text" placeholder="{text:search text}" name="q">
- <input type="submit" class='meow' value="{text:search button text}"/>
- </form>
- </div>
- {/block:ifsearch}
- <!--Search end-->
- <!--Icon-->
- <div id='icon'>
- {block:ifnoticontooltip}
- <a href='/'><img src="{image:icon}"></a>
- {/block:ifnoticontooltip}
- {block:ificontooltip}
- <a href='/' title='{text:icon hover}'><img src="{image:icon}"></a>
- {/block:ificontooltip}
- </div>
- <!--End Icon-->
- <!--Bottom-->
- <div id='bottom'>
- {block:Pagination}
- {block:PreviousPage}
- <a href='{PreviousPage}' style='margin-right:10px;'><i class="fas fa-arrow-left"></i></a>
- {/block:PreviousPage}
- {/block:Pagination}
- <!--Music-->
- <div id='musicplayer'>
- <div id='musicpixel'>
- <img src='{image:music pixel}'>
- <div class='overlay'>
- <div class='playpause'><i class="fas fa-play"></i></div>
- </div>
- </div>
- <div id='musictitle'>
- <span class='marquee'>{text:song info}</span>
- </div>
- </div>
- <audio id='musicsrc' loop src='{text:music url}'></audio>
- <!--Music end-->
- {block:Pagination}
- {block:NextPage}
- <a href='{NextPage}' style='margin-left:10px;'><i class="fas fa-arrow-right"></i></a>
- {/block:NextPage}
- {/block:Pagination}
- </div>
- <!--Bottom End-->
- </div>
- <!--Sidebar End-->
- <div id="content">
- {block:Posts}
- <!--Posts-->
- <div class="post">
- <!--Footer 1-->
- {block:ifnotfooter2}
- {block:iffooter}
- <div id='footer' style='font-size:15px; margin-bottom: 10px; {block:ifnotinnerpost}margin-top:-10px;{/block:ifnotinnerpost} border-bottom: {select:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-bottom: {select:border width}px {select:border} transparent;
- border-image: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
- border-image-slice: 1;
- {/block:ifrainbowborder} '>
- <a><img height='15' style='margin-bottom: -1px;' src='{image:perma pixel}'></a>
- <a href="{Permalink}" style='text-transform:uppercase;'>C://{name}/{PostType}</a>
- <div style='display:inline; float:right;'>
- <a href='{ReblogURL}'><img src='https://audial.ist/capture/load/u7svTEsfgTpAmiCD3YaouAOl.png'> </a>
- <a href='{ReblogURL}'><img src='https://audial.ist/capture/load/TjkYvfNbXjYNGjfp0KHCEdgk.png'> </a>
- <a href='{ReblogURL}'><img src='https://audial.ist/capture/load/p6UTmj7FootpcWgaTj4OLqzm.png'></a>
- </div>
- </div>
- {/block:iffooter}
- {/block:ifnotfooter2}
- <!--End Footer 1-->
- <!--General Post Formatting-->
- {block:Text}
- <div class='insides'>
- {block:Title}
- <div class="title" style='font-size:1.25em;'>
- <b>{Title}</b>
- </div>
- {/block:Title}
- {Body}
- </div>
- {/block:Text}
- {block:Photo}
- <div class="media">
- {LinkOpenTag}
- <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
- {LinkCloseTag}
- {block:ifcaptions}
- {block:Caption}
- <div class="caption insides">
- {Caption}
- </div>
- {/block:Caption}
- {/block:ifcaptions}
- </div>
- {/block:Photo}
- {block:Photoset}
- <div class="photoset" data-layout="{PhotosetLayout}">
- {block:Photos}
- <div class="image-container"
- data-width="{PhotoWidth-HighRes}"
- data-height="{PhotoHeight-HighRes}"
- data-lowres="{PhotoURL-500}"
- data-highres="{PhotoURL-HighRes}">
- <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" class="image"/>
- </div>
- {/block:Photos}
- </div><!-- photoset -->
- {block:Caption}
- {block:ifcaptions}
- {block:Caption}
- <div class="caption insides">
- {Caption}
- </div>
- {/block:Caption}
- {/block:ifcaptions}
- {/block:Caption}
- {/block:Photoset}
- {block:Quote}
- <div class='insides'>
- <div class="quote">"{Quote}"</div>
- {block:Source}
- <div class="quotesource">{Source}</div>
- {/block:Source}
- </div>
- {/block:Quote}
- {block:Link}
- <div class='insides'>
- <div class="title">
- <a href="{URL}">{Name}</a>
- </div>
- {block:Description}
- <div class="description">{Description}</div>
- {/block:Description}
- </div>
- {/block:Link}
- {block:Chat}
- <div class='insides'>
- {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}
- </div>
- {/block:Chat}
- {block:Video}
- <div class="media">{Video-400}</div>
- {block:Caption}
- <div class="caption insides">{Caption}</div>
- {/block:Caption}
- {/block:Video}
- {block:Audio}
- <div class='insides' style='display:block'>
- {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>
- {block:Caption}{Caption}{/block:Caption}
- {/block:AudioPlayer}
- </div>
- {/block:Audio}
- {block:Answer}
- <div class='insides'>
- <div class="question">
- <img style='{block:ifrounded}border-top-left-radius: 5px; {/block:ifrounded}grid-column: 1/2;' src='{AskerPortraitURL-128}'>
- <span style='grid-column: 1/2; text-align: center; color: white !important;font-size:15px; line-height: 140%; margin-top: -1.4em; background: #0000006b; overflow:auto;'>{Asker}</span>
- <span style='grid-column: 2/3; grid-row: 1/3;padding: 5px; max-height: 90px;
- overflow: auto;'><i style='display:inline;'>asked:</i>{Question}</span>
- </div>
- <div class="caption">{Answer}</div>
- </div>
- {/block:Answer}
- <!--General Post Formatting End-->
- <!--Footer 2-->
- {block:iffooter2}
- <div id='footer' class='insides'>
- <div style='text-align:left;'>
- <a href="{Permalink}">{NoteCount}{text:note text}</a></div>
- <div style='text-align:center;'>
- <a href="{Permalink}"><img src='{image:perma pixel}'></a>
- </div>
- <div style='text-align:right;'>
- <a href="{ReblogURL}"><i class="fas fa-undo-alt"></i></a>
- </div>
- </div>
- {/block:iffooter2}
- <!--Footer 2 End-->
- <!--Tags-->
- {block:ifnottags2}
- {block:iftags}
- {block:HasTags}
- <div class='tags'>
- {block:Tags}
- #<a href="{TagURL}">{Tag}</a>
- {/block:Tags}
- </div>
- {/block:HasTags}
- {/block:iftags}
- {/block:ifnottags2}
- {block:iftags2}
- {block:HasTags}
- <div class='tags2 insides'>
- <i class="fas fa-tags"></i>:
- {block:Tags}
- #<a href="{TagURL}">{Tag}</a>
- {/block:Tags}
- </div>
- {/block:HasTags}
- {/block:iftags2}
- <!--Tags End-->
- <!--{block:Date}-->
- <!--<div class="footer">-->
- <!--<a href="{Permalink}">{TimeAgo}{block:NoteCount} ({NoteCountWithLabel}){/block:NoteCount}</a>-->
- <!--{block:HasTags}<br>{block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}-->
- <!--{block:RebloggedFrom}<br><a href="{ReblogParentURL}">{lang:Reblogged from ReblogParentName}</a>{/block:RebloggedFrom}-->
- <!--{block:ContentSource}<br><a href="{SourceURL}">{lang:Source}: {SourceTitle}</a>{/block:ContentSource}-->
- <!--</div>-->
- <!--{/block:Date}-->
- <!-- Permalink -->
- {block:PermalinkPage}
- <!--via/src-->
- <div class='viasrc'>
- {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a> x {/block:RebloggedFrom}
- {block:ContentSource}<a href="{SourceURL}">src</a>{/block:ContentSource}
- </div>
- {block:NoteCount}
- {block:ifnotcaptions}
- {block:Caption}
- <div class="caption insides">
- {Caption}
- </div>
- {/block:Caption}
- {/block:ifnotcaptions}
- {block:ifnottags}
- {block:HasTags}
- <div class='tags'>
- {block:Tags}
- <a href="{TagURL}">#{Tag}</a>
- {/block:Tags}
- </div>
- {/block:HasTags}
- {/block:ifnottags}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:NoteCount}
- {/block:PermalinkPage}
- <!-- Permalink End -->
- </div>
- <!--End Posts-->
- {/block:Posts}
- </div>
- </div>
- </div>
- <script>
- function makeLightboxes(photoset) {
- // get image containers in photoset
- let image_containers = photoset.getElementsByClassName("image-container");
- // loop over image containers
- for (let i = 0, n = image_containers.length; i < n; i++) {
- // add click event to image container
- image_containers[i].addEventListener("click", function() {
- // current is the image's index in the photoset
- // due to tumblr reasons, it starts at 1
- let current = i + 1;
- // activate lightbox
- lightbox(image_containers, current);
- });
- }
- }
- function lightbox(image_containers, current) {
- // array of lightboxes for each image in photoset
- // lightbox is represented by an object
- let lightboxes = [];
- // loop over image containers
- for (let i = 0, n = image_containers.length; i < n; i++) {
- // create object for image container
- let image_container = image_containers[i]
- let arrayContents = {
- "width" : image_container.dataset.width,
- "height" : image_container.dataset.height,
- "low_res" : image_container.dataset.lowres,
- "high_res" : image_container.dataset.highres,
- }
- // add object to array
- lightboxes.push(arrayContents);
- }
- // activate built-in tumblr function
- Tumblr.Lightbox.init(lightboxes, current);
- }
- function makePhotoset(photoset) {
- // get image containers in photoset
- let images = photoset.getElementsByClassName("image-container");
- // get layout of photoset -- formatted as string of numbers of images per row
- // e.g "231" means row of 2 images, row of 3 images, row of 1 image
- let layout = photoset.dataset.layout;
- // loop over each row
- for (let i = 0, n = layout.length; i < n; i++) {
- // get number of images in row
- let cols = layout.charAt(i);
- // create row
- // row is a div with classes "photo-row" and "photo-row-n"
- let row = document.createElement("div");
- row.classList.add("photo-row-" + cols);
- row.classList.add("photo-row");
- // loop over number of images in row
- // move the right amount of images to row
- for (let j = 0; j < cols; j++) {
- row.appendChild(images[0]);
- }
- // add row to the photoset
- photoset.appendChild(row);
- }
- }
- window.addEventListener('load', startup, false);
- function startup() {
- let photosets = document.getElementsByClassName("photoset");
- for (let i = 0, n = photosets.length; i < n; i++) {
- makeLightboxes(photosets[i]);
- makePhotoset(photosets[i]);
- }
- }
- </script>
- <script>
- // Make the DIV element draggable:
- dragElement(document.getElementById("sidebar"));
- function dragElement(elmnt) {
- var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
- if (document.getElementById('weee')) {
- // if present, the header is where you move the DIV from:
- document.getElementById('weee').onmousedown = dragMouseDown;
- } else {
- // otherwise, move the DIV from anywhere inside the DIV:
- elmnt.onmousedown = dragMouseDown;
- }
- function dragMouseDown(e) {
- e = e || window.event;
- e.preventDefault();
- // get the mouse cursor position at startup:
- pos3 = e.clientX;
- pos4 = e.clientY;
- document.onmouseup = closeDragElement;
- // call a function whenever the cursor moves:
- document.onmousemove = elementDrag;
- }
- function elementDrag(e) {
- e = e || window.event;
- e.preventDefault();
- // calculate the new cursor position:
- pos1 = pos3 - e.clientX;
- pos2 = pos4 - e.clientY;
- pos3 = e.clientX;
- pos4 = e.clientY;
- // set the element's new position:
- elmnt.style.top = (elmnt.offsetTop - pos2) + "px";
- elmnt.style.left = (elmnt.offsetLeft - pos1) + "px";
- }
- function closeDragElement() {
- // stop moving when mouse button is released:
- document.onmouseup = null;
- document.onmousemove = null;
- }
- }
- </script>
- <script>
- document.querySelector('.playpause').addEventListener('click', playpause);
- function playpause(){
- if(document.querySelector('.playpause').innerHTML == '<i class="fas fa-play"></i>'){
- document.querySelector('#musicsrc').play();
- document.querySelector('.playpause').innerHTML = '<i class="fas fa-pause"></i>';
- } else{
- document.querySelector('#musicsrc').pause();
- document.querySelector('.playpause').innerHTML = '<i class="fas fa-play"></i>';
- }
- }
- </script>
- <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>
- <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>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment