Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Theme #2 by Regina @ moaningshire
- Please dont remove credit, or claim as your own! -->
- <!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>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"> </a>');
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- $('body').append('<div id="fade"></div>');
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
- return false;
- });
- $('a.close, #fade').live('click', function() {
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <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:background" content="#ffffff"/>
- <meta name="color:border" content="f3f1f1"/>
- <meta name="color:text" content="#b6b5b5"/>
- <meta name="color:link" content="#9e9d9d"/>
- <meta name="color:linkhover" content="f1d65d"/>
- <meta name="font:title" content="" />
- <meta name="font:body" content="cambria" />
- <meta name="font:pagination" content="cambria" />
- <meta name="image:sidebar" content=""/>
- <!-- LINKS -->
- <meta name="text:link 1" content="link 1" />
- <meta name="text:link 1 url" content="/" />
- <meta name="text:link 2" content="link 2" />
- <meta name="text:link 2 url" content="/" />
- <meta name="text:link 3" content="link 3" />
- <meta name="text:link 3 url" content="/" />
- <style type="text/css">
- #fade { /*--Transparent background layer--*/
- display: none; /*--hidden by default--*/
- background: #000;
- position: fixed; left: 0; top: 0;
- width: 100%; height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none; /*--hidden by default--*/
- background: #fcfbf8;
- padding: 10px;
- border: 5px solid #e8e8e8;
- float: left;
- font-size: 10;
- position: fixed;
- top: 50%; left: 50%;
- z-index: 99999;
- /*--CSS3 Box Shadows--*/
- -webkit-box-shadow: 0px 0px 20px #000;
- -moz-box-shadow: 0px 0px 20px #000;
- box-shadow: 0px 0px 20px #000;
- /*--CSS3 Rounded Corners--*/
- -webkit-border-radius: 5px;
- -moz-border-radius: 5px;
- border-radius: 5px;
- }
- img.btn_close {
- float: right;
- margin: -20 -20px 0 0;
- }
- /*--Making IE6 Understand Fixed Positioning--*/
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- ::-webkit-scrollbar {
- width: 5px;height: 5px;}
- ::-webkit-scrollbar-button:start:decrement,
- ::-webkit-scrollbar-button:end:increment {
- height: 6px;display: block;background-color: {color:text};}
- ::-webkit-scrollbar-track-piece {
- background-color: {color:background};}
- ::-webkit-scrollbar-thumb:vertical {
- height: 9px;background-color: {color:text};border-top:1px solid {color:background};border-bottom:1px solid {color:background};}
- /** ASKBOX SETTING **/
- .bubble {
- align:right;
- background: #eee;
- margin:7px 0px 5px 66px;
- padding:10px;
- position:relative;
- -moz-border-radius:0px;
- -webkit-border-radius:0px;
- border-radius:0px;
- }
- .bubble p {
- margin:0px 0px;
- }
- .bubble span {
- display:block;
- position:absolute;
- width:1px;
- height:1px;
- font-size:0;
- line-height:1px;
- left:-10px;
- top:10px;
- border-top:7px solid transparent;
- border-bottom:7px solid transparent;
- border-right:10px solid #eee;
- }
- .askborder {
- float:left;
- margin: 1px 4px 0 0;
- padding: 2px;
- background: #eee;
- }
- /* --- BODY ---*/
- body {
- background:{color:background};
- font-family:'cambria';
- margin:0px;
- color:{color:text};
- font-size:9px;
- line-height:12px;
- }
- blockquote {
- border-left:1px solid #f8f8f8;
- padding-left:2px;
- margin:5px;
- }
- a {color:#9e9d9d; text-decoration:none; webkit-transition:all 0.5s ease-in-out; -moz-transition:all 0.5s ease-in-out; -o-transition:all 0.5s ease-in-out; -ms-transition:all 0.5s ease-in-out; transition:all 0.5s ease-in-out; }
- a:hover {text-decoration:underline; color:#eeeeee;}
- img:hover{opacity:0.8;-webkit-transition:all 0.5s ease-in-out; -moz-transition:all 0.5s ease-in-out; -o-transition:all 0.5s ease-in-out; -ms-transition:all 0.5s ease-in-out; transition:all 0.5s ease-in-out;}
- blockquote {
- padding-left:5px;
- border-left:1px solid;
- margin:0px 2px 0px 5px;
- }
- blockquote blockquote {
- padding-left:4px;
- border-left:1px solid;
- margin:0px 2px 0px 5px;
- }
- #entries {padding:10px; width:500px; margin-left:500px; margin-top:50px; font-size:10px;}
- #post {width:500px; padding-bottom:30px; font-style:none; border: 1px;}
- /* --- SIDEBAR ---*/
- #sidebar {width:120px; position:fixed; margin-left:-10px; margin-top:120px; border-radius:0px;}
- #sidebarimage {width 120px;}
- #sidebarimage img { margin-left:270px; width:120px; margin-top:-6px; border:solid 1px #f8f8f8; padding:5px; padding-bottom:6px; background-color: #ffffff;}
- #description {padding: 5px; margin-left: -125px; margin-top: 25px; width: 135px; line-height: 100%; background-color:#ffffff; border-top:0px solid #f0f0f0; border-bottom:0px solid #f0f0f0; text-transform:none; text-align:center; font-family:calibri; font-size: 8px; font-style: none; width:110px;}
- #links {position: fixed; font-family:calibri; padding-top: 0px; padding-bottom:0px; margin-top:-110px; margin-left:400px; padding-left:0px; letter-spacing:1px;}
- a:hover {color:{color:#eeeeee};
- text-decoration:underline;
- letter-spacing:3px;
- transition:all 0.4s ease-in-out;
- -webkit-transition: all 0.4s ease-in-out;
- -moz-transition: all 0.4s ease-in-out;
- -ms-transition: all 0.4s ease-in-out;
- -o-transition: all 0.4s ease-in-out;
- }
- #links a {
- text-transform:uppercase;
- line-height:11px;
- color:{color:#eeeeee};
- margin-left:1px;
- margin-right:1px;
- font-size:7px;
- letter-spacing:1px;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- -o-transition: all 0.2s ease;
- }
- #links a:hover {
- color:#b8b8b8;
- margin-left:-2px;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- -o-transition: all 0.2s ease;
- }
- .note {padding:0px 20px 0px 20px; background-color:#FFFFFF;text-transform:lowercase; letter-spacing:0px; font-size: 11px; font-style:italic; text-align:left; line-height:120%;}
- .note li {list-style-type:none; padding:5px 25px 5px 25px; text-align:left;
- margin-left:30px; margin-top:-50px;}
- #info {font-family:cambria; text-align:center; margin-top:5px; padding-top:5px; padding:5px; text-transform:uppercase; font-style:none; font-size:8px; line-height:80%; border-top: 1px solid #eeeeee;}
- #tags {font-family:cambria; text-align:center; margin-top:-5px; padding-bottom:3px; text-transform:uppercase; font-style:none; font-size:8px;}
- #asker {
- float:left;
- margin-right:5px;}
- #pagination {font-size:8px;
- margin-top:10px;
- margin-left:200px;
- font-family:arial;
- text-align:center;}
- .credit {
- position:fixed;
- bottom:10px;
- right:10px;
- font: 9px calibri;
- color: {color:#c9c9c9};
- border: 1px solid #e8e8e8;
- background-color: #FAFAFA;
- text-transform:uppercase;
- letter-spacing:0.5px;
- padding: 4px;}
- .credit a {
- color:{color:link}; opacity:0.8;
- background-color: #fafafa;}
- .credit a:hover {
- color:{color:link hover}; opacity:0.8;
- background-color: #FAFAFA; opacity:0.8;}
- {CustomCSS}</style></head><body>
- <div id="sidebar">
- <div id="pagination">
- {block:Pagination}
- <div id="pagination">
- {block:PreviousPage}
- <a href="{PreviousPage}">←</a>
- {/block:PreviousPage}
- {block:NextPage}
- <a href="{NextPage}">→</a>
- {/block:NextPage}
- </div>
- {/block:Pagination}</div>
- <div id="sidebarimage"><img src="{image:sidebar}"/></div><br>
- <div id="links">
- <a href="/">home</a><br/>
- <a href="#?w=500" rel="02" class="poplight">mail</a> <br/>
- {block:IfLink1} <a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:IfLink1}<br/>
- {block:IfLink2} <a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:IfLink2}<br/>
- {block:IfLink3} <a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:IfLink3}<br/>
- {block:IfLink4} <a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:IfLink4}<br/>
- <div id="description">{Description}</div>
- {block:HasPages}{block:Pages}
- <a href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages}
- </div></center></i>
- </div>
- <div id="entries">{block:Posts}<div id="post">
- {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1><i>{Body}</i>{/block:Text}
- {block:Photo}
- <center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}<i>{Caption}</i>{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- <center>{Photoset-500}</center>{block:Caption}<i>{Caption}</i>{/block:Caption}
- {/block:Photoset}
- {block:Quote}<i>{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}</i>
- {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}<i>{Description}</i>{/block:Description}{/block:Link}
- {block:Chat}<i>{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b><u>{Label}</u></b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}</i>
- {block:Audio}{AudioPlayerWhite}{block:Caption}<i>{Caption}</i>{/block:Caption}{/block:Audio}
- {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
- {block:Answer}<div id="asker"><img src="{AskerPortraitURL-24}"></div>{Asker}:<br>{Question}<br>{Answer}{/block:Answer}
- <div id="info">
- {block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:Date} + <a href="{Permalink}">{timeago} {/block:Date}{/block:Date}</a> </a> {block:RebloggedFrom} + <a href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}</a> {block:ContentSource}<a href="{SourceURL}">source</a>{/block:ContentSource}</div>
- <div id="tags">
- {block:HasTags} {block:Tags} <a href="{TagURL}">#{Tag}</a> {/block:Tags}{/block:HasTags}</div>
- </div>
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:Posts}</div>
- </div>
- <div class="credit"><b><a href="http://moaningshire.tumblr.com/">©</a>
- </div>
- </body>
- <div id="02" class="popup_block">
- <Center><iframe frameborder="0" scrolling="yes" width="100%" height="150" src="http://www.tumblr.com/ask_form/YOURURLHERE.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
- </center></div>
- </div></div></div></div></div></div></div></div></div></div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment