Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- //When you click on a link with class of poplight and the href starts with a #
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- //Pull Query & Variables from href URL
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- //Fade in the Popup and add close button
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
- //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- //Fade in Background
- $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- return false;
- });
- //Close Popups and Fade Layer
- $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <!--
- THEME BY CLARAOSMIN
- -->
- <!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">
- <!-- DEFAULT VARIABLES -->
- <meta name="color:Background" content="#ffffff" />
- <meta name="color:posts" content="#ffffff" />
- <meta name="color:Text" content="#696969" />
- <meta name="color:Linkhover" content="#ffffff"/>
- <meta name="color:Link" content="#cc9999" />
- <meta name="color:Scrollbar" content="#cc9999" />
- <meta name="color:QuestionBg" content="#f8f8f8" />
- <meta name="color:SidebarBg" content="#000000" />
- <meta name="color:DescBg" content="#fff" />
- <meta name="text:Link 1 URL" content="">
- <meta name="text:Link 1" content="">
- <meta name="text:Link 2 URL" content="">
- <meta name="text:Link 2" content="">
- <meta name="text:Link 3 URL" content="">
- <meta name="text:Link 3" content="">
- <meta name="image:Sidebar" content="" />
- <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}
- <link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Kite+One|Playfair+Display:400,400italic|Oswald' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Inconsolata:400,700' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Lekton' rel='stylesheet' type='text/css'>
- </head>
- <style type="text/css">
- body { background:url('http://assets.tumblr.com/images/x.gif') repeat;
- line-height:140%;
- font-family: cambria;
- font-size:10px;
- text-align:justify;
- background-color:{color:background};
- color:#b5b5b5; }
- a, a:active, a:visited{
- text-decoration: none;
- color: {color:link};}
- small {font-size: 11px; }
- a:hover{
- background-color: {color:link}; color:white;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- opacity: 1;
- -o-transition: all 0.3s ease-in-out;
- -ms-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;}
- big { font-size: 12px; }
- blockquote {text-align:left;padding-left:10px; border-color:{color:border}; border-left:2px solid #d6d4ce;}
- blockquote img{max-width:485px;}
- /* POSTS */
- #container {
- width: 520px;
- margin-left: 360px; padding: 20px; padding-top: 50px; margin-top: -10px;
- margin-bottom: 0px;
- }
- .quote { font-size:14px; font-style:italic; text-align:center; }
- .source { width:400px; float:center; margin:auto; margin-top:10px; padding-top:5px; text-align:center; border-top:3px double #f1f1f1; }
- .quote-source { margin-top:-40px; text-align:center; margin-bottom:20px; }
- .source { letter-spacing:1px;background-color:#ffffff; padding:5px;}
- .quote-border { border-top:3px double #dddddd; padding:10px;margin:20px 0 10px 0; }
- #pagey { font-size: 6px; }
- #pagey:a { font-size: 6px; }
- h1{ font-weight: 500;
- font-size: 15px!important; font-family: playfair display; text-transform: lowercase; font-style: italic; line-height: 100%;
- }
- #post {
- margin-bottom: 15px; padding: 10px;
- width: 500px;
- background-color:{color:background};
- color:{color:text};
- text-align: justify;
- }
- .iuu{ opacity: 1; color: #747474; margin-bottom: -5px; border-top: 1px solid #f1f1f1; margin-top: -2px;}
- .iuu a { color: #747474; font-family:times; letter-spacing: 0px; text-transform:uppercase; font-size:8px; }
- .iuu a:hover { color: #fff; }
- .credit {right: 1px;bottom: 5px;text-transform: uppercase; position: fixed; font-size: 8px; right: 7px;}
- /* SIDEBAR */
- #top {
- margin-top:-115px;
- width:550px;
- margin-left:430px; padding: 30px; padding-bottom: 15px;
- position:fixed; background-color: #fff;
- }
- #menu a {
- padding:5px; color:#fff; background-color: #030303;
- margin:0 10px;
- font-size: 8px;
- letter-spacing: 1px; font-family: calibri;
- text-transform: uppercase;
- -webkit-transition: all 0.2s ease-out;
- -o-transition: all 0.2s ease-out;
- -webkit-transition: all 0.2s ease-out;
- -moz-transition: all 0.2s ease-out;
- }
- #blogtitle {background-color: transparent; margin-top:5px; height:auto; padding:4px; font-family:Calibri; font-size:15px; text-transform:lowercase; font-style:none; width:500px; margin-left:6px; margin-bottom: 5px;}
- #blogtitle a {padding:2px; color: {color:text}; font-size:20px; font-style:italic; font-family: times;}
- /* AUDIO */
- .audio {
- height:60px;
- padding:5px; margin-bottom: 55px; margin-top: 0px;
- }
- .audio-album {
- position:absolute;
- width:110px; }
- .audio-player {
- opacity:.5;
- border:25px solid #fff;
- width:25px;
- height:25px;
- overflow:hidden;
- position:absolute;
- z-index:2;
- margin-left:18px;
- margin-top:18px; }
- .audio-info {
- margin-top:0px;
- position:relative;
- margin-left:120px;
- line-height:180%;
- padding:4px; }
- /* ANSWERS */
- #question {padding:10px;background-color: {color:questionbg};position: relative;border: 4px solid #f2f2f2;}
- #question:after, #demo:before {border: solid transparent;content: ' ';height: 0;left: 100%;position: absolute;width: 0;}
- #question:after {border-width: 9px;border-left-color: #f2f2f2;top: 15px;}
- #question:before {border-width: 14px;border-left-color: #f2f2f2;top: 10px;}
- .la { opacity: 0; margin-top: -10px; }
- /* INFO */
- .ask {
- text-align:justify;
- padding:0px;
- line-height:14px;
- font-size:10px;
- }
- .ask a:hover {
- background-color:transparent;
- }
- /* CONTROLS */
- iframe#tumblr_controls {
- right:3px !important;
- position: fixed !important;
- -webkit-transition: opacity 0.7s linear;
- opacity: 0.2;
- -webkit-transition: all 0.8s ease-out;
- -moz-transition: all 0.8s ease-out;
- transition: all 0.8s ease-out;}
- iframe#tumblr_controls:hover{
- -webkit-transition: opacity 0.7s linear;
- opacity: 1;
- -webkit-transition: all 0.4s ease-out;
- -moz-transition: all 0.4s ease-out;
- transition: all 0.4s ease-out;}
- iframe#tumblr_controls {
- top: 0% !important;
- right:0% !important;
- position: fixed !important;}
- /* PAGINATION */
- .jump_page {
- padding:3px;
- background-color:#transparent; }
- .current_page {
- padding:3px;
- background-color:#transparent;
- color:{color:text};}
- #leftcolumn {
- position:fixed;
- width:130px;
- padding:10px;
- margin-left:0px;
- text-align:right;
- }
- /* SCROLLBAR */
- ::-webkit-scrollbar-thumb:vertical {
- background-color:{color:scrollbar};
- height:30px;}
- ::-webkit-scrollbar-thumb:horizontal {
- background-color:{color:scrollbar};
- height:10px!important;}
- ::-webkit-scrollbar {
- background-color:{color:background};
- height:10px;width:08px;}
- .links { opacity: 1; margin-left: -5px; width: 215px; border-top: 1px solid #f1f1f1; }
- .links a, .links a:link, .links a:active, .links a:visited {
- width: 70px; margin: 2px;
- text-align: center; text-transform: lowercase;
- font-family: times;
- font-size: 9px; font-style: italic;
- letter-spacing: 1px; padding: 3px;
- color: #fff; margin-top: 5px; line-height: 300%;
- }
- .links a:hover { color: #fff; }
- @font-face { font-family: "justus"; src: url('http://static.tumblr.com/ihkaswt/Botmiprgt/justus-versalitas.ttf'); }
- .tags { opacity: 1; color: 747474;
- margin-left: -2px; margin-top:5px;text-align: left; text-transform: lowercase; color: #7c7c7c; }
- .tags a { font-family:times; text-transform: lowercase; font-style: italic; font-size:9px; color: #747474; letter-spacing: 0px;}
- .tags a:hover {color: #fff; }
- ol.notes li {
- width: 500px; color: {color:text};
- padding: 10px; margin-top: -40px; font-family: times;
- margin: 0 0 3px -50px;
- border-bottom: 1px solid #f2f2f2; }
- ol.notes li a {
- font-style: italic; }
- ol.notes li img {
- padding-right: 10px;
- margin-bottom: -5px;
- opacity: 0.85;
- filter:alpha(opacity=85); }
- ol.notes li:hover { border-bottom: 1px solid #f2f2f2; }
- ol.notes li img:hover { opacity: 1; filter:alpha(opacity=100); }
- .nav2 {position: fixed;width: 500px; padding: 10px 20px; background-color: #fff; color: #777; bottom: 0px; margin-left: 350px; text-align: center; font-size: 12px; font-style: italic; font-family: times;}
- .linksy { margin-top: 35px; margin-left: -26px;}
- .linksy a{
- font-family: times; display: block;
- line-height: 20px;
- font-size: 7px !important;
- text-transform: uppercase;
- letter-spacing: 2px; text-align: center;
- background-color: white;
- width: 167px; padding: 5px;
- height: 20px;
- color: #1D1D17;
- margin-bottom: 3px;}
- #shipcont { width: 300px; height: 200px; position: fixed; top: 0; }
- .shiptitle { position: absolute; top: 362px; left: 75px; width: 50px; height: 260px; -webkit-transition: all 2s ease-in-out; -moz-transition: all 2s ease-in-out; -o-transition: all 2s ease-in-out; }
- .shiptitle h3 { font-weight: normal; writing-mode:tb-rl; -webkit-transform:rotate(270deg); -moz-transform:rotate(270deg); -o-transform: rotate(270deg); white-space:nowrap; font-family: justus; font-size: 35px; font-style: italic; color: #414141; }
- .shipmaintext { position: absolute; top: 325px; padding: 25px; left: 70px; width: 145px; -webkit-transition: all 2s ease-in-out; -moz-transition: all 2s ease-in-out; -o-transition: all 2s ease-in-out; color: #5f5f5f; font-family: times; font-size: 10px; text-align: justify; background-color: {Color:DescBg}; }
- #pagination{font-family:times; font-size:10px; letter-spacing:1px; margin-top:180px; width:130px; padding:8px; text-align:right; margin-left:80px; position: fixed; color: {Color:DescBg};}
- {CustomCSS}
- </style>
- <body>
- <div style="width: 340px; left: 0px; top: 0px; position: fixed; background-color: {Color:SidebarBg}; height: 100%;"></div>
- <div style="width: 150px; top: 130px; left: 100px; height: 150px; position: fixed; border-radius: 100px; background-image:url({Image:Sidebar}); background-position: top left;"></div>
- <div id="shipcont"><div class="links" style="border-top: 0px solid #f1f1f1; margin-top: 291px; margin-left: 58px;"><center>
- <a href="/">home</a>
- <a href="/ask">ask</a> <a href="{text:Link 1 URL}">{text:Link 1}</a>
- <a href="{text:Link 2 URL}">{text:Link 2}</a>
- <a href="{text:Link 3 URL}">{text:Link 3}</a> </div>
- <div class="shipmaintext">
- <span>
- {Description}</span>
- <center>
- </div>
- {block:Pagination}<div id="pagination">
- {block:PreviousPage}
- <a href="{PreviousPage}"><</a>
- {/block:PreviousPage}
- {CurrentPage} of {TotalPages}
- {block:NextPage}
- <a href="{NextPage}">></a>
- {/block:NextPage}
- </div> {/block:Pagination}
- </div>
- <div id="container">
- {block:Posts}
- <div id="post">
- {block:ContentSource}
- <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
- width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- {block:Text}
- {block:Title}<h1>{Title}</h1>{/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}<img src="{PhotoURL-500}"/>{LinkCloseTag}
- {Caption}
- {/block:Photo}
- {block:Photoset}
- {Photoset-500}
- {Caption}
- {/block:Photoset}
- {block:Quote}
- <div class="quote">"{Quote}"</div>
- {block:Source}
- <div class="source">- {Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <h1><a href="{URL}" {Target}>{Name}</a></h1>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Video}
- {Video-500}
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Video}
- {block:Chat}
- {block:Title}<h1>{Title}</h1>{/block:Title}
- {block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}
- {/block:Chat}
- {block:Answer}
- <div class="ask"><div style="color: #555555; padding: 10px; padding-bottom: 8px; background-color: #f7f7f7; text-transform: none; font-family: times; font-style: italic;"><table><td><img src="{AskerPortraitURL-30}" style="border: 8px solid #fff; margin: 1px; margin-right: 5px;"></td><td><font style="font-size: 8px; text-transform: uppercase; width: 64px; line-height: 30%; margin-top: -10px; letter-spacing: 1px;"> {Asker} SAID:</font><br><font style="text-transform: lowercase;">
- {Question}</font></td></table>
- </div><div style="margin-left: 0px; margin-top: -5px;">
- {Answer}</div></div>
- {/block:Answer}
- {block:Audio}
- <div class="audio">
- {block:AlbumArt}<img class="audio-album" src="{AlbumArtURL}">{/block:AlbumArt}
- <div class="audio-player">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div>
- <div class="audio-info">
- {block:TrackName}<b>Title:</b> {TrackName}<BR>{/block:TrackName}
- {block:Artist}<b>Artist:</b> {Artist}<BR>{/block:Artist}
- {block:Album}<b>Album:</b> {Album}<BR>{/block:Album}
- {block:PlayCount}<b>Plays:</b> {PlayCount}<BR>{/block:PlayCount}
- </div></div>
- <div class="audiocaption">{block:Caption}{Caption}{/block:Caption}</div>
- {/block:Audio}
- <div style="margin-top: 8px;">
- <div class="tags" style="line-height: 150%; margin-left: 0px; width: 500px; margin-top: 0px; margin-bottom: 3px; padding-top: 3px; border-top: 1px solid #f1f1f1;">{block:HasTags}{block:Tags}<a href="{TagURL}">#{Tag} </a>
- {/block:Tags}{/block:HasTags}</div>
- <div class="iuu" style="margin-bottom: 45px;"><div style="font-family: cambria; font-size: 8px; line-height: 9px; color: #1e1d18; text-align: justify; text-transform: uppercase; letter-spacing: 2px; width: 500px; font-family: times; padding-bottom: 0px; padding-top: 1px; color: #797979; margin-top: 5px;"> <a href="{Permalink}"> {block:Date} <a href="{Permalink}">{TimeAgo}</a>{/block:Date} {block:NoteCount}(<font color="#d71732">♥</font>{NoteCount}){/block:NoteCount} </a> <div style="float:right;">{block:RebloggedFrom}
- <div style="float: right; height: 16px; letter-spacing: 3px; margin-left: 10px; margin-right: -10px; padding-bottom: 5px; padding-right: 10px; padding-left: 5px;"><a href="{ReblogParentURL}">VIA</a> <a href="{ReblogRootURL}">(SOURCE)</a></div> {/block:RebloggedFrom} </div></div></div>
- </div> </div>
- {block:PermalinkPage}{block:PostNotes}<div style="width:500px;"><div style="text-align:left;padding-bottom:10px; ">
- <ol class="notes">{PostNotes}</div></div>{/block:PostNotes}{/block:PermalinkPage}
- {/block:Posts}
- </div>
- </div>
- <a href="{ReblogRootURL}" title="{ReblogRootName}"></a>
- <div style="float: center;">{block:RebloggedFrom} via <a href="{ReblogParentURL}" title="{ReblogParentName}">{ReblogParentName}</a> (© <a href="{ReblogRootURL}" title="{ReblogRootName}">{ReblogRootName}</a>) {/block:RebloggedFrom}</div><div class="credit" style="font-family: calibri; font-size: 8px;"><a href="http://claraosmin.tumblr.com/">CLARAOSMIN</a></div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment