Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- theme by misha @ramdons
- dont steal + dont remove credit + dm me if u run in2 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">
- {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:side image" content=""/>
- <meta name="image:pixel 1" content=""/>
- <meta name="image:pixel 2" content=""/>
- <meta name="image:pixel 3" content=""/>
- <meta name="image:pixel 4" content=""/>
- <meta name="image:pixel 5" content=""/>
- <meta name="image:pixel 6" content=""/>
- <meta name="image:pixel 7" content=""/>
- <meta name="image:perma pixel" content=""/>
- <meta name="image:bg" content=""/>
- <meta name="image:post bg" content="">
- <meta name="image:text post bg" content="">
- <meta name="image:sidebar bg" content="">
- <meta name="image:scrollbar thumb" content="">
- <meta name="image:scrollbar bg" content="">
- <meta name="color:bg" content=""/>
- <meta name="color:post bg" content="">
- <meta name="color:text post bg" content="">
- <meta name="color:sidebar bg" content="#fff">
- <meta name="color:post glow" content="#999">
- <meta name="color:post hover" content="#999">
- <meta name="color:scrollbar thumb" content="">
- <meta name="color:scrollbar bg" content="">
- <meta name="color:sparkles" content="black">
- <meta name="color:border" content="">
- <meta name="color:inner border" content="">
- <meta name="color:sidebar 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:tooltip text" content="#000">
- <meta name="color:tooltip bg" content="#fff">
- <meta name="color:selection" content="#fff">
- <meta name="color:selection bg" content="#efefef">
- <meta name="if:cover bg" content="">
- <meta name="if:shake image" content="" >
- <meta name="if:image blur on hover" content="" >
- <meta name="if:icon tooltip" content="" >
- <meta name="if:sparkles" content="">
- <meta name="if:fancy scrollbar" content="">
- <meta name="if:pixel 4" content="">
- <meta name="if:pixel 5" content="">
- <meta name="if:pixel 6" content="">
- <meta name="if:pixel 7" 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:post glow" content="" >
- <meta name="if:post drop shadow" content="" >
- <meta name="if:post hover" content="0">
- <meta name="if:redirect" content="" >
- <meta name="if:search" content="" >
- <meta name="if:captions" content="" >
- <meta name="if:rounded" content="" >
- <meta name="if:fuzzy border" content="" >
- <meta name="if:rainbow border" content="" >
- <meta name="if:footer" content="" >
- <meta name="if:footer 2" content="" >
- <meta name="if:tags" content="" >
- <meta name="if:inner post" content="" >
- <meta name="if:500px posts" content="" >
- <meta name="select:border" content="none">
- <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="double">
- <meta name="select:innerborder" content="none">
- <meta name="select:innerborder" content="solid">
- <meta name="select:innerborder" content="dotted">
- <meta name="select:innerborder" content="dashed">
- <meta name="select:innerborder" content="outset">
- <meta name="select:innerborder" content="double">
- <meta name="select:sidebar border" content="none">
- <meta name="select:sidebar border" content="solid">
- <meta name="select:sidebar border" content="dotted">
- <meta name="select:sidebar border" content="dashed">
- <meta name="select:sidebar border" content="outset">
- <meta name="select:sidebar border" content="double">
- <meta name="select:font" content="arial">
- <meta name="select:font" content="ms pgothic">
- <meta name="select:font" content="times">
- <meta name="select:font" content="short stack">
- <meta name="select:font" content="bellota">
- <meta name="select:font" content="Liu Jian Mao Cao">
- <meta name="select:font" content="Playfair Display">
- <meta name="select:font" content="Pacifico">
- <meta name="select:font" content="Rajdhani">
- <meta name="select:font" content="Bebas Neue">
- <meta name="select:font" content="Advent Pro">
- <meta name="select:font" content="Orbitron">
- <meta name="select:font" content="Metal Mania">
- <meta name="select:font" content="MuseoModerno">
- <meta name="select:font" content="Press Start 2P">
- <meta name="select:font" content="Staatliches">
- <meta name="select:navstyle" content="upright">
- <meta name="select:navstyle" content="mixed">
- <meta name="text:font size" content="20">
- <meta name="text:icon hover" content="hi hi ^_^">
- <meta name="text:note text" content="%">
- <meta name="text:sidebar width" content="170">
- <meta name="text:search text" content=":zany_face:">
- <meta name="text:link 1" content="">
- <meta name="text:link 1 url" content="">
- <meta name="text:link 2" content="">
- <meta name="text:link 2 url" content="">
- <meta name="text:link 3" content="">
- <meta name="text:link 3 url" content="">
- <meta name="text:border width" content="2">
- <meta name="text:inner border width" content="2">
- <meta name="text:sidebar border width" content="1">
- <meta name="text:redirect tag" content="">
- <meta name="text:side image width" content="auto">
- <meta name="text:side image right margin" content="0">
- <meta name="text:side image bottom 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: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:12px;
- {/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 {
- 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}
- 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 0 0 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;
- }
- /*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:iflinkglow}
- text-shadow:0 0 2px {color:link glow hover}, 0 0 2px {color:link glow hover};
- {/block:iflinkglow}
- {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: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: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;
- }
- li{
- margin-left:-15px;
- }
- img{
- transition:0.3s;
- margin-bottom:-10px;
- }
- img:hover {
- {block:ifimagebluronhover}
- filter:blur(1px);
- {/block:ifimagebluronhover}
- transition:0.3s;
- {block:ifshakeimage}
- /* Start the shake animation and make the animation last for 0.5 seconds */
- animation: shake 0.5s;
- /* When the animation is finished, start again */
- animation-iteration-count: infinite;
- {/block:ifshakeimage}
- }
- @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); }
- }
- /*
- containers etc
- */
- #wrapper{
- width:800px;
- margin:50px auto;
- {block:if500pxposts}
- width:900px;
- {/block:if500pxposts}
- }
- #sidebar{
- position:fixed;
- margin-top:10px;
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- width:{text:sidebar width}px;
- margin-bottom:10px;
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- {block:ifrainbowborder}
- border: {text: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:ifnotrainbowborder}
- border: {text:border width}px {select:border} {color:border};
- {/block:ifnotrainbowborder}
- display: grid;
- grid-template-columns: auto 28px;
- align-items: center;
- margin-left: calc(800px - {text:sidebar width}px - {text:border width}px - {text:border width}px);
- {block:if500pxposts}
- margin-left: calc(900px - {text:sidebar width}px - {text:border width}px - {text:border width}px);
- {/block:if500pxposts}
- background:{color:sidebar bg};
- background-image: url('{image:sidebar bg}');
- {block:ifpostdropshadow}
- filter:drop-shadow(10px 10px rgba(0, 0, 0, 0.37));
- {/block:ifpostdropshadow}
- {block:ifpostglow}
- box-shadow: 0 0 5px {color:post glow};
- {/block:ifpostglow}
- overflow:hidden;
- }
- #sidebar:hover{
- {block:ifposthover}
- box-shadow:0 0 5px {color:post hover};
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- {/block:ifposthover}
- }
- #icon{
- grid-column:1/2;
- width: 100%;
- height:100%;
- }
- #icon a img{
- width:100%;
- }
- #content{
- width:500px;
- overflow:hidden;
- padding:10px;
- {block:if500pxposts}
- width:600px;
- {/block:if500pxposts}
- }
- .post{
- padding:0;
- width:400px;
- -webkit-animation: fadeIn 0.3s;
- animation: fadeIn 0.3s;
- {block:if500pxposts}
- width:500px;
- {/block:if500pxposts}
- margin:0 0 50px 0;
- overflow:hidden;
- background:{color:post bg};
- background-image: url('{image:post bg}');
- border: {text:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border: {text: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:ifpostdropshadow}
- filter:drop-shadow(10px 10px rgba(0, 0, 0, 0.37));
- {/block:ifpostdropshadow}
- {block:ifpostglow}
- box-shadow: 0 0 5px {color:post glow};
- {/block:ifpostglow}
- {block:iffuzzyborder}
- border:none;
- box-shadow:0 0 5px 5px {color:post bg};
- {/block:iffuzzyborder}
- padding: 10px calc(10px + {text:inner border width}px + {text:inner border width}px) 0 10px;
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- {block:iffooter}
- {block:ifnotfooter2}
- padding-top:0;
- {/block:ifnotfooter2}
- {/block:iffooter}
- }
- .post:hover{
- {block:ifposthover}
- box-shadow:0 0 5px {color:post hover};
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- {/block:ifposthover}
- }
- .post img{
- max-width:100%;
- }
- @-webkit-keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- .insides{
- {block:ifinnerpost}
- background:{color:text post bg};
- background-image: url('{image:text post bg}');
- padding:10px;
- margin-bottom:10px;
- border: {text:inner border width}px {select:innerborder} {color:inner border};
- {block:ifrainbowborder}
- border: {text:inner border width}px {select:innerborder} 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}
- }
- #sidebar img, .post img{
- max-width:100%;
- }
- #nav{
- line-height:140%;
- writing-mode: vertical-rl;
- text-orientation: {select:navstyle};
- grid-column:2/3;
- grid-row:1/3;
- {block:ifsearch}
- grid-row:2/4;
- {/block:ifsearch}
- height:100%;
- border-left: {text:sidebar border width}px {select:sidebar border} {color:sidebar border};
- display: flex;
- justify-content: space-around;
- align-items:center;
- {block:ifrainbowborder}
- border-left: {text:sidebar border width}px {select: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}
- z-index:895;
- }
- #description{
- line-height:100%;
- transition:0.3s;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- max-height:100px;
- overflow-y:auto;
- padding:5px 0;
- grid-column:1/2;
- overflow:hidden;
- border-top: {text:sidebar border width}px {select:sidebar border} {color:sidebar border};
- {block:ifrainbowborder}
- border-bottom: {text:sidebar border width}px {select: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}
- z-index:396584906;
- background:{color:sidebar bg};
- background-image: url('{image:sidebar bg}');
- margin-bottom: 1px;
- }
- .click{
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- #description a img{
- height: 20px;
- display: inline-block;
- vertical-align: middle;
- margin-bottom: 0px;
- }
- @-webkit-keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
- #s-m-t-tooltip {
- z-index: 9999;
- background: {color:tooltip bg};
- font-size: {text:font size}px;
- line-height: 140%;
- text-align:center;
- font-family:{text:font};
- letter-spacing: 1px;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- text-transform: normal;
- color: {color:tooltip text};
- border: {text:inner border width}px {select:innerborder} {color:inner border};
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- {block:iffuzzyborder}
- border:none;
- box-shadow:0 0 5px 5px {color:tooltip bg};
- {/block:iffuzzyborder}
- max-width: 300px;
- word-wrap: break-word;
- padding: 7px;
- display: block;
- margin: 24px 14px 7px 12px;
- }
- /*
- content in the body of the posts - quotes, asks, etc
- "media" contains photos, photosets, videos, audio posts
- */
- .media{
- margin:0 0 calc(10px + 0.2em) 0;
- }
- h2{
- margin:10px 0;
- }
- .media img{
- {block:ifrounded}
- border-radius: 5px;
- {/block:ifrounded}
- }
- .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;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px #000;
- }
- .html_photoset{
- margin-bottom:-10px;
- }
- /*
- 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-bottom:10px;
- {/block:ifnotinnerpost}
- {/block:iffooter2}
- }
- #footer a img{
- margin-bottom:0;
- }
- /*
- post notes
- */
- ol.notes{
- list-style-type: none;
- padding: 10px;
- {block:ifnotinnerpost}
- padding:0;
- {/block:ifnotinnerpost}
- margin: 0;
- max-height: 300px;
- overflow: auto;
- margin-bottom: 10px;
- {block:ifinnerpost}
- background:{color:text post bg};
- background-image: url('{image:text post bg}');
- margin-bottom:10px;
- border: {text:inner border width}px {select:innerborder} {color:inner border};
- {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;
- {block:ifnotinnerpost}
- margin-top:10px;
- {/block:ifnotinnerpost}
- }
- .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: calc(5px - ({text:font size}px / 5));
- position:relative;
- margin-left:120px;
- height:120px;
- margin-top:-120px;
- font-size:15px;
- {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}
- {block:ifnotinnerpost}
- margin-bottom:10px;
- {/block:ifnotinnerpost}
- overflow:auto;
- }
- .trackname {
- position:relative;
- padding-top:10px;
- text-align:center;
- text-transform:uppercase;
- }
- .artist {
- text-align:center;
- text-transform:uppercase;
- font-style: italic;
- }
- /*tags*/
- .tags {
- {block:ifinnerpost}
- background:{color:text post bg};
- background-image: url('{image:text post bg}');
- border: {text:inner border width}px {select:innerborder} {color:inner border};
- {block:ifrainbowborder}
- border: {text:inner border width}px {select:innerborder} 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}
- max-height:0px;
- line-height:140%;
- text-align:left;
- opacity:0;
- -webkit-transition: all 0.5s ease;
- transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- }
- .post:hover .tags{
- opacity:1;
- max-height:300px;
- -webkit-transition: all 0.5s ease;
- transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- {block:ifinnerpost}
- padding:10px;
- {/block:ifinnerpost}
- margin-bottom:10px;
- overflow:auto;
- }
- /*search*/
- #googoo{
- grid-column: 1/3;
- width: calc(100% - 1px);
- border-bottom: {text:sidebar border width}px {select:sidebar border} {color:sidebar border};
- margin-left: 0;
- {block:ifrainbowborder}
- border-bottom: {text:sidebar border width}px {select: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}
- height:100%;
- /*margin-bottom:{text:inner border width}px;*/
- z-index: 49875;
- background: white;
- }
- #googoo form{
- height:100%;
- }
- input.search{
- width: 100%;
- box-sizing: border-box;
- border: none;
- height:100%;
- }
- input.search:focus{
- outline:none;
- }
- @-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; }
- }
- .dropdown-content {
- display: none;
- border-top:{text:sidebar border width}px {select:sidebar border} {color:sidebar border};
- grid-column:1/3;
- padding:10px;
- {block:ifrainbowborder}
- border-top: {text:sidebar border width}px {select: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}
- text-align:center;
- }
- .dropdown-content a{
- display:block;
- }
- .show {display: block !important;}
- {CustomCSS}
- </style>
- </head>
- <body>
- <div id="wrapper">
- <a title='ramdons' href='https://ramdons.tumblr.com' style='filter:none;'><img style='position:fixed; bottom:15px; left:5px; width:20px; filter:none;' src='https://cdn.discordapp.com/attachments/392883996952100887/734223693206782025/723745494513221652.png'></a>
- <img style='position:fixed; bottom:{text:side image bottom margin}px; right:{text:side image right margin}px; width:{text:side image width}px; z-index:-1;' src='{image:side image}'>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
- <div id="sidebar">
- {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">
- </form>
- </div>
- {/block:ifsearch}
- <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>
- <div id="nav">
- {block:PreviousPage}<a style='margin: 0 auto;' href="{PreviousPage}"<i class="fas fa-angle-up"></i></a>{/block:PreviousPage}
- {block:JumpPagination length="5"}
- {block:CurrentPage}
- <span class="current_page">{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {block:NextPage}<a href="{NextPage}"><i class="fas fa-angle-down"></i></a>{/block:NextPage}
- </div>
- <div id='description' style='text-align:center;'>
- <a onclick="myFunction()" class="dropbtn click">
- <img class='dropbtn' src='{image:pixel 1}'>
- <img class='dropbtn' src='{image:pixel 2}'>
- <img class='dropbtn' src='{image:pixel 3}'>
- {block:ifpixel4}
- <img class='dropbtn' src='{image:pixel 4}'>
- {/block:ifpixel4}
- {block:ifpixel5}
- <img class='dropbtn' src='{image:pixel 5}'>
- {/block:ifpixel5}
- {block:ifpixel6}
- <img class='dropbtn' src='{image:pixel 6}'>
- {/block:ifpixel6}
- {block:ifpixel7}
- <img class='dropbtn' src='{image:pixel 7}'>
- {/block:ifpixel7}
- </a>
- </div>
- <div id="myDropdown" class="dropdown-content">
- <a href='{text:link 1 url}'>{text:link 1}</a>
- <a href="{text:link 2 url}">{text:link 2}</a>
- <a href="{text:link 3 url}">{text:link 3}</a>
- </div>
- </div>
- <div id="content">
- {block:Posts}
- <div class="post">
- {block:ifnotfooter2}
- {block:iffooter}
- <div id='footer' style='font-size:15px; margin-bottom: 10px; border-bottom: {text:border width}px {select:border} {color:border};
- {block:ifrainbowborder}
- border-bottom: {text: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' src='{image:perma pixel}'></a>
- <a href="{Permalink}" style='text-transform:uppercase;'> {12HourWithZero}{CapitalAmPm}://users/{name}</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}
- {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}
- {block:iffooter2}
- <div id='footer' class='insides'>
- <a style='text-align:left;' href="{Permalink}">{NoteCount}{text:note text}</a>
- <a style='text-align:center;' href="{Permalink}"><img src='{image:perma pixel}'></a>
- <a style='text-align:right;' href="{ReblogURL}">↻</a>
- </div>
- {/block:iffooter2}
- {block:iftags}
- {block:HasTags}
- <div class='tags'>
- {block:Tags}
- <a href="{TagURL}">#{Tag}</a>
- {/block:Tags}
- </div>
- {/block:HasTags}
- {/block:iftags}
- <!--{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}-->
- {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}
- </div>
- {/block:Posts}
- </div>
- </div>
- </div>
- <script>
- /* When the user clicks on the button,
- toggle between hiding and showing the dropdown content */
- function myFunction() {
- document.getElementById("myDropdown").classList.toggle("show");
- }
- // Close the dropdown if the user clicks outside of it
- window.onclick = function(event) {
- if (!event.target.matches('.dropbtn')) {
- var dropdowns = document.getElementsByClassName("dropdown-content");
- var i;
- for (i = 0; i < dropdowns.length; i++) {
- var openDropdown = dropdowns[i];
- if (openDropdown.classList.contains('show')) {
- openDropdown.classList.remove('show');
- }
- }
- }
- }
- </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="//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="//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>
Add Comment
Please, Sign In to add comment