Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- alyssa theme by wildthemes. do not remove credits, themes take alot of time and effort to make, you will be reported if you're seen using this theme with no credits.-->
- <!--This work is licensed under a Creative Commons Attribution 3.0 Unported License.
- taking credits off/stealing/using my themes as a basecode is illegal.-->
- <!--editted 30/09/12-->
- <head>
- <meta name="color:background" content="#ffffff" />
- <meta name="color:header background" content="#ffffff" />
- <meta name="text:reblog label" content="reblog" />
- <meta name="color:text" content="#000" />
- <meta name="color:title" content="#000" />
- <meta name="color:link" content="#828282" />
- <meta name="color:blockquote" content="#eee" />
- <meta name="color:scroll" content="#000" />
- <meta name="color:link shadows" content="#000"/>
- <meta name="if:shadow links" content="0"/>
- <meta name="if:rainbow links" content="0"/>
- <meta name="text:Link One" content=""/>
- <meta name="text:Link One Title" content=""/>
- <meta name="text:Link Two" content="" />
- <meta name="text:Link Two Title" content=""/>
- <meta name="text:Link Three" content="" />
- <meta name="text:Link Three Title" content=""/>
- <meta name="text:Link Four" content="" />
- <meta name="text:Link Four 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" src="http://static.tumblr.com/o0thhnj/LCDma95ko/infinite.txt"></script><script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
- <script type="text/javascript">
- $(window).load(function () {
- var $content = $('#content');
- $content.masonry({itemSelector: '.entry'}),
- $content.infinitescroll({
- navSelector : 'div#pagination',
- nextSelector : 'div#pagination a#nextPage',
- itemSelector : '.entry',
- loading: {
- finishedMsg: '',
- img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
- },
- bufferPx : 600,
- debug : false,
- },
- // call masonry as a callback.
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- // ensure that images load before adding to masonry layout
- $newElems.imagesLoaded(function(){
- $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );});});});</script>
- {/block:IndexPage}
- {block:ifrainbowlinks}
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 20;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- {
- if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB;
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- {/block:ifrainbowlinks}
- <meta name="image:background" content="" />
- <style type="text/css">
- ::-webkit-scrollbar {width: 5px; height: 0px; background:{color:background};}
- ::-webkit-scrollbar-thumb {background-color: {color:scroll};}
- iframe#tumblr_controls {top: 1px !important;margin: 0 0 0 0;right:4px !important;position:fixed !important; position:absolute;z-index:99999999999;}
- body, p {
- font-size:10px;
- letter-spacing:0px;
- font-family:helvetica;
- line-height:10px;
- text-transform:none;
- padding: 0px;
- margin-bottom: 4px;
- color: {color:text};
- }
- body {
- background-color: {color:background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- }
- @font-face { font-family: "just realize"; src: url('http://static.tumblr.com/sghs9ih/2tFlu5il8/justrealize.ttf'); }
- #linkss a{
- color:black;
- font-family: just realize;
- margin-right:5px;
- margin-left:5px;
- font-size: 25px;
- margin-top: 5px;
- padding-top:10px;
- text-decoration:none;
- -moz-transition: all .2s;
- -webkit-transition: all .2s;
- -o-transition: all .2s;
- transition: all .2;
- line-height:0px;
- }
- #linkss a:hover{
- color:{color:navhover};
- {block:ifshadowlinks}
- text-shadow:1px 1px 3px {color:link shadow};{/block:ifshadowlinks}
- }
- @font-face {
- font-family: "bebas";
- src: url('http://static.tumblr.com/exioynw/NBFm4wy7z/bebasneue.otf');
- }
- @font-face {
- font-family: "planer";
- src: url('http://static.tumblr.com/exioynw/rIGm8hja8/planer_reg.ttf');
- }
- a {
- text-decoration:none;
- color:{color:text};
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.4s linear;
- transition: all 0.4s linear;
- }
- a:link, a:active, a:visited{
- text-decoration:none;
- color: {color:link};
- }
- a:hover{
- color: {color:link};
- letter-spacing: 0px;
- }
- div#all{
- width:100%;
- height:100%;
- z-index:-100;
- overflow-x:hidden;
- overflow-y:scroll;
- }
- div#center{
- margin-left: 0px;
- width: 100%;
- height: auto;
- }
- div#content {
- width: 1500px;
- margin-left:40px;
- float:left;
- margin-top:150px;
- position: relative;
- }
- .entry {
- float:left;
- height:auto;
- margin:1px;
- background-color: transparent;
- {block:IndexPage}
- width:250px;
- {/block:IndexPage}
- {block:PermalinkPage}
- width:500px;
- {/block:PermalinkPage}
- }
- .wildthemes a {font-family: calibri;
- font-size: 11px;
- letter-spacing:1px;
- text-transform:uppercase;}
- .entry .wildthemes{
- position:absolute;
- width:auto;
- height:20px;
- padding-top:0px;
- padding-right: 7px;
- padding-bottom:7px;
- margin-left: 0px;
- overflow:hidden;
- bottom: 20px;
- line-height:90%;
- text-align:center;
- padding-left: 0px;
- padding-right: 0px;
- opacity:0.0;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear;
- background-color:white;
- }
- @font-face { font-family: "littlefont"; src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf'); }
- .entry:hover .wildthemes{
- overflow:visible;
- -webkit-transition: opacity 0.5s linear; opacity: 0.8;
- transition: all 0.4s linear;
- margin-left: 0px;
- background-color:white;
- bottom: 20px;padding-right: 7px;
- opacity:0.8;
- -webkit-transition: all 0.3s linear;
- -moz-transition: all 0.3s linear;
- transition: all 0.3s linear; }
- }
- .wildthemes:hover{
- opacity: 1;
- width:100px;
- -webkit-transition: all 0.5s linear;
- -moz-transition: all 0.5s linear;
- transition: all 0.5s linear; -moz-box-shadow: 0 0 15px {color:glow colour};
- display: inline-block;
- }
- }
- .entry:hover .details {
- opacity: 1.0;
- margin:12px 0px 0px 0px;
- filter: alpha(opacity = 100);
- -webkit-transition: all .25s ease-in-out;
- -moz-transition: all .25s ease-in-out;
- -o-transition: all .25s ease-in-out;
- transition: all .25s ease-in-out;
- }
- .permahover {
- text-align: right;
- line-height:200%;
- opacity: 0.0;
- filter: alpha(opacity = 0);
- font-size: 9px;
- line-height: 9px;
- text-transform: uppercase;
- }
- .entry:hover .permahover {
- text-align: center;
- opacity: 1;
- filter: alpha(opacity = 50);
- }
- .text {
- padding: 0px;
- }
- .entry:hover .textperma {
- opacity: 1;
- filter: alpha(opacity = 100);
- -webkit-transition: all ease-in 250ms;
- -moz-transition: all ease-in 250ms;
- -o-transition: all ease-in 250ms;
- -ms-transition: all ease-in 250ms;
- transition: all ease-in 250ms;
- }
- .entry:hover{{block:ifglowingimages}
- -webkit-transition: all 0.4s ease-out;
- -moz-transition: all 0.4s ease-out;
- transition: all 0.4s ease-out;
- -moz-box-shadow: 0 0 15px {color:glow colour};
- -webkit-box-shadow: 0 0 15px {color:glow colour};
- box-shadow: 0 0 15px {color:glow colour};
- -webkit-transition: all .25s ease-in-out;
- -moz-transition: all .25s ease-in-out;
- -o-transition: all .25s ease-in-out;
- transition: all .25s ease-in-out;{/block:ifglowingimages}
- }
- .perma
- {
- opacity: 0.0;
- filter: alpha(opacity = 0);
- margin-top: -21px;
- width: px;
- height: 30px;
- line-height: 30px;
- font-size: 9px;
- position:absolute;
- text-align: center;
- z-index:1;
- color: {color:permalink};
- }
- a.p
- {
- color: {color:permalink};
- }
- .entry:hover .perma {
- -webkit-transition: opacity 0.4s linear;
- opacity: 1;
- -moz-transition: all 0.4s linear;
- transition: all 0.4s linear;
- filter: alpha(opacity = 100);
- }
- div#title{
- font-family:just realize;
- font-size:45px;
- padding:20px;
- text-shadow: 1px 1px 3px black;
- color:{color:link}
- }
- div#titlee{
- font-family:just realize;padding:8px;
- text-align:left;
- font-size:30px;
- color:{color:link}
- }
- select {
- font-size: 9px;
- width: 100px;
- margin-left: 10px;
- }
- option {
- font-size: 9px;
- text-align: left;
- }
- input[type=button]
- {
- font-size: 9px;
- }
- .likep {
- width: 21px;
- height: 20px;
- overflow: hidden;
- position: relative;
- z-index: 9999999;
- position: absolute;
- margin-top: 26px;
- margin-left: 5px;
- }
- .rep {
- width: 24px;
- height: 20px;
- overflow: hidden;
- position: relative;
- z-index: 9999999;
- position: absolute;
- margin-top: 26px;
- margin-left: 29px;
- }
- .likep a:hover {
- background-position: 0px 0px;
- }
- .likep a {
- background-image: url("http://static.tumblr.com/uiqhh9x/BPnlzww8v/like.png");
- background-position: 0px 0px;
- display: block;
- z-index: 9999999;
- webkit-transition: all 0s linear;
- -webkit-transition: all 0s linear;
- -moz-transition: all 0s linear;
- transition: all 0s linear;
- }
- .likep img {
- width: 21px;
- height: 20px;
- webkit-transition: all 0.2s linear;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- transition: all 0.2s linear;
- }
- .rep img{
- width: 24px;
- height: 20px;
- line-height: 30px;
- display: inline;
- }
- .not { position: absolute;
- background: url("http://static.tumblr.com/uiqhh9x/X6Ym17xp2/middle.png");
- height: 20px;
- font-size: 11px;
- line-height: 20px;
- color: #fff;
- position: absolute;
- margin-top: 26px;
- margin-left: 56px;
- padding-left: 4px;
- padding-right: 4px;
- -moz-border-radius: 2px;
- border-radius: 2px;
- }
- .not a{
- color: #fff;
- font-weight: none;
- font-family: arial, helvetica, sans-serif;
- }
- .entry:hover .not, .entry:hover .rep, .entry:hover .likep {
- opacity: 1.0;
- filter: alpha(opacity = 100);
- }
- .not:hover , .rep:hover, .likep:hover {
- opacity: 1!important;
- filter: alpha(opacity = 100)!important;
- }
- .entry:hover .permalink{
- width:100px;
- background-color:white;
- margin-left: 240px;
- color: #000;
- margin-top: 0px;
- padding-top: 5px;
- height: 12px;
- overflow:visible;
- opacity:.9;
- -webkit-transition: all 0.4s linear;
- -webkit-transition: all 0.4s linear;
- -moz-transition: all 0.4s linear;
- transition: all 0.4s linear;
- }
- #infscr-loading{
- opacity:0.0;
- }
- .title{
- font-family: planer;
- font-size:20px;
- line-height:20px;
- color: {color:title};
- }
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 4px;
- border-left: 1px solid #555555;
- border-right: 1px solid #555555;
- background:{color:blockquote};
- }
- #description{
- text-align:center;
- margin-left:-7px;
- float:left;
- position:fixed;
- padding-top:5px;
- padding-bottom:5px;
- width:100%;
- background:{color:header background};
- opacity:.5;
- top:0px;
- height:auto;
- z-index:9;
- line-height: 10px;
- color: black;
- -webkit-transition: 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;
- }
- #description:hover{
- opacity:.8;
- -webkit-transition: 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;
- }
- {CustomCSS}
- </style>
- <title>{title}</title>
- <link rel="shortcut icon" href="{PortraitURL-24}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- <script type="text/javascript">
- $(document).ready(function () {
- $('li.drawer div:nth-child(2)').hide();
- $('li.drawer h5').click(function () {
- if ($(this).hasClass('open')) {
- $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');}
- else {
- $('li.drawer div:visible:nth-child(2)').slideUp().prev().removeClass('open');
- $(this).next().slideDown();
- $(this).addClass('open');}
- });
- });
- </script>
- </head>
- <body>
- </div>
- <div id="description"><div id="title"><a href="/">{Title}</a></div>
- <br>{description}
- <center><br>
- <div id="linkss"><br>
- <a href="{text:Link One}">{text:Link One Title}</a> -
- <a href="{text:Link Two}">{text:Link Two Title}</a> -
- <a href="{text:Link Three}">{text:Link Three Title}</a> -
- <a href="{text:Link Four}">{text:Link Four Title}</a> -
- <a href="wildthemes.tumblr.com">theme</a>
- <Br><Br></center></div>
- </div>
- <div id="center">
- <div id="content">
- {block:Posts}
- <div class="entry">
- {block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <div class="caption"><span class="entrytext">{Body}</span></div>
- {block:IndexPage}<a href="{permalink}"><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>{/block:IndexPage}
- {/block:Text}
- {block:Link}
- <div id="titlee"><a href="{URL}" class="title">{Name}</a></div>
- {block:Description}{Description}{/block:Description}
- <div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>{/block:Link}
- {block:Photo}
- {block:indexpage} <div class="wildthemes"><p><a href="{permalink}">{NoteCountwithLabel}</a> | <a href="{ReblogURL}" target="_blank">{text:reblog label}</a> | <a id="like{PostID}" href="javascript:likelink('{PostID}','{Permalink}','');">♥</a> </div>
- <img src="{PhotoURL-HighRes}" width="100%"/>
- {/block:indexpage}
- {block:permalinkpage}
- <a href="{PhotoURL-HighRes}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a>
- {/block:permalinkpage} {block:IndexPage}
- {/block:IndexPage}
- {/block:Photo}
- {block:Photoset}
- <center>
- {block:IndexPage}{Photoset-400}{/block:IndexPage}
- {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
- </center><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
- {/block:IndexPage}
- {/block:Photoset}
- {block:Quote}
- <div style="margin-left:3px;">
- {Quote}</span>
- </div><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
- {/block:Quote}
- {block:Chat}
- <div style="margin-left:3px;">
- {block:Title}<div id="titlee">{Title}</div>{/block:Title}
- {block:Lines}
- {block:Label}
- <b>{Label}</b>
- {/block:Label}
- {Line}<br>
- {/block:Lines}
- </div><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
- {/block:Chat}
- {block:Audio}<div style="height:0px;background-color:black;opacity:0.1;width:100%;margin-top:10px;margin-bottom:5px;"></div>
- <center>{AudioPlayerBlack}
- {block:Caption}{Caption}{/block:Caption}</center>
- {/block:Audio}
- {block:Answer}<img src="{AskerPortraitURL-24}" align="left" z-index: 1; style="padding:2px; border:1px solid #eeeeee"/>{Asker} asked:<br>{Question}<br><P><br>I replied:<br> {Answer}
- <div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
- {/block:Answer}
- {block:Video}
- {block:IndexPage}
- <center>
- {Video-400}</center><div align="right"><div style="font-size:9px;line-height:10px; border-top: 0px #777777 solid; padding-bottom: 2px;">{Notecount} notes</a></span></div></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Video-500}</center>
- {/block:PermalinkPage}
- {block:Video}
- {block:PermalinkPage}
- {block:Caption}{Caption}<div style="height:1px;background-color:black;opacity:0.1;width:100%;margin-top:5px;margin-bottom:5px;"></div>{/block:Caption}
- {block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} · {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}
- {/block:PermalinkPage}
- {block:PostNotes}
- </center></center>
- <div align="left">{PostNotes}</div>
- {/block:PostNotes}
- </div>
- {/block:Posts}
- {block:IndexPage}
- {block:Pagination}
- <div id="pagination">
- {block:NextPage}
- <a id="nextPage" href="{NextPage}"></a>
- {/block:NextPage}
- {block:PreviousPage}
- <a href="{PreviousPage}"></a>
- {/block:PreviousPage}
- </div>
- {/block:Pagination}
- {/block:IndexPage}
- </div>
- <BODY onselectstart="return false;" ondragstart="return false;">
- <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
- <span id="scriptsinsert"> </span>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement