Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <script type="text/javascript">
- // <![CDATA[
- // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
- var fgcolour="#4B2963"; // foreground colour
- var hlcolour="#9982AF"; // highlight colour
- var bgcolour="#ffffff"; // background colour
- var glcolour="#A387B6"; // colour of glow around letters
- var speed=66; // speed colours change, 1 second = 1000
- var delay=50; // how long to wait between wipes
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- *Multi-Wipe Neon Text Effect*
- *(c)2003-12 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var w_txt, w_txl;
- var w_flp=bgcolour;
- var w_sty=Math.floor(Math.random()*8);
- var w_cnt=-1;
- var wipes=new Array();
- var wrand=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, wiper, wipei;
- wiper=document.getElementById("wipe");
- w_txt=wiper.firstChild.nodeValue;
- w_txl=w_txt.length;
- while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
- for (i=0; i<w_txl; i++) {
- wipei=document.createElement("span");
- wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
- wipes[i]=wipei.style;
- wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=fgcolour;
- wiper.appendChild(wipei);
- }
- if (alink) {
- wiper.style.cursor="pointer";
- wiper.onclick=function() { top.location.href=alink; }
- }
- for (i=0; i<w_txl; i++) wrand[i]=i;
- wiper=setInterval("randwipe()", speed);
- }}
- function c(i, shade) {
- if (shade==bgcolour) wipes[i].textShadow="none";
- else wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=shade;
- }
- function randwipe() {
- var w_old;
- if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
- else {
- w_cnt=-1;
- w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- w_old=w_sty;
- while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
- }
- }
- function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
- function wipe0() { // curtains
- if (w_cnt<Math.floor(w_txl/2)) {
- c(w_cnt, hlcolour);
- c(w_txl-w_cnt-1, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt, w_flp);
- c(w_txl-w_cnt-1, w_flp);
- }
- }
- function wipe1() { // random
- var i, rand, temp;
- if (w_cnt==0) {
- for (i=0; i<w_txl; i++) {
- rand=Math.floor(Math.random()*w_txl);
- temp=wrand[i];
- wrand[i]=wrand[rand];
- wrand[rand]=temp;
- }
- }
- if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
- }
- function wipe2() { // forwards
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- }
- function wipe3() { // backwards
- if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
- }
- function wipe4() { // searchlight
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
- if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
- if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- }
- function wipe5() { // fade
- var i;
- if (w_cnt<w_txl+3) {
- var start=(w_flp==fgcolour)?bgcolour:fgcolour;
- var temp="#";
- for (i=1; i<6; i+=2) {
- var hex1=parseInt(start.substring(i,i+2),16);
- var hex2=parseInt(w_flp.substring(i,i+2),16);
- temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
- }
- for (i=0; i<w_txl; i++) c(i, temp);
- }
- }
- function wipe6() { // flash
- var i;
- if (w_cnt<6*Math.floor(w_txl/6)+3) {
- if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
- else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
- else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
- }
- }
- function wipe7() { // checkerboard
- var qtr=Math.floor(w_txl/4);
- if (w_cnt<qtr) {
- c(w_cnt, hlcolour);
- c(w_cnt+2*qtr, hlcolour);
- }
- else if (w_cnt<2*qtr) {
- c(w_cnt-qtr, w_flp);
- c(w_cnt+qtr, w_flp);
- }
- else if (w_cnt<3*qtr) {
- c(w_cnt-qtr, hlcolour);
- c(w_cnt+qtr, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt-2*qtr, w_flp);
- c(w_cnt, w_flp);
- }
- }
- // ]]>
- </script>
- <!-- DEFAULT VARIABLES -->
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#17A3B6"/>
- <meta name="color:text" content="#000"/>
- <meta name="color:title" content="#000"/>
- <meta name="color:link" content="#777"/>
- <meta name="color:hover" content="#ccc"/>
- <meta name="image:sidebar" content=""/>
- <meta name="if:show photo" content="0"/>
- <meta name="if:infinite scrolling" content="1"/>
- <meta name="if:tiny scrollbar" content="1"/>
- <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
- <style type="text/css">
- #biter
- #bite a {display:block}
- #bite .death {margin-top:-40px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
- #bite:hover .death {margin-top:2px;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
- body {
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;}
- body, div, p, textarea, submit, input{
- font-family: littlefont;
- font-size: 8px;
- line-height:9px;
- letter-spacing:0px;
- color:{color:Text};
- }
- p {
- margin:0px;
- margin-top:0px;
- }
- a:link, a:active, a:visited{
- color: {color:Link};
- text-decoration: none;
- -webkit-transition: color 0.3s ease-out;
- -moz-transition: color 0.3s ease-out;
- transition: color 0.3s ease-out;
- }
- a:hover{
- color:{color:Hover};
- -webkit-transition: color 0.2s ease-out;
- -moz-transition: color 0.2s ease-out;
- text-decoration: none;
- font-style: none;}
- div#center{
- margin:auto;
- position:relative;
- width:640px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- div#content{
- float:right;
- width:304px;
- margin-top: 0px;
- padding-left:0px;
- padding-right: 0px;
- padding-top: 0px;
- margin-right: 130px;
- background: transparent;
- }
- div#entry{
- background-color:;
- margin-bottom: 0px;
- padding-top:0px;
- padding-bottom:0px;
- }
- #entry .perma a{
- color:{color:Link};
- }
- #entry .perma{
- position:absolute;
- text-align:left;
- font-family:littlefont;
- text-transform:uppercase;
- letter-spacing:2px;
- font-size:8px;
- overflow:hidden;
- height:30px;
- width:160px;
- padding-left:3px;
- padding-right:3px;
- margin-left:400px;
- border-left: 2px solid #000000;
- opacity:0;
- color:;
- background-color: trans;
- -webkit-transition: opacity 1s linear;-webkit-transition: all 0.9s ease-in-out;-moz-transition: all 0.9s ease-in-out;-o-transition: all 0.9s ease-in-out;
- }
- #entry:hover .perma{
- margin-left:307px;
- width:100px;
- opacity:1;
- }
- div#sidebar{
- position:fixed !important;
- width: 268px;
- height:auto;
- margin-top: 150px;
- margin-left: -165px;
- padding: 0px;
- line-height:11px;
- letter-spacing:0px;
- margin-bottom: 0px;
- background-color:;
- }
- .navigate {display: block;
- width: 43px;
- height: 18px;
- background-color:transparent;
- background: url('http://www.hellostar.org/wp-admin/images/q1.gif') no-repeat left;
- font-size:8px;
- letter-spacing:0px;
- font-family: littlefont;
- margin-top:5px;
- margin-left:3px;
- line-height:18px;
- text-align:center;
- -webkit-transition-duration: .6s;
- border-top-right-radius:70px;
- border-bottom-right-radius:70px;
- border-top-left-radius:70px;
- border-bottom-left-radius:70px;
- display: inline-block;
- }
- .navigate:hover {
- background-color:transparent;
- background: url('http://www.hellostar.org/wp-admin/images/q2.gif') no-repeat left;
- -moz-transition: all .2s ease-in-out;
- -o-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
- -webkit-transition: all .2s ease-in-out;
- -webkit-transition-duration: .8s;
- transform: rotate(360deg);
- border-top-right-radius:0px;
- border-bottom-right-radius:0px;
- border-top-left-radius:0px;
- border-bottom-left-radius:0px;
- }
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- @font-face { font-family: "sunshine"; src: url('http://static.tumblr.com/5fd89aw/U3vli7rvs/sunshine_in_my_soul.ttf'); }
- .title{
- font-family: 'sunshine', cursive;
- font-size: 13px;
- line-height: 15px;
- color: {color:Title};
- letter-spacing: 0px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- .blogtitle{
- font-family: 'sunshine', cursive;
- font-size: 34px;
- line-height: 15px;
- color: {color:Title};
- letter-spacing: 0px;
- font-weight: normal;
- padding:0px 0px 0px 0px;
- }
- .video embed, .post div.video object {width:300px !important; height:180px !important;}
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 1px;
- border-left: 1px dotted #555555;
- }
- blockquote p, ul{
- margin:0px;
- padding:0px;
- }
- a img{border: 0px;}
- ul, ol, li{list-style:none; margin:0px; padding:0px;}
- .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
- .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
- .notes img{width:10px; position:relative; top:3px;}
- .permalink{
- display: block;
- font-size: 10px;
- text-align: right;
- text-decoration: none;
- }
- .permalink{ display: block;
- font-size: 8px;
- text-align: right;
- background-color:{color:Entry};}
- small{font-size: 90%;}
- @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
- </style>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $().UItoTop({ easingType: 'easeOutQuart' });
- });
- </script>
- </head>
- <body>
- <div>
- <div id="cage">
- <div id="center">
- <div id="sidebar">
- <center>
- <div id="bite">
- <div class="blogtitle"><a href="/"><span id="wipe">{Title}</span></a></div>
- <br><br><br>
- <div class="death">
- <div class="navigate"><a href="/"><center>Home</center></a></div> <div class="navigate"><a href="/ask"><center>Ask</center></a></div> <div class="navigate"><a href="/faq"><center>Faq</center></a></div> <div class="navigate"><a href="/etc"><center>Etc.</center></a></div> <div class="navigate"><a href="http://alyshasthemes.tumblr.com"><center>Love</center></a>
- </div>
- </div>
- {Description}
- </center>
- <big><b><div style="float: right; position: fixed; bottom: 5px; left: 5px; text-transform:lowercase;"><a href="http://www.rev-rse.tumblr.com"><small> © theme</small></a></div></big></b>
- {block:ifinfinitescrolling}{/block:ifinfinitescrolling}
- </div>
- <div id="content">
- {block:Posts}
- <div id="entry">
- {block:Text}
- {block:Title}<span class="title">{Title}</span><br>{/block:Title}
- <span class="entrytext">{Body}</span>
- <span class="permalink"><a href="{permalink}">{notecount}</a></span>
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a><br>
- {block:Description}{Description}{/block:Description}
- <span class="permalink"><a href="{permalink}">{notecount}</a></span>
- {block:Link}
- {block:Photo}<center>
- {block:IndexPage}
- <div class="perma">
- <a href="{permalink}">{TimeAgo}</a> <a href="{permalink}">{NoteCountWithLabel}</a> <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
- {/block:IndexPage}
- {LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=304px></a>{LinkCloseTag}</center>{block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}
- {/block:Photo}
- {block:Quote}
- {Quote}</span>
- {block:Source}<strong>{Source}</strong>{/block:Source}
- <span class="permalink"><a href="{permalink}">{notecount}</a></span>
- {/block:Quote}
- {block:Chat}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- <span class="permalink"><a href="{permalink}">{notecount}</a></span>
- {/block:Chat}
- {block:Audio}
- <center><div style="width:220px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
- {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br>
- {/block:Audio}
- {block:Video}<center>
- <div class="video">{Video-400}</div></center>
- <span class="permalink"><a href="{permalink}">{notecount}</a></span>
- {block:Video}
- {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
- {block:PostNotes}{PostNotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- {block:ifshowarrows}{/block:ifshowarrows}
- </center>
- </div></div>
- </div>
- </center>
- </div>
- </div></div></div></div></div></div></div></div></div></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment