Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <!--
- THEME BY kangjan.tumblr.com
- DO NOT REDISTRIBUTE
- DO NOT REMOVE CREDIT
- ASK ME BEFORE MOVING CREDIT, PLEASE
- ASK ME BEFORE COPYING PARTS OF THE CODING, PLEASE
- i hope you enjoy this theme!!
- thank you for choosing it!
- ٩(^ᴗ^)۶
- -->
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <link href="http://static.tumblr.com/tkhlwyc/jM0nkuni9/style-my-tooltips.css" rel="stylesheet" type="text/css" />
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/tkhlwyc/PH1nkunkl/jquery.style-my-tooltips.js"></script><script>
- (function($){
- $(document).ready(function(){
- $("[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:100,
- tip_fade_speed:300,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- <head>
- {block:ifbubblecursor}
- <script type="text/javascript">
- // <![CDATA[
- var colours=new Array("{color:bubbles}", "{color:bubbles}f", "{color:bubbles}", "{color:bubbles}", "{color:bubbles}");
- var bubbles=100; // maximum number of bubbles on screen
- var over_or_under="under"; // set to "over" for bubbles to always be on top, or "under" to allow them to float behind other objects
- /****************************
- * JavaScript Bubble Cursor *
- *(c)2010-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 bubb=new Array();
- var bubbx=new Array();
- var bubby=new Array();
- var bubbs=new Array();
- var sploosh=false;
- function addLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addLoadEvent(buble);
- function buble() { if (document.getElementById) {
- var i, rats, div;
- for (i=0; i<bubbles; i++) {
- rats=createDiv("3px", "3px");
- rats.style.visibility="hidden";
- rats.style.zIndex=(over_or_under=="over")?"1001":"0";
- div=createDiv("auto", "auto");
- rats.appendChild(div);
- div=div.style;
- div.top="1px";
- div.left="0px";
- div.bottom="1px";
- div.right="0px";
- div.borderLeft="1px solid "+colours[3];
- div.borderRight="1px solid "+colours[1];
- div=createDiv("auto", "auto");
- rats.appendChild(div);
- div=div.style;
- div.top="0px";
- div.left="1px";
- div.right="1px";
- div.bottom="0px"
- div.borderTop="1px solid "+colours[0];
- div.borderBottom="1px solid "+colours[2];
- div=createDiv("auto", "auto");
- rats.appendChild(div);
- div=div.style;
- div.left="1px";
- div.right="1px";
- div.bottom="1px";
- div.top="1px";
- div.backgroundColor=colours[4];
- if (navigator.appName=="Microsoft Internet Explorer") div.filter="alpha(opacity=50)";
- else div.opacity=0.5;
- document.body.appendChild(rats);
- bubb[i]=rats.style;
- }
- set_scroll();
- set_width();
- bubble();
- }}
- function bubble() {
- var c;
- if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- ox=x;
- oy=y;
- for (c=0; c<bubbles; c++) if (!bubby[c]) {
- bubb[c].left=(bubbx[c]=x)+"px";
- bubb[c].top=(bubby[c]=y-3)+"px";
- bubb[c].width="3px";
- bubb[c].height="3px"
- bubb[c].visibility="visible";
- bubbs[c]=3;
- break;
- }
- }
- for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
- setTimeout("bubble()", 40);
- }
- document.onmousedown=splash;
- document.onmouseup=function(){clearTimeout(sploosh);};
- function splash() {
- ox=-1;
- oy=-1;
- sploosh=setTimeout('splash()', 100);
- }
- function update_bubb(i) {
- if (bubby[i]) {
- bubby[i]-=bubbs[i]/2+i%2;
- bubbx[i]+=(i%5-2)/5;
- if (bubby[i]>sdown && bubbx[i]>sleft && bubbx[i]<sleft+swide+bubbs[i]) {
- if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
- bubb[i].width=bubbs[i]+"px";
- bubb[i].height=bubbs[i]+"px";
- }
- bubb[i].top=bubby[i]+"px";
- bubb[i].left=bubbx[i]+"px";
- }
- else {
- bubb[i].visibility="hidden";
- bubby[i]=0;
- return;
- }
- }
- }
- 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.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;
- }
- 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;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height;
- div.style.width=width;
- div.style.overflow="hidden";
- div.style.backgroundColor="transparent";
- return (div);
- }
- // ]]>
- </script>
- {/block:ifbubblecursor}
- <style>body, a, a:hover { cursor:url({image:custom cursor}), auto; }</style>
- <meta name="color:link" content="#B8B8B8">
- <meta name="color:hover" content="#454545">
- <meta name="color:text" content="#9A9A9A">
- <meta name="color:bubbles" content="#8e66a8">
- <meta name="color:scrollbar" content="#D6D5D5">
- <meta name="color:background" content="#ffffff">
- <meta name="color:post background" content="ffffff">
- <meta name="if:rounded corners" content="0">
- <meta name="if:shadow posts" content="0">
- <meta name="if:show captions" content="0">
- <meta name="if:show captions" content="0">
- <meta name="if:bubble cursor" content="0">
- <meta name="if:full background" content="0">
- <meta name="if:music player box" content="">
- <meta name="image:sidebar" content="http://media.tumblr.com/f051037e8b87ac57028131d73bf6c923/tumblr_inline_na5ttsTWBB1sig565.png"/>
- <meta name="image:custom cursor" content="http://i.imgur.com/ZOrzC.png"/>
- <meta name="image:favicon" content="http://i595.photobucket.com/albums/tt37/paravidatodazipnet/FAVICONS/FaviconsParaVidaToda31.gif"/>
- <meta name="image:corner image" content=""/>
- <meta name="image:background image" content=""/>
- <meta name="text:ask text" content="whispered">
- <meta name="text:menu text" content="click!">
- <meta name="text:music player code" content="">
- <meta name="text:link1" content="home">
- <meta name="text:link1 url" content="/">
- <meta name="text:link2" content="ask">
- <meta name="text:link2 url" content="/ask">
- <meta name="text:link3" content="self">
- <meta name="text:link3 url" content="/">
- <meta name="text:link4" content="social">
- <meta name="text:link4 url" content="/">
- <meta name="text:corner img size" content="500">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{Title}</title> {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <link rel="shortcut icon" href="{image:favicon}" />
- <link rel="alternate" type="application/rss+xml" href="{RSS}" />
- <style type="text/css">
- a {
- color:{color:link};
- text-decoration:none;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- a:hover {
- color:{color:hover};
- text-decoration:none;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- ::-webkit-scrollbar {background-color:{color:infobg}; height:8px; width:4px}
- ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:50px}
- ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar}; height:8px!important}
- body {
- background-color:{color:background};
- background-image:url({image:background image});
- background-attachment:fixed;
- font-family:times;
- font-weight:normal;
- }
- h1 {
- font-weight:normal;
- font-size:10px;
- text-align:center;
- font-style:normal;
- line-height:80%;
- letter-spacing:1px;
- text-transform:uppercase;
- color:{color:text};
- }
- h2 {
- font-size:15px;
- text-align:center;
- line-height:100%;
- letter-spacing:-0.5px;
- color:{color:text};
- font-weight:normal;
- padding:5px;
- padding-bottom:2px;
- }
- {block:iffullbackground}
- #bg img {
- z-index:-2;
- position:fixed;
- top:0;
- left:0;
- height:100%;
- width:100%;
- }
- {/block:iffullbackground}
- blockquote {
- border-left:2px solid {color:text};
- padding-left:5px;
- margin:5px;
- }
- #theme {
- background-color:{color:bg};
- width:700px;
- margin: 0 auto -12px auto;
- text-align: center;
- }
- {block:ifmusicplayerbox}
- #music {
- background-color:{color:post background};
- padding:12px;
- margin-top:50px;
- margin-left:-20px;
- width:125px;
- font:times;
- height:auto;
- font-size:10px;
- position:fixed;
- {block:ifroundedcorners}
- border-radius:10px;
- {/block:ifroundedcorners}
- {block:ifshadowposts}
- -moz-box-shadow: 5px 5px 5px #888;
- -webkit-box-shadow: 5px 5px 5px #888;
- box-shadow: 5px 5px 5px #888;
- {/block:ifshadowposts}
- }
- {/block:ifmusicplayerbox}
- #sidebar {
- color:{color:text};
- position:fixed;
- width:110px;
- height:auto;
- margin-top:190px;
- text-align:left;
- margin-left:-95px;
- background:{color:post background};
- padding:20px;
- {block:ifroundedcorners}
- border-radius:10px;
- {/block:ifroundedcorners}
- {block:ifshadowposts}
- -moz-box-shadow: 5px 5px 5px #888;
- -webkit-box-shadow: 5px 5px 5px #888;
- box-shadow: 5px 5px 5px #888;
- {/block:ifshadowposts}
- }
- #sidebar img {
- width:110px;
- height:110px;
- border-radius: 50%;
- margin-bottom:10px;
- }
- .links {
- margin-bottom:10px;
- font-size:9px;
- text-transform:lowercase;
- text-align:center;
- letter-spacing:2px;
- margin-top:-8px;
- line-height:200%;
- }
- .links a{
- padding:3px;
- color:{color:link};
- letter-spacing:0px;
- text-decoration:none;
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- .links a:hover{
- color:{color:hover};
- -moz-transition-duration:1s;
- -webkit-transition-duration:1s;
- -o-transition-duration:1s;
- }
- .desc {
- font-family:times;
- font-style:none;
- margin-bottom:10px;
- text-align:center;
- font-size:9px;
- color:{color:text};
- letter-spacing:0px;
- line-height:150%;
- }
- .desc a {
- color:{color:link};
- }
- #postcontainer {
- float:left;
- margin-left:200px;
- margin-top:95px;
- text-align:justify;
- background-color:{color:bg};
- color:{color:text};
- margin-bottom: 35px;
- }
- #posts {
- width:250px;
- margin-bottom:50px;
- padding:20px;
- text-align:justify;
- background:{color:post background};
- font-size:9.5px;
- line-height:90%;
- letter-spacing:0x;
- color:{color:text};
- {block:ifroundedcorners}
- border-radius:10px;
- {/block:ifroundedcorners}
- {block:ifshadowposts}
- -moz-box-shadow: 5px 5px 5px #888;
- -webkit-box-shadow: 5px 5px 5px #888;
- box-shadow: 5px 5px 5px #888;
- {/block:ifshadowposts}
- }
- {block:ifshowcaptions}
- .caption {
- width:250px;
- text-align:justify;
- line-height:120%;
- }
- {/block:ifshowcaptions}
- .audio {
- width:500px;
- padding-bottom:10px;
- }
- .albumart {
- float:left;
- padding:0px 10px 10px 0px;
- }
- .albumart img {
- width:55px;
- height:55px;
- border-radius:50%;
- }
- .playercontainer {
- text-align:left;
- padding:1px;
- background-color:#ffffff;
- width:50px;
- }
- .audioinfo {
- padding:10px;
- color:{color:text};
- }
- #postinfo {
- color:{color:text};
- text-align:center;
- font-family:times;
- font-size: 9px;
- letter-spacing:1px;
- font-style: normal;
- margin-top:10px;
- border-top: 1px;
- background:{color:post background};
- padding:3px;
- text-transform:lowercase;
- }
- #postinfo a {
- color:{color:text};
- text-align:center;
- letter-spacing:0px;
- font-style:normal;
- }
- #postinfo a:hover {
- color:{color:hover};
- }
- .note {
- text-transform:lowercase;
- font-style:normal;
- letter-spacing:0px;
- font-size: 9px;
- text-align:left;
- line-height:90%;
- margin-left:-40px;
- }
- .note li {
- list-style-type:none;
- border-bottom:1px solid {color:border};
- padding:10px 25px 10px 25px;
- text-align:left;
- margin:0px;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- .tags {
- margin-top:-5px;
- font-family:times;
- font-style:normal;
- width:250px;
- text-transform:lowercase;
- color:{color:text};
- letter-spacing:0px;
- line-height:120%;
- font-size:8px;
- text-align:center;
- padding:2px;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- .tags a {
- color:{color:text};
- letter-spacing:0px;
- padding:1px;
- }
- ul.chat, .chat ol, .chat li {
- list-style:none;
- margin:0px;
- padding:2px;
- }
- #note ava {
- border-radius:50%;
- }
- .label {
- text-decoration:underline;
- font-weight:700;
- background-color:{color:infobg};
- margin-right:5px;
- }
- .avatar img {
- padding:5px;
- }
- #cred {
- position:fixed;
- font-size:8px;
- font-style:none;
- line-height:150%;
- left:5px;
- bottom:10px;
- }
- #cred a {
- padding:3px;
- color:{color:link};
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- #s-m-t-tooltip {
- z-index: 9999;
- background: {color:post background};
- font-size: 9px;
- line-height: 11px;
- font-family:times;
- letter-spacing: 1px;
- color: {color:text};
- word-wrap: break-word;
- padding: 2px 5px 2px 6px;
- display: block;
- margin: 24px 14px 7px 12px;
- }
- {CustomCSS}
- </style>
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- </head>
- <body>
- {block:iffullbackground}<div id="bg"><img src="{image:background image}"></div>{/block:iffullbackground}
- <div id="theme">
- <div id="sidebar">
- <a href="/" title="{Title}"><img src="{image:sidebar}"></a>
- <div class="desc">
- {Description}<br><br>
- <select onchange='location=this.options[this.selectedIndex].value;' style="font-family:arial; font-size:10px; color:#000; background:#fff;"></p>
- <p><option>{text:menu text}</option></p>
- <p><option value="{text:link1 url}">{text:link1}</option></p>
- <p><option value="{text:link2 url}">{text:link2}</option></p>
- <p><option value="{text:link3 url}">{text:link3}</option></p>
- <p><option value="{text:link4 url}">{text:link4}</option></p>
- <p></select></p>
- </div>
- {block:ifmusicplayerbox}<div id="music">{text:music player code}</div>{/block:ifmusicplayerbox}
- </div>
- <div id="postcontainer">
- <div class= "autopagerize_page_element">
- {block:Posts}
- <div id="posts">
- {block:Text}{block:Title}<h2>{Title}</h2>{/block:Title}{Body}{/block:Text}
- {block:Quote}<h2>“{Quote}”</h2><h1>{Source}</h1>{/block:Quote}
- {block:Link}<a href="{URL}"><h2>{Name}</h2></a>
- {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
- {block:Photo}<center><img src="{PhotoURL-250}"/></center>{block:ifshowcaptions}{block:Caption}<div class="caption">{Caption}{/block:Caption}{/block:ifshowcaptions}{/block:Photo}
- {block:Photoset}<center>{Photoset-250}</center>
- {block:ifshowcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifshowcaptions}{/block:Photoset}
- {block:Chat}<ul class="chat">{block:Title}<h2>{Title}</h2>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul>{/block:Chat}
- {block:Video}{Video-250}
- {block:ifshowcaptions}
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {block:ifshowcaptions}{/block:Video}
- {block:Answer}
- <div class="posts"><br>
- <div class="avatar"><img style="border-radius:50px;" src="{AskerPortraitURL-40}" align="left"/></div><div class="asker"><b>{Asker} {text:ask text}:</b> <div class="question">{Question}</div></div><br>
- {Answer}
- </div>
- {/block:Answer}
- {block:Audio}<div class="audio">{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"/></div>{/block:AlbumArt}
- <div class="audioinfo">{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
- {/block:ExternalAudio}</div>
- <br><div class="playercontainer">{AudioPlayerWhite}</div></div>
- {block:ifshowcaptions}{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}{/block:ifshowcaptions}<br>{/block:Audio}
- {block:Date}<div id="postinfo"><a href="{Permalink}">{TimeAgo}</a>{block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<br>{block:RebloggedFrom} <a href="{ReblogParentURL}" title={ReblogParentName}>via</a> • {/block:RebloggedFrom}
- {block:ContentSource} <a href="{SourceURL}" title={SourceTitle}>src</a>{/block:ContentSource}</div>{/block:Date}
- {block:HasTags}
- <div class="tags">
- {block:Tags}<a href="{TagURL}">#{Tag}</a>{/block:Tags}</div>
- {/block:HasTags}
- <div class="note">
- {block:PostNotes}
- {block:PostNotes}<div id="note ava">{PostNotes-16}</div>{PostNotes}{/block:PostNotes}
- </div>
- </div>
- {/block:Posts}
- </div>
- </div>
- <div id="cred"><a href="http://kangjan.tumblr.com/" title="theme by ava"><img src="http://i.imgur.com/zUcQI19.gif"></a></div>
- </div>
- </div>
- </div>
- </body>
- </html>
- <div style="position:fixed;
- bottom:10px;right:10px;">
- <img src="{image:corner image}" width={text:corner img size}px>
- </div>
Advertisement
Add Comment
Please, Sign In to add comment