- <html>
- <!--
- IMPRISONED TRUTH THEME by SEFIERA(raiDshutterbug)
- http://sefiera.tumblr.com/
- If you are having trouble with this theme, please inform me right away.
- PLEASE DO NOT REMOVE THE CREDITS. THANK YOU!
- --->
- <title>{Title}</title>
- <!-- DEFAULT VARIABLES -->
- <meta name="image:background" content="http://25.media.tumblr.com/tumblr_ls2e05Cme11r3vazto4_250.png" />
- <meta name="color:Body text" content="#646363"/>
- <meta name="color:background" content="#FFFFFF"/>
- <meta name="color:link" content="#D49393"/>
- <meta name="color:link hover" content="#D85E5E"/>
- <meta name="color:posts bg" content="#FFFFFF"/>
- <meta name="color:Navigation Background" content="#F5ADE6"/>
- <meta name="color:Scrollbar" content="#F5ADE6"/>
- <meta name="color:Scrollbar hover" content="#F872DD"/>
- <meta name="color:Scrollbar background" content="#FFFFFF"/>
- <meta name="color:Sidebar background" content="#FFFFFF"/>
- <meta name="if:Show Caption" content="1"/>
- <meta name="if:Show Sidebar Image" content="1"/>
- <meta name="if:Infinite Scroll" content="1"/>
- <meta name="text:LinkOneName" content=""/>
- <meta name="text:LinkOneURL" content=""/>
- <meta name="text:LinkTwoName" content=""/>
- <meta name="text:LinkTwoURL" content=""/>
- <meta name="text:LinkThreeName" content=""/>
- <meta name="text:LinkThreeURL" content=""/>
- <meta name="text:LinkFourName" content=""/>
- <meta name="text:LinkFourURL" content=""/>
- <meta name="text:LinkFiveName" content=""/>
- <meta name="text:LinkFiveURL" content=""/>
- <!-- END OF DEFAULT VARIABLES -->
- <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"><img src="http://images.findicons.com/files/icons/1030/windows_7/32/close.png" class="btn_close" title="Close" alt="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>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:ifInfiniteScroll}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifInfiniteScroll}
- <style type="text/css">
- body{ background-color: {color:background}; text-align: justify; font-family: tahoma; font-size: 13px; background-image: url({image:background}); background-attachment: fixed; color: {color:Body text}; }
- #pagi{ font-family: tahoma; font-size: 12px; }
- #pagi a{ margin: 3px; text-decoration: none; padding: 5px; }
- #pagi a:hover{ text-decoration: none; }
- div.navi a{ font-size: 1px; text-decoration: none; width: 10px; height: 20px; position: fixed; text-align: center; border-radius: 3px; left: 240px; -webkit-transition: .5s; opacity: .5; }
- div.navi a:hover{ width: 180px; }
- a, a.visited, a.active{ color: {color:link}; letter-spacing: 1px; text-decoration: none; }
- a:hover, a.visited:hover, a.active:hover{ color: {color:link hover}; letter-spacing: 1px; }
- a.link:hover{ color: {color:link hover}; letter-spacing: 1px; text-decoration: none; }
- a.postlink{ color: {color:link}; letter-spacing: 1px; text-decoration: none; }
- #main{ width: 410px; top: 10px; left: 560px; position: absolute; }
- #sidebar{ width: 150px; padding: 5px; top: 100px; left: 250px; position: fixed; font-family: iforgot; font-size: 6pt; background: {color:Sidebar background}; }
- .perma{ margin-bottom: 10px; font-family: arial; text-align: right; font-size: 10px; }
- #posts{ padding: 3px; background: {color:posts bg}; margin-bottom: 8px; left: 350px; }
- img{ opacity: .8; }
- img:hover{ opacity: 1; -webkit-transition: .4s; }
- #portrait{ margin-top: 100px; margin-left: 100px; position: fixed; }
- @font-face {font-family:iforgot; src: url(http://static.tumblr.com/m4mnrxx/DwWm1snma/dc_regular_caps.ttf) format("truetype"); }
- ::-webkit-scrollbar { width: 5px; height: 5px; }
- ::-webkit-scrollbar-button:start:decrement,
- ::-webkit-scrollbar-button:end:increment { height: 0px; display: block; background: #fff; }
- ::-webkit-scrollbar-track-piece { background: {color:Scrollbar background}; }
- ::-webkit-scrollbar-thumb { border-radius: 8px; height: 50px; background-color: {color:Scrollbar}; }
- ::-webkit-scrollbar-thumb:hover { background: {color:Scrollbar hover}; }
- .pops {
- font-size: 11px;
- line-height:13px;
- font-family: tahoma;
- }
- #fade { /*--Transparent background layer--*/
- display: none; /*--hidden by default--*/
- background: #000000;
- position: fixed; left: 0; top: 0;
- width: 100%; height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none; /*--hidden by default--*/
- background: #ffffff;
- padding: 10px;
- border: 1px solid #555;
- float: left;
- 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: 10px;
- -moz-border-radius: 10px;
- border-radius: 10px;
- }
- img.btn_close {
- float: right;
- margin: -5px -5px 0px 0px;
- padding:none;
- }
- /*--Making IE6 Understand Fixed Positioning--*/
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- #h{ background-color:{color:Navigation Background}; color: {color:Navigation Background}; top: 110px; }
- #a{ background-color:{color:Navigation Background}; color: {color:Navigation Background}; top: 135px; }
- #ar{ background-color:{color:Navigation Background}; color: {color:Navigation Background}; top: 160px; }
- #l{ background-color:{color:Navigation Background}; color: {color:Navigation Background}; top: 185px; }
- #t{ background-color:{color:Navigation Background}; color: {color:Navigation Background}; top: 210px; }
- </style>
- </head>
- <body>
- {block:ifShowSidebarImage}
- <div id="portrait">
- <img src="{PortraitURL-128}" style="border-radius: 118px;">
- </div>
- {/block:ifShowSidebarImage}
- <div id="sidebar">
- {block:Description}
- {Description}
- {/block:Description}
- </div>
- <div id="main">
- {block:ifInfiniteScroll}<div class="autopagerize_page_element">{/block:ifInfiniteScroll}
- {block:Posts}
- <div id="posts">
- {block:Text}
- {block:Title}<div class="title" style="font-size: 20px; font-family: Century Gothic;">{Title}</div> {/block:Title}<br>
- {Body}
- </div>
- {/block:Text}
- {block:Photo}
- {LinkOpenTag}<center><img src="{PhotoURL-400}"></center>{LinkCloseTag}
- {block:IfShowCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaption}
- </div>
- {/block:Photo}
- {block:Photoset}
- {Photoset-400}
- {block:IfShowCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaption}
- </div>
- {/block:Photoset}
- {block:Quote}
- <span class="quote">"{Quote}"</span>
- </div>
- {/block:Quote}
- {block:Link}
- <a class="postlink" href="{URL}" target="_blank" style="font-size: 20px; font-style: italic; font-family: Century Gothic;">{Name}</a><br>
- {block:Description}{Description}{/block:Description}
- </div>
- {/block:Link}
- {block:Chat}
- <div class="title">{Title}</a></div>
- <ul class="chat">
- {block:Lines}
- <li class="{Alt}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}{Line}
- {/block:Lines}
- </ul>
- </li>
- </div>
- {/block:Chat}
- {block:Audio}
- <center>{AudioPlayerBlack}</center>
- {block:IfShowCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaption}
- </div>
- {/block:Audio}
- {block:Video}
- <center>{Video-500}</center>
- {block:IfShowCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaption}
- </div>
- {/block:Video}
- {block:Answer}
- <img src="{AskerPortraitURL-40}" style="float: left; margin-right: 5px; border-radius: 30px; "> {Asker} whispered: {Question}<br><br>
- <span class="answer">{Answer}</span>
- </div>
- {/block:Answer}
- {block:IndexPage}
- <div class="perma"><a href="{Permalink}">{NoteCountWithLabel}</a> <font style="color: #FF0000;">♥</font> <a href="{ReblogURL}" target="_blank">Reblog</a></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- {/block:PermalinkPage}
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- {/block:Posts}
- {block:ifNotInfiniteScroll}
- <center><div id="pagi"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">recent entries</a>{/block:PreviousPage}{/block:Pagination} {block:Pagination}{block:NextPage}<a href="{NextPage}">older entries</a>{/block:NextPage}{/block:Pagination} </div></center>
- {/block:ifNotInfiniteScroll}
- </div></div></div>
- <div id="links" class="popup_block">
- <div class="pops">
- <a href="{text:LinkOneURL}">>>{text:LinkOneName}</a><BR>
- <a href="{text:LinkTwoURL}">>>{text:LinkTwoName}</a><BR>
- <a href="{text:LinkThreeURL}">>>{text:LinkThreeName}</a><BR>
- <a href="{text:LinkFourURL}">>>{text:LinkFourName}</a><BR>
- <a href="{text:LinkFiveURL}">>>{text:LinkFiveName}</a><BR>
- </div>
- </div></div>
- </div></div></div></div></div></div></div></div></div></div>
- <div class="navi">
- <a href="/" id="h" title="refresh">h</a>
- <a href="/ask" id="a" title="ask">a</a>
- <a href="/archive" id="ar" title="archive">ar</a>
- <a href="#?w=400" id="l" title="more links" rel="links" class="poplight">l</a>
- <a href="http://sefiera.tumblr.com/" target="_blank" id="t" title="theme">t</a>
- </div>
- </body>
- </html>