Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- Theme #16 (Redux 01) by
- ╱╭╮╱╱╱╱╱╱╱╱╱╭╮╱╱╭╮
- ╭╯╰╮╱╱╱╱╱╱╱╱┃┃╱╭╯╰╮
- ╰╮╭┫╭╮╭┳━━┳━┫┃╭╋╮╭╋━╮╭━━┳━┳━┳╮╱╭╮
- ╱┃┃╰╯╰╯┃┃━┫╭┫╰╯╋┫┃┃╭╮┫╭╮┃╭┫╭┫┃╱┃┃
- ╱┃╰╮╭╮╭┫┃━┫┃┃╭╮┫┃╰┫┃┃┃╭╮┃┃┃┃┃╰━╯┃
- ╱╰━┻╯╰╯╰━━┻╯╰╯╰┻┻━┻╯╰┻╯╰┻╯╰╯╰━╮╭╯
- ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╭━╯┃
- ╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╱╰━━╯
- aka ashley
- -->
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}<meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <meta name="color:Ask Bubble" content="#f1f1f1"/>
- <meta name="color:Ask Text" content="#a8a8a8"/>
- <meta name="color:Background" content="#ffffff"/>
- <meta name="color:Border" content="#e4e4e4"/>
- <meta name="color:Sidebar" content="#ffffff"/>
- <meta name="color:Sidebar Links" content="#b8b8b8"/>
- <meta name="color:Text" content="#a8a8a8"/>
- <meta name="color:Description" content="#a8a8a8"/>
- <meta name="color:Link" content="#b8b8b8"/>
- <meta name="color:Hover" content="#f2f2f2"/>
- <meta name="color:Post" content="#ffffff"/>
- <meta name="color:Info" content="#a1a1a1"/>
- <meta name="color:Infobg" content="#eeeeee"/>
- <meta name="color:Infobg Triangles" content="#e0e0e0"/>
- <meta name="color:Heart" content="#ff0000"/>
- <meta name="color:Scrollbar" content="#ffffff"/>
- <meta name="image:Sidebar" content=""/>
- <meta name="image:Background" content=""/>
- <meta name="image:Floaties" content=""/>
- <meta name="image:Flowers" content="http://24.media.tumblr.com/13370152779a45618c1a46436b98afd2/tumblr_mv7ipaPfFM1relm2ao1_250.png"/>
- <meta name="text:Links Title" content="NAVIGATION" />
- <meta name="text:Link 1" content="" />
- <meta name="text:Link 1 Text" content="" />
- <meta name="text:Link 2" content="" />
- <meta name="text:Link 2 Text" content="" />
- <meta name="text:Link 3" content="" />
- <meta name="text:Link 3 Text" content="" />
- <meta name="text:Link 4" content="" />
- <meta name="text:Link 4 Text" content="" />
- <meta name="text:Floaties Width" content="20"/>
- <meta name="text:Floaties Height" content="20"/>
- <meta name="if:CoverBackground" content="" />
- <meta name="if:Transparency" content="" />
- <meta name="if:RoundedCorners" content="" />
- <meta name="if:SmallCursor" content="1" />
- <meta name="if:Floaties" content="" />
- <meta name="if:VerticalSidebar" content="" />
- <meta name="if:SidebarFlowers" content="" />
- <meta name="if:Show Sidebar Links" content="1" />
- <meta name="if:Show Link 1" content="1" />
- <meta name="if:Show Link 2" content="1" />
- <meta name="if:Show Link 3" content="1" />
- <meta name="if:Show Link 4" content="1" />
- {block:IfFloaties}
- <script type="text/javascript" >
- /***********************************************
- * Floating image script- By Virtual_Max (http://www.geocities.com/siliconvalley/lakes/8620)
- * Modified by Dynamic Drive for various improvements
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
- ***********************************************/
- var vmin=1;
- var vmax=5;
- var vr=2;
- var zIndex=-101;
- function iecompattest(){
- return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
- }
- function Chip(src,width,height){
- var img=document.createElement('IMG'),wwhs=WWHS();
- img.src=src;
- img.style.position='absolute';
- img.style.zIndex=typeof(window['zIndex'])=='number'?zIndex:'101';
- if (typeof(width)=='number'){
- img.width=width;
- }
- if (typeof(height)=='number'){
- img.height=height;
- }
- document.body.appendChild(img);
- this.img=img;
- this.vx=vmin+vmax*Math.random();
- this.vy=vmin+vmax*Math.random();
- this.w=width+20;
- this.h=height;
- this.xx=wwhs[2]+Math.random()*(wwhs[0]-50);
- this.yy=wwhs[2]+Math.random()*(wwhs[1]-50);;
- this.timer1=null;
- movechip(this);
- }
- function movechip(chip){
- var w=chip.img.width+20,h=chip.img.height,wwhs=WWHS();
- if (document.getElementById){
- chip.xx=chip.xx+chip.vx;
- chip.yy=chip.yy+chip.vy;
- chip.vx+=vr*(Math.random()-0.5);
- chip.vy+=vr*(Math.random()-0.5);
- if(chip.vx>(vmax+vmin)) chip.vx=(vmax+vmin)*2-chip.vx;
- if(chip.vx<(-vmax-vmin)) chip.vx=(-vmax-vmin)*2-chip.vx;
- if(chip.vy>(vmax+vmin)) chip.vy=(vmax+vmin)*2-chip.vy;
- if(chip.vy<(-vmax-vmin)) chip.vy=(-vmax-vmin)*2-chip.vy;
- if(chip.xx<=wwhs[2]){
- chip.xx=wwhs[2];
- chip.vx=vmin+vmax*Math.random();
- }
- if(chip.xx>=wwhs[2]+wwhs[0]-w){
- chip.xx=wwhs[2]+wwhs[0]-w;
- chip.vx=-vmin-vmax*Math.random();
- }
- if(chip.yy<=wwhs[3])
- {chip.yy=wwhs[3];
- chip.vy=vmin+vmax*Math.random();
- }
- if(chip.yy>=wwhs[3]+wwhs[1]-h)
- {chip.yy=wwhs[3]+wwhs[1]-h;
- chip.vy=-vmin-vmax*Math.random();
- }
- chip.img.style.left=chip.xx+"px";
- chip.img.style.top=chip.yy+"px";
- chip.timer1=setTimeout(function(){ movechip(chip); },100);
- }
- }
- function WWHS(){
- if (window.innerHeight) return [window.innerWidth-10,window.innerHeight-10,window.pageXOffset,window.pageYOffset];
- else if (document.documentElement.clientHeight) return [document.documentElement.clientWidth-10,document.documentElement.clientHeight-10,document.documentElement.scrollLeft,document.documentElement.scrollTop];
- return [document.body.clientWidth,document.body.clientHeight,document.body.scrollLeft,document.body.scrollTop];
- }
- </script>
- <script type="text/javascript">
- /***********************************************
- * Floating image script- By Virtual_Max (http://www.geocities.com/siliconvalley/lakes/8620)
- * Modified by Dynamic Drive for various improvements
- * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
- ***********************************************/
- function pagestart(){
- // if you want more floaties, just duplicate the new Chip("{image:Floaties}",{text:Floaties Width},{text:Floaties Height});
- new Chip("{image:Floaties}",{text:Floaties Width},{text:Floaties Height});
- new Chip("{image:Floaties}",{text:Floaties Width},{text:Floaties Height});
- new Chip("{image:Floaties}",{text:Floaties Width},{text:Floaties Height});
- }
- if (window.addEventListener)
- window.addEventListener("load", pagestart, false)
- else if (window.attachEvent)
- window.attachEvent("onload", pagestart)
- else if (document.getElementById)
- window.onload=pagestart
- </script>
- {/block:IfFloaties}
- <style type="text/css">
- /* --- SCROLLBAR ---*/
- ::-webkit-scrollbar {
- width: 5px;height: 5px;}
- ::-webkit-scrollbar-button:start:decrement,
- ::-webkit-scrollbar-button:end:increment {
- height: 3px;display: block;background-color: white;}
- ::-webkit-scrollbar-track-piece {
- background-color: {color:scrollbar};}
- ::-webkit-scrollbar-thumb:vertical {
- height: 9px;background-color: {color:scrollbar};border-top:1px solid {color:scrollbar};border-bottom:1px solid {color:scrollbar};}
- /* ------------------ BODY ------------------*/
- body {
- margin:0px;
- color:{color:text};
- font-family:Calibri;
- font-size:9px;
- line-height:100%;
- background: {color:background} url('{image:background}') fixed;
- {block:IfCoverBackground}coverbackground-webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; {/block:IfCoverBackground}
- }
- iframe#tumblr_controls {
- opacity:.7;transition: .8s ease-in-out;-webkit-transition: .8s ease-in-out;-moz-transition: .8s ease-in-out;-o-transition: .8s ease-in-out;
- }
- {block:IfSmallCursor}*, body, a, a:hover {cursor: url(http://media.tumblr.com/tumblr_mem9zjUXhw1rqv2lu.png), auto;}
- {/block:IfSmallCursor}
- a {
- text-decoration:none;
- outline:none;
- -moz-outline-style:none;
- color:{color:link};
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- img {
- border:none; max-width:100%;
- }
- blockquote {
- margin: 10px 0px 10px 10px; padding-left: 10px; border-left: solid 2px;
- }
- blockquote img{
- max-width:100%;
- }
- h1 {
- font-size:14px;
- text-transform:uppercase;
- line-height:100%;
- }
- a:hover {
- opacity:1;
- color:{color:hover};
- -webkit-transition: all 0.7s ease;
- -moz-transition: all 0.7s ease;
- -o-transition: all 0.7s ease;
- }
- /* --------------- POSTS ---------------*/
- #entries {
- margin-left:490px;
- margin-top:30px;
- width:400px;
- padding:10px;
- padding-bottom: 50px;
- font-size:11px; background:opacity 0.6;
- }
- #post {
- {block:IfTransparency}
- opacity:.9;
- {/block:IfTransparency}
- margin-top:30px;
- width:400px;
- padding:10px;
- box-shadow:rgba(0,0,0,.07)5px 5px;
- padding-bottom:10px;
- background-color:{color:Post};
- {block:IfRoundedCorners}
- border-radius:10px;
- {/block:IfRoundedCorners}
- }
- #quote {
- font-size: 20px;
- font-family:'times new';
- font-style:italic;
- line-height:100%;
- }
- /* -------------- SIDEBAR --------------*/
- #sidebar {
- {block:IfVerticalSidebar}
- margin-left:270px;
- margin-top:170px;
- width:151px;
- height: 253px;
- {/block:IfVerticalSidebar}
- {block:IfRoundedCorners}
- border-radius:10px;
- {/block:IfRoundedCorners}
- {block:IfnotVerticalSidebar}
- margin-left:180px;
- margin-top:220px;
- width:278px;
- height: 143px;
- {/block:IfnotVerticalSidebar}
- position:fixed;
- {block:IfTransparency}
- opacity:.9;
- {/block:IfTransparency}
- box-shadow:rgba(0,0,0,0.07)5px 5px;
- background-color:{color:Sidebar};
- }
- #sidebarimage {
- {block:IfVerticalSidebar}
- width:120px;
- {/block:IfVerticalSidebar}
- {block:IfnotVerticalSidebar}
- width: 108px;
- {/block:IfnotVerticalSidebar}
- height: 100px;
- margin-left:12px;
- margin-top:13px;
- }
- #sidebarimage img {
- {block:IfVerticalSidebar}
- width:120px;
- height: 120px;
- {/block:IfVerticalSidebar}
- {block:IfnotVerticalSidebar}
- height: 110px;
- {/block:IfnotVerticalSidebar}
- padding:2px;
- border:solid 1px {color:border};
- background-color:{color:Sidebar};
- }
- #sideg {
- {block:IfVerticalSidebar}
- margin-top:50px;
- margin-left:-5px;
- {/block:IfVerticalSidebar}
- {block:IfnotVerticalSidebar}
- margin-top:-69px;
- margin-left:121px;
- {/block:IfnotVerticalSidebar}}
- #flowers {
- position:fixed;
- margin-left:15px;
- margin-top:-60px;
- }
- #flowers img{
- width:40px;
- height:40px;
- }
- #flowers2 {
- position:fixed;
- margin-left:60px;
- margin-top:-60px;
- }
- #flowers2 img{
- width:40px;
- height:40px;
- }
- #flowers3 {
- position:fixed;
- margin-left:105px;
- margin-top:-60px;
- }
- #flowers3 img{
- width:40px;
- height:40px;
- }
- .links {
- margin-top:-25px;
- margin-left:5px;
- width:130px;
- height:5px;
- position:fixed;
- padding: 9px;
- padding-bottom:7px;
- text-align:center;
- text-transform:uppercase;
- word-spacing:5px;
- font-family:calibri;
- }
- .links a {
- font-size: 10px;
- color:{color:Sidebar Links};
- }
- .links a:hover {
- color:{color:Hover}
- }
- #menu {
- {block:IfSidebarFlowers}
- margin-top:25px;
- {/block:IfSidebarFlowers}
- {block:IfnotSidebarFlowers}
- margin-top:0px;
- {/block:IfnotSidebarFlowers}
- margin-left:15px;
- }
- #description {
- margin-top:22px;
- margin-left:8px;
- width:125px;
- position:fixed;
- padding:8px;
- line-height:100%;
- text-align:justify;
- font-size:11px;
- font-style:italic;
- font-family:cambria;
- color:{color:Description};
- }
- #description a {
- color:{color:Description};
- -moz-transition-duration:0.4s;
- -webkit-transition-duration:0.4s;
- -o-transition-duration:0.4s;
- }
- #pagination {
- height: 20px;
- width:145px;
- margin-left: 770px;
- margin-bottom: 20px;
- }
- #pagination a {
- box-shadow:rgba(0,0,0,0.07)3px 3px;
- background-color:{color:Post};
- padding:5px;
- border: 2px solid {color:infobg triangles};
- }
- #pagination a:hover {
- color: {color:link};
- background-color:{color:infobg triangles};
- border: 2px solid {color:Post};
- }
- #pagination .current_page {
- box-shadow:rgba(0,0,0,0.07)3px 3px;
- background-color:{color:infobg triangles};
- padding:5px;
- border: 2px solid {color:Post};}
- /* ---------------------- --------------*/
- #sideinfo {
- position: absolute;
- background: {color:Post};
- margin-top: -10px;
- {block:IfRoundedCorners}
- margin-top:0px;
- {/block:IfRoundedCorners}
- height:45px;
- width: 20px;
- padding:5px;
- margin-left: 397px;
- opacity: 0;
- line-height:10%;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- }
- #post:hover #sideinfo {
- opacity:1;
- margin-left:410px;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- -o-transition: all 0.2s ease-in-out;
- -ms-transition: all 0.2s ease-in-out;
- }
- #info {
- color: {color:info};
- width:442px;
- background-color: {color:infobg};
- padding:5px;
- margin-top:10px;
- margin-left:-26px;
- text-align:center;
- text-transform:uppercase;
- font-size:10px;
- font-style:none;
- font-family:calibri;
- line-height:110%;
- }
- #info a {
- color: {color:info};
- }
- #info a:hover {
- color:{color:Hover}
- }
- #info k {
- color:{color:Heart};}
- #infor {
- float:right;
- margin-top:-21px;
- margin-right:-5px;
- width: 0;
- height: 0;
- border-bottom: 16px solid {color:infobg triangles};
- border-right: 16px solid transparent;
- }
- #infol {
- margin-top:-21px;
- margin-left:-5px;
- float:left;
- width: 0;
- height: 0;
- border-bottom: 16px solid {color:infobg triangles};
- border-left: 16px solid transparent;
- }
- #tags {
- padding:2px;
- border-top: 1px solid {color:infobg triangles};
- padding-top:4px;
- margin-top:4px;
- text-align:center;
- text-transform:lowercase;
- font-size:10px;
- font-style:italic;
- letter-spacing:0px;
- }
- #tags a {
- text-decoration:underline;
- word-spacing:1px;
- display:inline;
- padding:-3px;
- text-align:left;
- color:{color:info};
- -webkit-transition: all 0.6s ease-in-out;
- -moz-transition: all 0.6s ease-in-out;
- -o-transition: all 0.6s ease-in-out;
- -ms-transition: all 0.6s ease-in-out;
- transition: all 0.6s ease-in-out;
- }
- #ask {
- color: {color:Ask Text};
- font-size: 11px;
- background: {color:Ask Bubble};
- -moz-border-radius: 8px;
- -webkit-border-radius: 8px;
- border-radius: 8px;
- padding: 16px;
- position: relative;
- }
- #asker {
- margin-left:45px;
- margin-top:5px;font-size: 11px;
- font-family:calibri;
- color: {color:link};
- }
- #answer {
- margin-left: 5px;font-size:11px;}
- #nipster {
- margin-top:25px;
- position:absolute;
- width: 0;
- height: 0;
- border-left: 20px solid transparent;
- border-right: 0px solid transparent;
- border-top: 15px solid {color:Ask Bubble};
- }
- #reblog img{
- height:20px;
- width:22px;
- }
- .notes li {
- padding-top:4px;
- list-style-type:decimal-leading-zero;
- }
- .notes a {
- text-decoration:underline;
- }
- .notes img{
- {block:IfTransparency}
- opacity:.8;
- {/block:IfTransparency}
- border-radius:100px;
- }
- .chat {
- border-left: 3px solid #dddddd;}
- .chat .even {
- background-color: #E8E8E8;
- padding: 4px;margin-bottom: 1px;
- }
- .chat .odd {
- background-color: #F5F5F5;padding: 4px;margin-bottom: 1px; }
- {CustomCSS}</style></head><body>
- <div id="sidebar">
- <div id="sidebarimage"><img src="{image:sidebar}"></div>
- <div id="sideg">
- {block:IfSidebarFlowers}
- <div id="flowers"><img src="{image:flowers}"></div>
- <div id="flowers2"><img src="{image:flowers}"></div>
- <div id="flowers3"><img src="{image:flowers}"></div>
- {/block:IfSidebarFlowers}
- <div id="description">
- {Description}
- </div>
- {block:ifShowSidebarLinks}
- <div class="links">
- <a href="/">refresh</a>
- <a href="/ask">message</a>
- <a href="/archive">archive</a>
- </div>
- {/block:ifShowSidebarLinks}
- <div id="menu"><select onchange='location=this.options[this.selectedIndex].value;' style='width:130px; font-family: calibri;'>
- <option>{text:Links Title}</option>
- {block:IfShowLink1}<option value="{text:Link 1}">{text:Link 1 Text}</option>{/block:IfShowLink1}
- {block:IfShowLink2}<option value="{text:Link 2}">{text:Link 2 Text}</option>{/block:IfShowLink2}
- {block:IfShowLink3}<option value="{text:Link 3}">{text:Link 3 Text}</option>{/block:IfShowLink3}
- {block:IfShowLink4}<option value="{text:Link 4}">{text:Link 4 Text}</option>{/block:IfShowLink4}
- <option value="http://twerkitnarry.tumblr.com">©</option>
- </select>
- </div></div>
- </div>
- <div id="entries">{block:Posts}<div id="post">
- <div id="sideinfo"> {LikeButton size="21" color="grey"} <Br><Br> <div id="reblog"><a href="{ReblogURL}" target="_blank"> {ReblogButton size="21" color="grey"} </a></div></div>
- {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
- {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
- {block:Quote}<div id="quote">“{Quote}”</div>{block:Source}<br>— {Source}{/block:Source}{/block:Quote}
- {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
- {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}<div class="chat">{block:Lines}{block:Label}<b><div class="line {Alt}">{Label}</b>{/block:Label} {Line}</div>{/block:Lines}</div>{/block:Chat}
- {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="80px" height="80px" align="left" style="margin-right:10px;" />{/block:AlbumArt}<span class="audio">{AudioPlayerGrey}</left></span>
- <br>{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
- <br>{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
- {block:PlayCount} <br><b>Played:</b> {FormattedPlayCount} times<br><br><br>{/block:PlayCount} {/block:ExternalAudio}
- {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
- {/block:Audio}
- {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
- {block:Answer}<div id="ask"><div id="nipster"></div>{Question}</div><div id="asker"> {Asker}</div> <br> <div id="answer">{Answer}</div>{/block:Answer}
- <div id="info"><div id="infol"></div><div id="infor"></div>
- {block:Date}{TimeAgo}{/block:Date} <k>❤</k><a href="{Permalink}">
- {NoteCountWithLabel}</a> {block:RebloggedFrom} — <a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}{block:ContentSource} © <a href="{SourceURL}">source</a>{/block:ContentSource}{block:HasTags}<div id="tags">tagged with: {block:Tags} -<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags} </div></div>{/block:Posts}{block:PostNotes}{PostNotes}</div>{/block:PostNotes}{/block:Posts} </div></div>
- {block:Pagination}<div id="pagination">
- {block:PreviousPage}<a href="{PreviousPage}">←</a>{/block:PreviousPage}
- {block:JumpPagination length="3"}
- {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}">→</a>{/block:NextPage}
- </div>{/block:Pagination}
- </body></html>
Advertisement
Add Comment
Please, Sign In to add comment