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="#282727" />
- <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="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="text:firstletter" content="">
- <meta name="image:1Sidebar" content="" />
- <meta name="image:2Sidebar" 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'>
- </head>
- <style type="text/css">
- body { background:url('http://assets.tumblr.com/images/x.gif') repeat;
- line-height:140%;
- font-family: times;
- font-size:11px;
- text-align:justify;
- background-color:{color:background};
- color:{color:text}; }
- a, a:active, a:visited{
- text-decoration: none;
- color: {color:link};}
- small {font-size: 11px; }
- a:hover{
- color: {color:linkhover};
- -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; }
- #fade {
- display: none;
- background: #000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none; width: 400px;
- background: #000;
- padding: 55px;
- float: left; height: 310px; color: #313131;
- position: fixed;
- top: 50%; overflow-y: auto; overflow-x: no scroll;
- left: 50%;
- z-index: 99999;
- }
- img.btn_close {
- float: right;
- margin: -55px -55px 0 0; opacity: 0;
- }
- #continue {
- margin-top:10px;
- }
- #titless { display:inline-block;
- width:480px; font-family: times;
- padding:10px;
- color:#ffffff; font-style: italic;
- letter-spacing:2px;
- font-size:20px;
- text-transform:uppercase;
- text-align:center; }
- #continue a {
- display:inline-block;
- background-color:#928a24;
- width:70px; font-family: times;
- padding:5px;
- color:#ffffff;
- letter-spacing:2px;
- font-size:10px;
- text-transform:uppercase;
- text-align:center;
- border-bottom:2px solid transparent;
- -webkit-transition: all 0.3s ease-in-out;
- -moz-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- }
- .links2 { font-family: times; font-size: 11px; font-style:italic; letter-spacing:2px; color: #8b8888;text-transform: lowercase; }
- .links2 a { display: block; text-align:center;padding: 10px; margin: 5px;color:#fff; font-style:italic; letter-spacing:2px; color: #fff;}
- blockquote {text-align:left;padding-left:10px; border-color:{color:border}; border-left:2px solid #d6d4ce;}
- blockquote img{max-width:485px;}
- /* POSTS */
- #container {
- width: 850px;
- margin-left: 420px; margin-top: 100px;
- margin-bottom: 50px;
- }
- .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: times; text-transform: lowercase; line-height: 100%; font-style: italic;
- }
- #post {
- font-size:11px;
- margin-bottom: 15px; padding: 10px;
- width: 500px;
- background-color:{color:background};
- color:{color:text};
- text-align: justify;
- }
- .iuu { opacity: 1; color: #747474; margin-bottom: -10px;}
- .iuu a { color: #747474; }
- .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 */
- .audiobox {
- width:500px;
- opacity:0.5;
- background-color:#f0f0f0;
- }
- .audio {
- height:26px;
- width:26px;
- margin-left:237px;
- overflow:hidden;
- }
- /* 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;
- text-transform:lowercase;
- 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 */
- #pagination {
- width:200px; padding-top: 240px;
- font-size:10px;
- word-spacing:7px; }
- .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; width: 125px; }
- .links a, .links a:link, .links a:active, .links a:visited {
- width: 70px; margin: 2px;
- text-align: center; text-transform: uppercase;
- font-family: calibri; background-color: #333;
- font-size: 8px;
- letter-spacing: 1px; padding: 3px;
- color: #fff; margin-top: 9px; line-height: 250%;
- }
- @font-face { font-family: "baskere"; src: url('http://static.tumblr.com/ihkaswt/EfYmids2v/new_baskerville_italic.ttf'); }
- .tags {
- margin-left: 0; opacity: 1; color: 747474;
- padding-left: 2px; padding-top: 5px; text-transform: lowercase;}
- .tags a { color: {color:text}; font-family: baskere; }
- #pagination1 {font-family:trebuchet ms; font-size:8px; float: left; margin-left: 2px; padding: 2px; padding-right: 5px; padding-left: 5px; }
- #pagination {font-family:trebuchet ms; font-size:8px; float: left;}
- #pagination a{font-family:trebuchet ms;
- font-size:8px; float: left; margin-left: 2px; padding: 2px; padding-left: 5px; padding-right: 5px;}
- #pagination a:hover{color:{color:link hover};}
- #pagination a:hover{color:{color:link hover};}
- ol.notes li {
- width: 500px; color: {color:text};
- padding: 10px; margin-top: -40px;
- margin: 0 0 3px -50px;
- border-bottom: 1px solid #f2f2f2; }
- 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: 420px; text-align: center; font-size: 9px;}
- {CustomCSS}
- </style>
- <body><div id="top">
- <div id="blogtitle"><a href="/">{title}</a></div>
- <div id="menu">
- <a href="/">index</a> <a href="/ask">message</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>
- <div style="width: 379px; position: fixed; top: 0px; bottom: 0px; background-repeat: repeat-y; background-position: center center; right: 0px; left: -10px; text-align: center; padding: 0px 6px 0px 7px;">
- <script language="JavaScript">
- <!--
- /*
- Random Image Script- By JavaScript Kit (http://www.javascriptkit.com)
- Over 400+ free JavaScripts here!
- Keep this notice intact please
- */
- function random_imglink(){
- var myimages=new Array()
- //specify random images below. You can have as many as you wish
- myimages[1]="{image:1sidebar}"
- myimages[2]="{image:2sidebar}"
- var ry=Math.floor(Math.random()*myimages.length)
- if (ry==0)
- ry=1
- document.write('<img src="'+myimages[ry]+'" border=0>')
- }
- random_imglink()
- //-->
- </script>
- <p>
- </div></center>
- <div style="position: fixed; top: 240px; right: 0px; background-color: #fff; text-align: justify; left: 100px; line-height: 140%; font-weight: 400; font-size: 11px; font-family: times; width: 125px; padding: 30px; color: #5c5b5b;">
- <div style="background-color: #333; padding: 5px; padding-top: 2px; padding-bottom: 2px; color: #fff; font-size: 36px; font-style: none; float: left; margin-right: 8px; line-height: 100%; padding-right: 8px; font-family: times; font-style: italic"> {text:firstletter}</div> {Description}
- </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" style="font-size: 8px; font-family: cambria; text-transform: uppercase"><table><td width="74px"><img src="{AskerPortraitURL-64}"> </img><td><td width="456px">
- <font style="font-size: 9px; width: 64px;">{Asker} ASKED:</font><br>
- {Question} </td></table>
- </div><div style="margin-left: 10px; margin-top: -5px;">
- {Answer}</div>
- {/block:Answer}
- {block:Audio}
- <div class="audiobox"><div class="audio"><center>{AudioPlayerWhite}</center></div></div><div style="border-top:2px solid {color:#f5f5f5};"></div>
- {block:Caption}
- <span class="caption">{Caption}</span>
- {/block:Caption}
- {/block:Audio}
- <div style="">
- <div class="iuu"><div style="font-size:8px;
- text-transform: uppercase;
- letter-spacing: 1px;
- width: 500px; border-top: 1px solid #f1f1f1;
- font-family: calibri; padding-bottom: 3px; padding-top: 5px;
- color: #797979; margin-top: 4px;
- line-height: 100%;"> <a href="{Permalink}"> {TimeAgo} {block:NoteCount} · {NoteCount}{/block:NoteCount} </a> <div style="float:right;">{block:RebloggedFrom}<a href="{ReblogParentURL}">VIA</a> · <a href="{ReblogRootURL}"title="{ReblogRoottitle}">SOURCE</a>{/block:RebloggedFrom} </div></div></div>
- </div> </div>
- <div class="tags" style="font-size:10px; line-height: 150%; margin-left: 10px; border-top: 1px solid #f1f1f1; width: 500px; margin-bottom: 55px; margin-top: -12px; text-align: center;">{block:HasTags}{block:Tags}<a href="{TagURL}">#{Tag} </a>
- {/block:Tags}{/block:HasTags}</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 class="nav2"> {block:Pagination}<center>
- {block:PreviousPage}
- <a href="{PreviousPage}"><big>←</big></a>
- {/block:PreviousPage}
- {block:NextPage}
- <a href="{NextPage}"><big>→</big></a>
- {/block:NextPage}<br>
- {/block:Pagination}</div>
- </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