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" />
- {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: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:perma pixel" content=""/>
- <meta name="image:link divider pixel" content=""/>
- <meta name="image:custom status pixel" content=""/>
- <meta name="image:bg" content=""/>
- <meta name="image:post bg" content="">
- <meta name="image:inner post 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:header links bg" content="">
- <meta name="color:post glow" content="">
- <meta name="color:post hover" content="">
- <meta name="color:post drop shadow" content="">
- <meta name="color:border" content="">
- <meta name="color:inner border" content="">
- <meta name="color:text" content="">
- <meta name="color:text glow" 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:scrollbar thumb" content="">
- <meta name="color:scrollbar bg" content="">
- <meta name="color:tooltip bg" content="">
- <meta name="color:tooltip text" content="">
- <meta name="color:selection" content="#000">
- <meta name="color:selection bg" content="#efefef">
- <meta name="if:cover bg" content="">
- <meta name="if:icon tooltip" content="" >
- <meta name="if:text glow" 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:500px posts" content="" >
- <meta name="if:custom status box" 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:pixel link divider" content="" >
- <meta name="if:navigation style 2" 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:footer" content="" >
- <meta name="if:footer 2" content="" >
- <meta name="if:redirect" 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: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:custom status alignment" content="left">
- <meta name="select:custom status alignment" content="center">
- <meta name="select:custom status alignment" content="right">
- <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="text:icon hover" content="hi hi ^_^">
- <meta name="text:note text" content="%">
- <meta name="text:custom status header text" content="murder.exe">
- <meta name="text:custom status body text" content="pixels and search will show up here">
- <meta name="text:search text" content=" :zany_face:">
- <meta name="text:search button text" content="GO!!">
- <meta name="text:link 1" content="1">
- <meta name="text:link 1 url" content="make sure to add a / in front for links that are in your page (like /about). for outgoing links like carrds, add no slash and make sure the https:// is there. ">
- <meta name="text:link 2" content="2">
- <meta name="text:link 2 url" content="/">
- <meta name="text:link 3" content="3">
- <meta name="text:link 3 url" content="/">
- <meta name="text:link divider" content="-">
- <meta name="text:redirect tag" content="">
- <meta name="text:font size" content="20">
- <meta name="text:header links font size" content="20">
- <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>
- <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">
- <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:ifrounded}
- {block:iffancyscrollbar}
- #statusbody::-webkit-scrollbar-button:vertical:increment {
- border-bottom-right-radius:7px;
- }
- {/block:iffancyscrollbar}
- {block:ifnotfancyscrollbar}
- #statusbody::-webkit-scrollbar-button:vertical:increment {
- border-bottom-right-radius:7px;
- }
- {/block:ifnotfancyscrollbar}
- {block:ifsearch}
- #statusbody::-webkit-scrollbar-button:vertical:increment {
- border-bottom-right-radius:0;
- }
- {/block:ifsearch}
- {/block:ifrounded}
- {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}
- /*
- 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}
- }
- 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) drop-shadow(0 0 1px {color:links glow hover});
- {/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;
- }
- /*
- Wrapper and Content
- */
- #wrapper{
- width: 800px;
- box-sizing: border-box;
- margin:50px auto;
- }
- #content{
- margin:auto;
- text-align:center;
- box-sizing: border-box;
- overflow:hidden;
- }
- /* Header*/
- #header{
- position: fixed;
- left: 50%;
- transform: translateX(-50%);
- z-index: 25;
- width: calc(400px - {select:border width}px*2);
- {block:if500pxposts}
- width: calc(500px - {select:border width}px*2);
- {/block:if500pxposts}
- 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}
- filter:drop-shadow(10px 10px 2px {color:post drop shadow}6b);
- {/block:ifpostdropshadow}
- {block:ifpostglow}
- filter: drop-shadow(0 0 3px {color:post glow}) {block:ifpostdropshadow}drop-shadow(10px 10px 2px {color:post drop shadow}6b){/block:ifpostdropshadow};
- {/block:ifpostglow}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- #header:hover{
- {block:ifposthover}
- filter: drop-shadow(0 0 3px {color:post hover}) {block:ifpostdropshadow}drop-shadow(10px 10px 2px {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;
- }
- #icon:hover #hoverlinks {
- opacity: 1;
- transition:all 0.3s ease-out;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- #icon{
- }
- #icon a img{
- max-width:100%;
- max-height:100%;
- display:block;
- margin:auto;
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- {block:ifmarquee}
- {block:ifrounded}
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- {/block:ifrounded}
- {/block:ifmarquee}
- transition:all 0.3s ease-out;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- #hoverlinks{
- position: absolute;
- bottom: 0;
- padding:5px 0;
- width: 100%;
- text-align: center;
- opacity:0;
- line-height:140%;
- background:{color:header links bg}6b;
- font-size:{text:header links font size}px;
- transition:all 0.3s ease-out;
- -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;
- }
- .pixels img{
- display: inline-block;
- vertical-align: middle;
- margin-bottom: 0px;
- }
- .tpixels{
- margin-bottom:10px;
- }
- .bpixels{
- margin-top:10px;
- }
- /*Post Styling*/
- .post{
- box-sizing:border-box;
- padding:10px 10px 0 10px;
- margin: 25px auto;
- overflow:hidden;
- z-index:2;
- text-align:left;
- width:400px;
- {block:if500pxposts}
- width:500px;
- {/block:if500pxposts}
- 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:20px;
- }
- .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 0 00;
- {/block:ifnotinnerpost}
- }
- .media img{
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- display:block;
- }
- .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);
- padding: 10px 10px 10px 10px;
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- color:black;
- }
- .question a{
- color:black;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px #000;
- }
- .html_photoset{
- margin-bottom:-10px;
- }
- .html_photoset iframe{
- max-width:100%;
- }
- .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;
- {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;
- top: -14px;
- position: relative;
- margin-left: 120px;
- height: 120px;
- margin-top: -120px;
- font-size: 15px;
- margin-bottom: -14px;
- {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}
- transition: all 0.5s ease;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- }
- /*Nav styles*/
- #nav1 a{
- position: fixed;
- top: 50%;
- transform: translate(-50%, -50%);
- background:{color:post bg};
- background-image: url('{image:post bg}');
- padding: 5px 10px;
- 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}
- }
- #nav2{
- margin-top:25px;
- margin-bottom:50px;
- text-align:center;
- }
- #nav2 a{
- background:{color:post bg};
- background-image: url('{image:post bg}');
- padding: 5px 10px;
- 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}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- #nav2 a: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;
- }
- /*Status Styling*/
- #status {
- position: fixed;
- top:20%;
- right:10%;
- z-index: 84567;
- width:200px;
- 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}
- transition:box-shadow 0.3s;
- -o-transition: box-shadow 0.3s ease-out;
- -webkit-transition: box-shadow 0.3s ease-out;
- -moz-transition: box-shadow 0.3s ease-out;
- }
- #status: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:box-shadow 0.3s;
- -o-transition: box-shadow 0.3s ease-out;
- -webkit-transition: box-shadow 0.3s ease-out;
- -moz-transition: box-shadow 0.3s ease-out;
- }
- #statusheader {
- cursor: move;
- padding:0 5px;
- padding-bottom:5px;
- 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}
- }
- #btns{
- cursor:help;
- }
- #statusbody{
- max-height:200px;
- overflow:auto;
- padding:5px;
- text-align:{select:custom status alignment};
- {block:ifsearch}
- 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}
- }
- /*Search*/
- #googoo{
- margin:5px;
- z-index: 49875;
- background:white;
- border: 1px solid {color: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}
- }
- #googoo form{
- height:100%;
- display: grid;
- grid-template-columns: auto auto;
- }
- #googoo .meow{
- border-radius: 0;
- border: none;
- border-left: 1px solid {color: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;
- }
- /*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; }
- }
- /*Marquee*/
- @-webkit-keyframes marquee {
- 0% {
- transform: translate(0, 0);
- }
- 100% {
- transform: translate(-100%, 0);
- }
- }
- @-ms-keyframes marquee {
- 0% {
- transform: translate(0, 0);
- }
- 100% {
- transform: translate(-100%, 0);
- }
- }
- @-o-keyframes marquee {
- 0% {
- transform: translate(0, 0);
- }
- 100% {
- transform: translate(-100%, 0);
- }
- }
- @keyframes marquee{
- 0% {
- transform: translate(0, 0);
- }
- 100% {
- transform: translate(-100%, 0);
- }
- }
- /*custom tooltip*/
- #s-m-t-tooltip {
- z-index: 938458935;
- background: {color:tooltip bg}8c;
- font-size: {text:font size}px;
- color:{color:tooltip text};
- 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}'>
- {block:ifcustomstatusbox}
- <!--Status Div-->
- <div id="status">
- <div id="statusheader">
- <span style='font-size:20px;'>
- <img style='width:15px; margin-bottom: -2px;' src='{image:custom status pixel}'>
- {text:custom status header text}
- </span>
- <span id='btns' style='float:right'>
- <img id='minbutton' src='https://audial.ist/capture/load/TjkYvfNbXjYNGjfp0KHCEdgk.png'>
- <img id='maxbutton' src='https://audial.ist/capture/load/u7svTEsfgTpAmiCD3YaouAOl.png'>
- <img id='closebutton' src='https://audial.ist/capture/load/p6UTmj7FootpcWgaTj4OLqzm.png'>
- </span>
- </div>
- <div id='statusbody'>
- <div class='insides' style='margin-bottom:0; {block:ifinnerpost}padding:5px;{/block:ifinnerpost}'>
- {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>{text:custom status body 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>
- </div>
- {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}
- </div>
- <!--End Status Div-->
- {/block:ifcustomstatusbox}
- <div id="wrapper">
- <!--Header-->
- <div id='header'>
- <!--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}
- <!--Hover links-->
- <div id='hoverlinks'>
- <a href='{text:link 1 url}'>{text:link 1}</a>
- {block:ifnotpixellinkdivider}
- {text:link divider}
- {/block:ifnotpixellinkdivider}
- {block:ifpixellinkdivider}
- <img style='width:20px;' src='{image:link divider pixel}'>
- {/block:ifpixellinkdivider}
- <a href='{text:link 2 url}'>{text:link 2}</a>
- {block:ifnotpixellinkdivider}
- {text:link divider}
- {/block:ifnotpixellinkdivider}
- {block:ifpixellinkdivider}
- <img style='width:20px;' src='{image:link divider pixel}'>
- {/block:ifpixellinkdivider}
- <a href='{text:link 3 url}'>{text:link 3}</a>
- </div>
- <!--End Hover links-->
- </div>
- <!--End Icon-->
- <!--Nav style 1-->
- {block:ifnotnavigationstyle2}
- {block:Pagination}
- <div id='nav1'>
- {block:PreviousPage}
- <a href='{PreviousPage}'>
- <i class="fas fa-arrow-left"></i>
- </a>
- {/block:PreviousPage}
- {block:NextPage}
- <a style='left:100%' href='{NextPage}'>
- <i class="fas fa-arrow-right"></i>
- </a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- {/block:ifnotnavigationstyle2}
- <!--End Nav style 1-->
- </div>
- <!--End Header-->
- <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;'> {12HourWithZero}{CapitalAmPm}://users/{name}/file/{PostType}</a>
- <div style='display:inline; float:right;'>
- <a href='{ReblogURL}'><img src='https://audial.ist/capture/load/TjkYvfNbXjYNGjfp0KHCEdgk.png'> </a>
- <a href='{ReblogURL}'><img src='https://audial.ist/capture/load/u7svTEsfgTpAmiCD3YaouAOl.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}
- {block:ifnot500pxposts}
- <div class="media">{Photoset-400}</div>
- {/block:ifnot500pxposts}
- {block:if500pxposts}
- <div class="media">{Photoset-500}</div>
- {/block:if500pxposts}
- {block:Photos} {/block:Photos}
- {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'>
- {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">{Asker}: {Question}</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}">↻</a></div>
- </div>
- {/block:iffooter2}
- <!--Footer 2 End-->
- <!--Tags-->
- {block:iftags}
- {block:HasTags}
- <div class='tags'>
- {block:Tags}
- #<a href="{TagURL}">{Tag}</a>
- {/block:Tags}
- </div>
- {/block:HasTags}
- {/block:iftags}
- <!--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}
- {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>
- <!--Nav style 2-->
- {block:ifnavigationstyle2}
- {block:Pagination}
- <div id='nav2'>
- {block:PreviousPage}
- <a href='{PreviousPage}'>
- <i class="fas fa-arrow-left"></i>
- </a>
- {/block:PreviousPage}
- {block:NextPage}
- <a style='margin-left:50px' href='{NextPage}'>
- <i class="fas fa-arrow-right"></i>
- </a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- {/block:ifnavigationstyle2}
- <!--End Nav style 2-->
- </div>
- </div>
- {block:ifcustomstatusbox}
- <!--Status Code-->
- <script>
- var $min = document.querySelector('#minbutton');
- var $max = document.querySelector('#maxbutton');
- var $close = document.querySelector('#closebutton');
- function minimize(){
- document.querySelector('#statusbody').style.display = 'none';
- }
- function maximize(){
- document.querySelector('#statusbody').style.display = 'block';
- }
- function close(){
- document.querySelector('#status').style.display = 'none';
- }
- $min.addEventListener('click', minimize)
- $max.addEventListener('click', maximize)
- $close.addEventListener('click', close)
- </script>
- <script>
- // Make the DIV element draggable:
- dragElement(document.getElementById("status"));
- function dragElement(elmnt) {
- var pos1 = 0, pos2 = 0, pos3 = 0, pos4 = 0;
- if (document.getElementById(elmnt.id + "header")) {
- // if present, the header is where you move the DIV from:
- document.getElementById(elmnt.id + "header").onmousedown = dragMouseDown;
- } else {
- // otherwise, move the DIV from anywhere inside the DIV:
- elmnt.onmousedown = dragMouseDown;
- }
- function dragMouseDown(e) {
- if(e.target != document.querySelector('#btns')){
- 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>
- {/block:ifcustomstatusbox}
- <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>
- <script>
- jQuery(document).ready(function($){ //wait for the document to load
- $('#content .post:first-of-type').each(function(){ //loop through each element with the .dynamic-height class
- $(this).css({
- 'margin-top' : $('#header').outerHeight() + 25 + 'px' //adjust the css rule for margin-top to equal the element height - 10px and add the measurement unit "px" for valid CSS
- });
- });
- });
- </script>
- </body>
- </html>
Add Comment
Please, Sign In to add comment