Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!------------------------------------------------------------------------
- /// pink ladies theme by ally
- © 2014 stahrfruits.tumblr.com
- -------------------------------------------------------------------------->
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
- <head>
- <link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
- <meta name="color:Background" content="#FFFFFF"/>
- <meta name="color:Text" content="#000000"/>
- <meta name="color:Titles" content="#000000"/>
- <meta name="color:Links" content="#636363"/>
- <meta name="color:Hover" content="#FFFFFF"/>
- <meta name="color:Scrollbar" content="#363636"/>
- <meta name="color:Chat Background" content="#F5F5F5"/>
- <meta name="image:Header" content=""/>
- <meta name="if:Fade Images" content="1" />
- <meta name="if:rounded posts" content="" />
- <meta name="if:White Audio Player" content="1" />
- <meta name="if:Endless Scrolling" content="1"/>
- <meta name="text:Scrolling Tab Bar" content="" />
- <meta name="text:more tab content" content="" />
- <meta name="text:reblog" content="relive" />
- <meta name="text:updates" content="" />
- <meta name="text:network badges" content="" />
- <meta name="text:FAQ" content="" />
- <meta name="text:Custom Link One" content="" />
- <meta name="text:Custom Link One Title" content="" />
- <meta name="text:Custom Link Two" content="" />
- <meta name="text:Custom Link Two Title" content="" />
- <meta name="text:Custom Link Three" content="" />
- <meta name="text:Custom Link Three Title" content="" />
- <meta name="text:Custom Link Four" content="" />
- <meta name="text:Custom Link Four Title" content="" />
- <meta name="text:Custom Link Five" content="" />
- <meta name="text:Custom Link Five Title" content="" />
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script type="text/javascript">
- var rev = "fwd";
- function titlebar(val)
- {
- var msg = "{text:Scrolling Tab Bar}";
- var res = " ";
- var speed = 100;
- var pos = val;
- msg = "{text:Scrolling Tab Bar}";
- var le = msg.length;
- if(rev == "fwd"){
- if(pos < le){
- pos = pos+1;
- scroll = msg.substr(0,pos);
- document.title = scroll;
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- else{
- rev = "bwd";
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- }
- else{
- if(pos > 0){
- pos = pos-1;
- var ale = le-pos;
- scrol = msg.substr(ale,le);
- document.title = scrol;
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- else{
- rev = "fwd";
- timer = window.setTimeout("titlebar("+pos+")",speed);
- }
- }
- }
- titlebar(0);
- </script>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
- <script type="text/javascript" src="scrolltopcontrol.js">
- </script>
- <script type="text/javascript">
- var scrolltotop={
- //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
- //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top).
- setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
- controlHTML: '<img src="http://img189.imageshack.us/img189/3782/b2t.png"> l, //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
- controlattrs: {offsetx:10, offsety:10}, //offset of control relative to right/ bottom of window corner
- anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
- state: {isvisible:false, shouldvisible:false},
- scrollup:function(){
- if (!this.cssfixedsupport) //if control is positioned using JavaScript
- this.$control.css({opacity:0}) //hide control immediately after clicking it
- var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
- if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
- dest=jQuery('#'+dest).offset().top
- else
- dest=0
- this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
- },
- keepfixed:function(){
- var $window=jQuery(window)
- var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
- var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
- this.$control.css({left:controlx+'px', top:controly+'px'})
- },
- togglecontrol:function(){
- var scrolltop=jQuery(window).scrollTop()
- if (!this.cssfixedsupport)
- this.keepfixed()
- this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
- if (this.state.shouldvisible && !this.state.isvisible){
- this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
- this.state.isvisible=true
- }
- else if (this.state.shouldvisible==false && this.state.isvisible){
- this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
- this.state.isvisible=false
- }
- },
- init:function(){
- jQuery(document).ready(function($){
- var mainobj=scrolltotop
- var iebrws=document.all
- mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
- mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
- mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
- .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
- .attr({title:'Scroll to Top'})
- .click(function(){mainobj.scrollup(); return false})
- .appendTo('body')
- if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
- mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
- mainobj.togglecontrol()
- $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
- mainobj.scrollup()
- return false
- })
- $(window).bind('scroll resize', function(e){
- mainobj.togglecontrol()
- })
- })
- }
- }
- scrolltotop.init()
- </script>
- <title>{Title}</title>
- <style type="text/css">
- /*General Layout */
- body {margin:0px; background-color: {color:Background}; {block:IfGrainedBackgroundImage} background-image:url(‘{image:Background}’); background-attachment: fixed; background-repeat: repeat;{/block:IfGrainedBackgroundImage}font-family:raleway; font-size:11px; line-height:16px;text-align: justify; color:{color:Text}; letter-spacing:0px;}
- div#wrap{{block:IndexPage}width:940px;{block:IndexPage}{block:PermalinkPage}width:500px; margin-left:auto;{/block:PermalinkPage}margin:auto;}
- div#content{{block:IndexPage}width:840px;{block:IndexPage} margin-left:auto; margin-center:auto; padding-top:30px;}
- .entry{{block:IndexPage}width:200px; float:left; padding:5px; margin:10px;{/block:IndexPage}
- {block:PermalinkPage}width:500px; margin-left:auto; margin-right:auto; {/block:PermalinkPage} text-align:justify;}
- .entry img{{block:IndexPage} max-width:200px; -webkit-transition: 0.3s ease-in; {/block:IndexPage}{block:PermalinkPage}width:500px; margin-left:auto; margin-right:auto;{/block:PermalinkPage}}
- .entry img:hover{{block:IndexPage} margin-top:5px;-webkit-transition: 0.3s ease-in;{/block:IndexPage}}
- {block:ifroundedposts}
- .entry img{
- -khtml-border-radius: 15px;
- -moz-border-radius: 15px;
- -webkit-border-radius: 15px;
- border-radius: 15px;
- }
- {/block:ifroundedposts}
- .header{padding:0px; margin-left:auto; margin-right:auto; margin-top:20px; {block:IndexPage}width:520px;{block:IndexPage} {block:PermalinkPage}width:500px;{/block:PermalinkPage}}
- /*Contents Info */
- .post_title{ font-family:raleway; text-transform:uppercase; letter-spacing:4px; font-size:18px; color:{color:Titles}; line-height:20px;}
- .links{font-family: raleway; color:{color:Links}; margin-bottom: 4px; text-transform:lowercase; font-size: 12px; line-height: 9px; letter-spacing:2px; margin: 5px; padding: 4px; text-align:right;}
- .links:hover{color:{color:Hover};}
- a:link, a:active, a:visited{color: {color:Links}; text-decoration: none; -webkit-transition: color 0.5s ease-out;-moz-transition: color 0.5s ease-out;transition: color 0.5s ease-out;}
- a:hover {color:{color:Hover};text-decoration: none;}
- div#page{position:fixed; right:5px; bottom:5px; font-family:raleway; text-transform:uppercase; text-align:right; background-color:{color:Chat Background};
- {block:IfEndlessScrolling}display:none;{/block:IfEndlessScrolling} padding:5px;}
- .quot{margin-left:0px; margin-top:-8px; font-family:raleway; text-transform:uppercase; font-size:18px; color:{color:Post title}; line-height:14px; letter-spacing:2px;}
- .quote{position:relative; top:5px; font-size:40px; opacity:0.2; filter: alpha(opacity = 20);}
- .source{ font-size:12px; text-align:right;}
- div#chat li { padding: 4px; background-color:{color:Chat Background}; margin-top: 2px;}
- div#chat ul{ {block:IndexPage} width:250px; {/block:IndexPage}
- {block:PermalinkPage} width:500px; margin-left:80px;{/block:PermalinkPage} list-style: none; padding: 0px; margin-top:5px; margin-bottom:10px; text-align: justify; }
- .audio {{block:IfWhiteAudioPlayer}background-color: #fff;{/block:IfWhiteAudioPlayer} {block:IfNotWhiteAudioPlayer} background-color: #000; {/block:IfNotWhiteAudioPlayer} {block:PermalinkPage} width:500px; {/block:PermalinkPage}}
- .asker{padding:5px; line-height:16px; font-family:raleway; text-transform:uppercase; letter-spacing:2px; background-color: {color:Chat Background}; }
- .qs { text-align:right;}
- .notespage { width:500px; opacity: 1; z-index: 10000; margin-top:0px; margin-left:0px; margin-right:auto; text-align:right; }
- .postnotes { margin-top:0; margin-left:20px; margin-right:auto; margin-bottom:0px; width:500px;
- text-align:left max-height:300px; overflow-x:auto; }
- {block:ifFadeImages} img {opacity: 0.85; -webkit-transition-duration: 0.8s; }
- img:hover { opacity: 1; -webkit-transition-duration: 0.8s; } {/block:ifFadeImages}
- .info{ background-color:{color:Chat Background}; display:block; padding:5px;}
- .triangle{font-family:Arial; font-size:16px; color:{color:Chat Background}; position:absolute;
- margin:-20px 0px 0px 7px;}
- .blogtitle{font-size:1px; {block:IndexPage}letter-spacing:12px;{block:IndexPage} {block:PermalinkPage}letter-spacing:10px;{/block:PermalinkPage} padding-bottom:15px; line-height:22px; color:{color:blogtitle}; font-family:ralewa; text-transform:uppercase; cursor:help; text-align:center;}
- /*Permalink Inyfo */
- {block:IndexPage}
- .entry .permalink {margin-top: 4px; border-top: 1px dotted {color:text}; text-align: center; font-size: 10px; text-transform: uppercase; padding-top: 3px; overflow:hidden; -webkit-transition: opacity 0.7s linear; opacity: 0.0; -webkit-transition: all 0.4s linear; -moz-transition: all 0.4s linear;transition: all 0.4s linear;}
- .entry:hover .permalink {overflow:visible; -webkit-transition: opacity 0.7s linear; opacity: .5; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
- .permalink {display:block; position: relative; text-align: right; text-transform:uppercase; font-size:9px; margin-top:-11px; font-family:'raleway', sans-serif; opacity:0.8; filter: alpha(opacity = 80); -webkit-transition: 0.3s ease-in; }
- .entry:hover .permalink{opacity: 1; filter: alpha(opacity = 100); -webkit-transition: 0.3s ease-in; }
- .photo_perma{display:block; height:15px; text-align:left; text-transform:uppercase; padding-left: 10px; padding-right: 10px; padding-top:10px; padding-bottom:10px; background-color:{color:background}; position: absolute; margin-top:-48px; margin-left:8px; opacity:0; filter: alpha(opacity = 0); -webkit-transition: 0.3s ease-in;}
- .photo_perma a{color:{color:text};}
- .entry:hover .photo_perma{ {block:IfCaption} margin-top:25px; {/block:IfCaption} opacity:0.75;
- filter: alpha(opacity = 75); -webkit-transition: 0.3s ease-in; }
- {/block:IndexPage}
- /*Other Info */
- iframe#tumblr_controls{position:fixed; top:1px; margin: 0 0 0 0; right: 6px;}
- {block:ifFadeImages} img {opacity: 0.85; -webkit-transition-duration: 0.8s; }
- img:hover { opacity: 1; -webkit-transition-duration: 0.8s; } {/block:ifFadeImages}
- ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar}; height:100px;}
- ::-webkit-scrollbar-thumb:horizontal { background-color:{color:scrollbar}; height:10px;}
- ::-webkit-scrollbar {height:10px; width:8px; background-color:{color:background};}
- {CustomCSS}
- #green{
- border-radius: 5px;
- border:0px solid #000;
- position:absolute;
- left:505px; padding-top:2px;
- top:150px;
- padding-bottom:14px;
- text-align:center;
- height:10px;
- width:60px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #green:hover{
- border-radius: 5px
- overflow-y:scroll;
- overflow-x:hidden;
- position:absolute;
- border:1px solid #fdc2f6;
- padding:5px;
- height:210px;
- width:200px;
- z-index:999999999;
- background:white;
- }
- #box{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #rabbit{
- border-radius: 5px;
- border:0px solid #000;
- position:absolute;
- left:450px; padding-top:2px;
- top:150px;
- padding-bottom:12px;
- text-align:center;
- height:10px;
- width:60px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #rabbit:hover{
- border-radius: 5px
- overflow-y:scroll;
- overflow-x:hidden;
- position:absolute;
- border:1px solid #fdc2f6;
- padding:5px;
- height:210px;
- width:200px;
- z-index:999999999;
- background:white;
- }
- #box{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #cat{
- border-radius: 5px;
- position:absolute;
- border:0px solid #000;
- left:550px; padding-top:2px;
- top:150px;
- padding-bottom:12px;
- text-align:center;
- height:10px;
- width:60px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #cat:hover{
- border-radius: 5px;
- position:absolute;
- overflow-y:scroll;
- overflow-x:hidden;
- border:1px solid #fdc2f6;
- padding:5px;
- height:210px;
- width:300px;
- z-index:999999999;
- background:white;
- }
- #boxl{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #elephant{
- border-radius: 5px;
- position:absolute;
- border:0px solid #000;
- left:600px; padding-top:2px;
- top:150px;
- padding-bottom:11.5px;
- text-align:center;
- height:2px;
- width:35px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #elephant:hover{
- border-radius: 5px;
- position:absolute;
- overflow-y:scroll;
- overflow-x:hidden;
- border:1px solid #fdc2f6;
- padding:5px;
- height:150px;
- width:80px;
- z-index:999999999;
- background:white;
- }
- #box{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #cow{
- border-radius: 5px;
- position:absolute;
- border:0px solid #000;
- left:640px; padding-top:2px;
- top:150px;
- padding-bottom:12px;
- text-align:center;
- height:10px;
- width:60px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #cow:hover{
- border-radius: 5px;
- position:absolute;
- overflow-y:scroll;
- overflow-x:hidden;
- border:1px solid #fdc2f6;
- padding:5px;
- height:180px;
- width:200px;
- z-index:999999999;
- background:white;
- }
- #box{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #monkey{
- border-radius: 5px;
- border:0px solid #000;
- position:absolute;
- left:695px; padding-top:2px;
- top:150px;
- padding-bottom:12px;
- text-align:center;
- height:10px;
- width:60px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #monkey:hover{
- border-radius: 5px
- overflow-y:scroll;
- overflow-x:hidden;
- position:absolute;
- border:1px solid #fdc2f6;
- padding:5px;
- height:180px;
- width:210px;
- z-index:999999999;
- background:white;
- }
- #box{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #pink{
- border-radius: 5px;
- border:0px solid #000;
- position:absolute;
- left:740px; padding-top:2px;
- top:150px;
- padding-bottom:12px;
- text-align:center;
- height:10px;
- width:60px;
- overflow:hidden;
- -webkit-transition: opacity 0.7s linear;
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- background:transparent;
- z-index:9999;
- }
- #pink:hover{
- border-radius: 5px
- overflow-y:scroll;
- overflow-x:hidden;
- position:absolute;
- border:1px solid ##0B610B;
- padding:5px;
- height:210px;
- width:200px;
- z-index:999999999;
- background:white;
- }
- #box{
- height:auto;
- opacity:1.0;
- text-align:center;
- z-index:99999999999999999999;
- background:transparent;
- }
- #creds {
- text-align: left;
- font-size: 11px;
- position:fixed;
- left:10px;
- bottom:-65px;
- -webkit-transition: all .5s ease-in-out;
- -moz-transition: all .5s ease-in-out;
- -o-transition: all .5s ease-in-out;
- z-index:999;
- }
- #creds:hover {bottom:0px;}
- #cred {
- border-right-style:solid;
- border-bottom-style:solid;
- border-left-style:solid;
- border-width:0px;
- border-color:#000;
- padding: 5px 0 5px 0;
- background: #ffffff;
- width:150px;
- height:50px;
- border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- -webkit-border-top-right-radius: 0px;
- z-index: 9999;
- }
- #credtab {
- border-top-style:none;
- border-right-style:solid;
- border-bottom-style:solid;
- border-left-style:solid;
- border-width:0px;
- border-color:#000;
- text-align: center;
- height:13px;
- padding: 2px 0 8px 0;
- background:#ffffff;
- border-top-left-radius: 0px;
- -moz-border-radius-topleft: 0px;
- -webkit-border-top-left-radius: 0px;
- border-top-right-radius: 0px;
- -moz-border-radius-topright: 0px;
- -webkit-border-top-right-radius: 0px;
- width: 41px;
- }
- .nine{
- bottom:5px;
- right:5px;
- font-size:11px;
- z-index:4;
- position:fixed;
- font-family: "raleway";
- padding:0px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .nine:hover{
- bottom:15px;
- font-family: "raleway";
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .nine .linkk{opacity:0;
- bottom:5px;
- right:7px;
- font-family: "raleway";
- font-size:11px;
- z-index:4;
- position:fixed;
- padding:0px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- .nine:hover .linkk{
- opacity:0.9;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- }
- </style>
- {block:IndexPage}
- <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
- </script>
- {block:IfEndlessScrolling}<script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>{/block:IfEndlessScrolling}
- <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
- <script type="text/javascript">
- $(window).load(function () {
- $('#content').masonry(),
- $('.masonryWrap').infinitescroll({
- navSelector : "div#navigation",
- // selector for the paged navigation (it will be hidden)
- nextSelector : "div#navigation a#nextPage",
- // selector for the NEXT link (to page 2)
- itemSelector : ".entry",
- // selector for all items you'll retrieve
- bufferPx : 10000,
- extraScrollPx: 11000,
- loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
- loadingText : "<em></em>",
- },
- // call masonry as a callback.
- function() { $('#content').masonry({ appendedContent: $(this) }); }
- );
- });
- </script>
- <script type="text/javascript">
- $(window).load(function(){
- $("p").remove(":contains('Source:')");
- });
- </script>
- {/block:IndexPage}
- </head>
- <body>
- </center></div>
- </div>
- <div id="rabbit">
- about<br><p>
- <div id="box">
- {description}
- <BR>
- </div></div>
- <div id="pink">
- more<br><p>
- <div id="box">
- {text:moretabcontent}
- <BR>
- </div></div>
- <div id="green">
- updates<br><p>
- {text:updates}
- <div id="box">
- </div></div>
- <div id="monkey">
- stats<br><p>
- <div id="box">
- You are 1 of <script language="JavaScript">
- var ref = (''+document.referrer+'');
- document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID1993095&e1=&e2=&r=' + ref + '"><\/script>');
- </script> on my blog right now
- <br>
- <SCRIPT>
- function GetCookie (name) {
- var arg = name + "=";
- var alen = arg.length;
- var clen = document.cookie.length;
- var i = 0;
- while (i < clen) {
- var j = i + alen;
- if (document.cookie.substring(i, j) == arg)
- return getCookieVal (j);
- i = document.cookie.indexOf(" ", i) + 1;
- if (i == 0) break;
- }
- return null;
- }
- function SetCookie (name, value) {
- var argv = SetCookie.arguments;
- var argc = SetCookie.arguments.length;
- var expires = (argc > 2) ? argv[2] : null;
- var path = (argc > 3) ? argv[3] : null;
- var domain = (argc > 4) ? argv[4] : null;
- var secure = (argc > 5) ? argv[5] : false;
- document.cookie = name + "=" + escape (value) +
- ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
- ((path == null) ? "" : ("; path=" + path)) +
- ((domain == null) ? "" : ("; domain=" + domain)) +
- ((secure == true) ? "; secure" : "");
- }
- function DeleteCookie (name) {
- var exp = new Date();
- exp.setTime (exp.getTime() - 1);
- var cval = GetCookie (name);
- document.cookie = name + "=" + cval + "; expires=" + exp.toGMTString();
- }
- var expDays = 30;
- var exp = new Date();
- exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
- function amt(){
- var count = GetCookie('count')
- if(count == null) {
- SetCookie('count','1')
- return 1
- }
- else {
- var newcount = parseInt(count) + 1;
- DeleteCookie('count')
- SetCookie('count',newcount,exp)
- return count
- }
- }
- function getCookieVal(offset) {
- var endstr = document.cookie.indexOf (";", offset);
- if (endstr == -1)
- endstr = document.cookie.length;
- return unescape(document.cookie.substring(offset, endstr));
- }
- </SCRIPT>
- <SCRIPT>
- document.write("You've been here <b>" + amt() + "</b> times.")
- </SCRIPT>
- <br>
- <script type = "text/javascript">
- /***********************************************
- * Display time of last visit script- by JavaScriptKit.com
- * This notice MUST stay intact for use
- * Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and more
- ***********************************************/
- var days = 730; // days until cookie expires = 2 years.
- var lastvisit=new Object();
- var firstvisitmsg="Welcome to my blog :), thanks for visiting! :)";
- lastvisit.subsequentvisitmsg=" You were last here on <b>[displaydate]</b>";
- lastvisit.getCookie=function(Name){
- var re=new RegExp(Name+"=[^;]+", "i");
- if (document.cookie.match(re))
- return document.cookie.match(re)[0].split("=")[1];
- return'';
- }
- lastvisit.setCookie=function(name, value, days){
- var expireDate = new Date();
- var expstring=expireDate.setDate(expireDate.getDate()+parseInt(days));
- document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; path=/";
- }
- lastvisit.showmessage = function() {
- var wh = new Date();
- if (lastvisit.getCookie("visitc") == "") {
- lastvisit.setCookie("visitc", wh, days);
- document.write(firstvisitmsg);
- }
- else {
- var lv = lastvisit.getCookie("visitc");
- var lvp = Date.parse(lv);
- var now = new Date();
- now.setTime(lvp);
- var day = new Array("Sun", "Mon", "Tues", "Wed", "Thur", "Fri", "Sat");
- var month = new Array ("01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12");
- var dd = now.getDate();
- var dy = now.getDay();
- dy = day[dy];
- var mn = now.getMonth();
- mn = month[mn];
- yy = now.getFullYear();
- var hh = now.getHours();
- var ampm = "AM";
- if (hh == 0)
- if (hh < 10) {hh = "0" + hh};
- var mins = now.getMinutes();
- if (mins < 10) {mins = "0"+ mins}
- var secs = now.getSeconds();
- if (secs < 10) {secs = "0" + secs}
- var dispDate = dy + ", " + mn + " " + dd + " " + yy + " "
- document.write(lastvisit.subsequentvisitmsg.replace("\[displaydate\]", dispDate))
- }
- lastvisit.setCookie("visitc", wh, days);
- }
- lastvisit.showmessage();
- </script></center>
- <BR>
- Your ip address is: <script language="JavaScript" src="http://freehostedscripts.net/ip.php"></script>
- <br>
- You speak: <script language="JavaScript" src="http://freehostedscripts.net/language.php"></script>
- <br>
- You are using: <script language="JavaScript" src="http://freehostedscripts.net/browserinfo.php"></script>
- <br>
- It is <script language="JavaScript" src="http://freehostedscripts.net/date2.php"></script>
- <br>
- </div></div>
- <div id="cat">
- ask<br><p>
- <div id="box">
- {text:FAQ}
- <br>
- <iframe frameborder="0" border="0" scrolling="yes" width="290" height="240" allowtransparency="true" src="http://www.tumblr.com/ask_form/{name}.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
- <BR>
- </div></div>
- <div id="elephant">
- links<br><p>
- <div id="box">
- {block:ifCustomLinkOneTitle}<a href="{text:Custom Link One}" class="links">{text:Custom Link One Title}</a>{/block:ifCustomLinkOneTitle}<br><br>
- {block:ifCustomLinkTwoTitle}<a href="{text:Custom Link Two}" class="links">{text:Custom Link Two Title}</a>{/block:ifCustomLinkTwoTitle}<br><br>
- {block:ifCustomLinkThreeTitle}<a href="{text:Custom Link Three}" class="links">{text:Custom Link Three Title}</a>{/block:ifCustomLinkThreeTitle}<br><br>
- {block:ifCustomLinkFourTitle}<a href="{text:Custom Link Four}" class="links">{text:Custom Link Four Title}</a>{/block:ifCustomLinkFourTitle}<br><br>
- {block:ifCustomLinkFiveTitle}<a href="{text:Custom Link Five}" class="links">{text:Custom Link Five Title}</a>{/block:ifCustomLinkFiveTitle}<br><br>
- {block:ifCustomLinkSixTitle}<a href="{text:Custom Link Six}" class="links">{text:Custom Link Six Title}</a>{/block:ifCustomLinkSixTitle}<br><br>
- {block:ifCustomLinkSevenTitle}<a href="{text:Custom Link Seven}" class="links">{text:Custom Link Seven Title}</a>{/block:ifCustomLinkSevenTitle}<br><br>
- {block:ifCustomLinkEightTitle}<a href="{text:Custom Link Eight}" class="links">{text:Custom Link Eight Title}</a>{/block:ifCustomLinkEightTitle}<br><br>
- <BR>
- </div></div>
- <div id="cow">
- networks<br><p>
- <div id="box">
- {text:networkbadges}
- <BR>
- </div></div>
- {block:Pagination}<div id="page">{block:PreviousPage}<a href="{PreviousPage}">prev ious page \</a> {/block:PreviousPage}</div> <div id="page">{block:nextPage}<a href="{nextPage}">/ next page</a>{/block:nextPage}</div>{/block:Pagination} <div class="navigation">{block:Pagination}{/block:Pagination}</div>
- {block:IfSidebarfadeonscrolldown}
- <script>
- var visible = 0;
- $(window).scroll(function() {
- if($(window).scrollTop()>="60") {
- if(visible == 0){
- $("#sidebar").stop().fadeTo("medium", 1);
- visible = 1;
- }
- }
- else {
- if(visible == 1){
- $("#sidebar").stop().fadeTo("medium", 0.0);
- visible = 0;
- }
- }
- });
- </script>
- {/block:IfSidebarfadeonscrolldown}
- <div id="wrap">
- <div class="header">
- {block:IfHeaderImage}<img style="{block:IndexPage}width:520px;{block:IndexPage} {block:PermalinkPage}width:500px;{/block:PermalinkPage} overflow:hidden; float:left; padding-bottom:15px;" src="{image:header}">{/block:IfHeaderImage}
- <div class="blogtitle">{Title}</div>
- <div style="text-align:right;">
- </div></div>
- <div style="padding-top:15px;"><div id="content">
- {block:Posts}
- {block:Text}<div class="entry">{block:Title}<span class="post_title">{Title}</span>{/block:Title}
- {Body}{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Text}
- {block:Photo}<div class="entry">{block:IndexPage}<a href="{Permalink}">{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}<img src="{block:IndexPage}{PhotoURL-HighRes}{/block:IndexPage}{block:PermalinkPage}{PhotoURL-HighRes}{/block:PermalinkPage}" alt="{PhotoAlt}" {block:IndexPage}width="250"{/block:IndexPage}{block:PermalinkPage}width="520"{/block:PermalinkPage}/>{block:IndexPage}</a>{/block:IndexPage}{block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage} {block:IndexPage}<span class="photo_perma"><a href="{Permalink}"> {NoteCountWithLabel}</a> • <a href="{ReblogURL}" target="_blank">{text:reblog} </a></a></a></span>{/block:IndexPage}</div>{/block:Photo}<!--themeoriginallybyw0lfteeth-->
- {block:Photoset}<div class="entry">{block:IndexPage}{Photoset-250}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{block:IndexPage}{block:IfCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfCaption}{/block:IndexPage}<br>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel} - <a href="{ReblogURL}" target="_blank">{text:reblog} </a></a></span>{/block:IndexPage}</div>{/block:Photoset}<!--themeoriginallybyw0lfteeth-->
- {block:Quote}<div class="entry"><span class="quote">❝</span><div class="quot">{Quote}</div>{block:Source}<div class="source"><p>— {Source}</p></div>{/block:Source}
- {block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Quote} <!--themeoriginallybyw0lfteeth-->
- {block:Chat}<div class="entry">{block:Title}<span class="post_title">{Title}</span>{/block:Title}
- <div id="chat"><ul>{block:Lines}<li>{block:Label}<b>{Label}</b>{/block:Label}{Line}</li>{/block:Lines}</ul></div>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Chat}
- {block:Link}<div class="entry"><span class="post_title"><a href="{URL}">{Name} </span></a>{block:Description}{Description}{/block:Description}{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Link}
- {block:Audio}<div class="entry"><div class="audio"> {block:IfWhiteAudioPlayer}{AudioPlayerWhite}{/block:IfWhiteAudioPlayer}{block:IfNotWhiteAudioPlayer}{AudioPlayerBlack}{/block:IfNotWhiteAudioPlayer}</div> {block:AlbumArt}<img src="{AlbumArtURL}" style="width:50px; height:50px; float:left; padding-right:10px; padding-top:10px; padding-left:5px; padding-bottom:10px;">{/block:AlbumArt}{block:Caption}{Caption}{/block:Caption} <br>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Audio}
- {block:Video}<div class="entry">{block:IndexPage}{Video-250}{/block:IndexPage}{block:PermalinkPage}{Video-500}{/block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}
- {block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Video}<!--themeoriginallybyw0lfteeth-->
- {block:Answer}<div class="entry"><div class="asker">{Question}</div> <br> <div class="triangle">▼</div> <div class="qs">asked by {Asker}</div><br>{Answer}<p>{block:IndexPage}<span class="permalink"><a href="{Permalink}">{TimeAgo} - {NoteCountWithLabel}</a></span>{/block:IndexPage}</div>{/block:Answer}
- {block:PermalinkPage} <div class="notespage"> {block:NoteCount}{NoteCountWithLabel} / {/block:NoteCount} {block:Date}{TimeAgo}{/block:Date} {block:RebloggedFrom}<br>via: <a href="{ReblogParentURL}">{ReblogParentName}</a> , {/block:RebloggedFrom} {block:RebloggedFrom}source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom} {block:HasTags}<br><Br> tagged as: {block:Tags}<a href="{TagURL}">{Tag}</a>, {/block:Tags}{/block:HasTags}</div>
- <div class="postnotes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div> {/block:PermalinkPage}
- {/block:posts}
- {block:IndexPage}
- <div class="column navigation" id="navigation">
- {block:Pagination}
- {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
- </div>
- {/block:IndexPage}
- </div></div></div></body>
- <!--
- Do not remove credit for this edit or you WILL be reported.
- -->
- <div class="nine"><a href="http://c-innamonbun.tumblr.com">theme edit</a><br><div class="linkk"><a href="http://c-innamonbun.tumblr.com">c-innamonbun</a></div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement