Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- "Jaguar "Rawr" "
- base code by: -shrooms
- edited by: danateruel/chictutorials
- Please don't remove the credits! ;>
- If you ever remove the credits, I will report you to a tumblr staff A.S.A.P
- So don't you ever remove it.
- -->
- <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
- <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://i42.tinypic.com/2dbs879.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>
- <!--Title Bar Maker-->
- <script type="text/javascript">
- //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
- function tb8_makeArray(n){
- this.length = n;
- return this.length;
- }
- tb8_messages = new tb8_makeArray(1);
- tb8_messages[0] = "Hɛℓℓσ Jαɢʋαяƨ!";
- tb8_rptType = 'infinite';
- tb8_rptNbr = 5;
- tb8_speed = 80;
- tb8_delay = 2000;
- var tb8_counter=1;
- var tb8_currMsg=0;
- var tb8_tekst ="";
- var tb8_i=0;
- var tb8_TID = null;
- function tb8_pisi(){
- tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
- document.title = tb8_tekst;
- tb8_sp=tb8_speed;
- tb8_i++;
- if (tb8_i==tb8_messages[tb8_currMsg].length){
- tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
- }
- if (tb8_currMsg == tb8_messages.length){
- if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
- clearTimeout(tb8_TID);
- return;
- }
- tb8_counter++;
- tb8_currMsg = 0;
- }
- tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
- }
- tb8_pisi()
- </script>
- <title>{Title}</title>
- <meta name="color:Background" content="#B1BFC9"/>
- <meta name="color:Link" content="#000"/>
- <meta name="color:Text" content="#000"/>
- <meta name="color:Title" content="#000"/>
- <meta name="color:Hover" content="#D8D8D8"/>
- <meta name="color:Scrollbar" content="#FFF"/>
- <meta name="color:Content Border" content="#000000"/>
- <meta name="image:Background" content=""/>
- <meta name="image:Sidebar" content=""/>
- <meta name="color:Content" content="#ffffff"/>
- <meta name="if:show sidebar image" content="0"/>
- <meta name="if:infinite scrolling" content="0"/>
- <meta name="if:show title" content="0"/>
- <meta name="if:tiny cursor" content="1"/>
- {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
- <style type="text/css">
- #hoversidebar {text-align: center;font-size: 11px;position:fixed;left:20px;top:-478px;-webkit-transition: all .5s ease-in-out;-moz-transition: all .5s ease-in-out;-o-transition: all .5s ease-in-out;z-index:1999; }
- #hoversidebar:hover {top:-10px;}
- #description {padding: 20px 0 5px 0;background: #000; height:450px; overflow:auto; border:1px solid #fff;;width:320px; font-size: 13px; color: #fff;}
- #hovertab {margin-left:100px; font-family:"caviardreams";font-size: 25px; color: #fff; text-shadow: 1px 2px 1px #D6D6D6; height:40px;padding: 0 0 8px 0;background:#000; border:1px solid #fff; width: 100px; }
- #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: #FFA500;
- padding: 10px;
- border: 4px solid #EBDDE2;
- float: left;
- font-size: 8px;
- 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;
- }
- {block:iftinycursor}body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}{/block:iftinycursor}
- ::-webkit-scrollbar {width: 6px; height: 4px; background: {color:content}; }
- ::-webkit-scrollbar-thumb { background-color: {color:scrollbar};}
- {block:ifFadedImages}img{-webkit-transition: opacity 0.8s linear; opacity: 0.75;}img:hover{-webkit-transition: opacity 0.8s linear; opacity: 1;} {/block:ifFadedImages}
- {block:ifInvertedFade}img{-webkit-transition: opacity 0.7s linear; opacity: 50;}img:hover{-webkit-transition: opacity 0.2s linear; opacity: .60;} {/block:ifInvertedFade}
- body {margin:0px;background-color: {color:Background};background-image:url({image:Background});background-attachment: fixed;background-repeat: repeat;}body, div, p, textarea, submit, input{font-family: cambria;font-size: 10px;line-height:10px;letter-spacing:0px;
- color:{color:Text};}
- p {margin:0px;margin-top:0px;}
- a:link, a:active, a:visited{color: {color:Link};text-decoration: none;-webkit-transition: color 0.5s ease-out; -moz-transition: color 0.5s ease-out; }
- a:hover {color:{color:Hover};text-decoration: underline;font-style: normal;letter-spacing: 0px;
- -webkit-transition: color 0.5s ease-out; -moz-transition: color 0.5s ease-out; }
- div#birds{ background: {color:content};margin: auto; position:relative; width: 730px; overflow:auto;
- overflow-y:hidden;border: 5px solid {color:content};margin-top: 35px;height:600px; -moz-border-radius: 25px 25px;border-radius: 25px 25px / 25px 25px;border: 1.2px solid {color:Content Border};
- padding: 10px;}
- div#cauliflower{ float:center; position:relative; background-color: white;width:500px; height:600px;
- padding-left:6px;overflow:scroll; overflow-x:hidden;float: right;}
- div#creeps{overflow:hidden; float:left; width:500px;margin-left:0px; margin-bottom:4px; padding-bottom: 2px;padding:0px;background-color: white;}
- #creeps .perma a{color:{Color:Links};}
- #creeps .perma{width:500px; position: absolute; font-family: "littlefont"; font-size: 8px; line-height: 12px; text-align: center;overflow:hidden; opacity: 0.0; background-color:#fff;text-decoration: bold;}
- #creeps:hover .perma{overflow:visible;-webkit-transition: opacity 0.2s linear; opacity: 0.8; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; transition: all 0.2s linear;}
- div#blood{ position:fixed !important; width: 225px; height:600px; padding-left: 1px; padding-top: 1px;padding-bottom: 1px;font-size: 10px; line-height:15px; letter-spacing:0px;text-align: center; margin-bottom: 5px; background-color: {color:content}; float: left;}
- div#fly{ position: fixed;text-align:center;margin-top:616px;z-index:100;line-height: 8px;padding: 1px; background-color: transparent;width: 428px;height:auto;font-family: "littlefont"; font-size: 8px;margin-left:170px;}
- #postnotes{ text-align: justify;}
- #postnotes blockquote{ border: 0px;}
- .title{font-family: cambria; font-size: 13px; line-height: 13px; color: {color:Title}; font-weight: normal;}
- blockquote{ padding:0px 0px 2px 2px; margin:0px 0px 2px 10px; border-left: 1px solid black;}
- .blogtitle{font-family: "amatic sc"; font-size: 30px; line-height: 19px; text-shadow: 2px 2px 2px {color:shadow};color: {color:Title}; font-weight: normal;}
- .video embed, .post div.video object {width:500px !important; height:390px !important;}
- @font-face {font-family: "littlefont";src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf');}
- a img{border: 0px;}
- .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
- .user_7 .label, .user_8 .label, .user_9 .label {
- color:#000;}
- .notes img{width:10px; position:relative; top:3px;}
- </style>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- <style>
- #toTop {display:none;text-decoration:none;position:fixed;bottom:20px;right:20px;overflow:hidden;width:30px;height:40px;border:none;text-indent:-999px;background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left top;z-index:3000;}#toTopHover {background:url(http://static.tumblr.com/hi8vwsz/Q0ull6xz3/totop.png) no-repeat left -40px;
- width:30px;height:40px;display:block;overflow:hidden;float:left;opacity: 0;-moz-opacity: 0;filter:alpha(opacity=0);}
- #toTop:active, #toTop:focus {outline:none;}#toTop:active, #toTop:focus {outline:none;}</style>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/kx3lgzker/jquery-1.3.2.min.js" charset="utf-8"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/4jtlgzkf8/easing.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/53unaru/y8wlgzkbt/jquery.ui.totop.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $().UItoTop({ easingType: 'easeOutQuart' });
- });
- </script>
- </head>
- <body>
- <div id="birds"><div id="trench"><div id="blood">
- <br>
- {block:ifshowtitle}<div class="blogtitle"><a href="/">{title}</a></div>{/block:ifshowtitle}
- <br>
- {block:ifshowsidebarimage}<a href="/"><img src="{image:sidebar}" width=223px></a>{/block:ifshowsidebarimage}
- <br>
- {Description}
- <br><br>{block:ifnotinfinitescrolling}
- {block:PreviousPage}<a href="{PreviousPage}">←</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}">→</a>{/block:NextPage}
- {/block:ifnotinfinitescrolling}
- </div>
- <div id="fly">theme by <a href="http://chictutorials.tumblr.com/">danateruel</a></div>
- <div id="cauliflower">
- {block:Posts}
- <div id="creeps">
- {block:IndexPage}
- <div class="perma">
- <a href="{permalink}">{NoteCountWithLabel}</a> · <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
- {/block:IndexPage}
- {block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <span class="entrytext">{Body}</span><div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>{/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}<div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {block:Link}
- {block:Photo}<center>
- {LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" style="width:500px"/></a>{LinkCloseTag}</center>
- {/block:Photo}
- {block:Quote}
- {Quote}</span>
- {block:Source}<strong>{Source}</strong>{/block:Source}<div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {/block:Quote}
- {block:Photoset}<center>{Photoset-500}</center>
- <span class="permalink"><a href="{permalink}"> </a></span>
- {/block:Photoset}
- {block:Chat}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}<div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {/block:Chat}
- {block:Audio}
- <center><div style="width:495px; height:28px;"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
- {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br><div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {/block:Audio}
- {block:Video}<center>
- <div class="video">{Video-500}</div></center><div align="right"><a href="{Permalink}"><span style="font-size: 11px;"> </span></a></div>
- {block:Video}
- {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} - {block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
- {block:PostNotes}{PostNotes}
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </div></div>
- </div>
- </html>
- <div id="hoversidebar">
- <div id="description">
- <begin>July 2012:</begin><center>
- <div style="width: 100%; text-align: center; padding-<br>bottom:7px;"><table width="100%" border="0" cellspacing="0" cellpadding="1" style="font-family:trebuchet ms; font-size: 7pt; line-height: 13px; color: #FF00FF;"><tr><td colspan="7" align="center"><div align="center"><b></b></div></td></tr><tr>
- <td><div align="center">Sun</div></td>
- <td><div align="center">Mon</div></td>
- <td><div align="center">Tue</div></td>
- <td><div align="center">Wed</div></td>
- <td><div align="center">Thu</div></td>
- <td><div align="center">Fri</div></td>
- <td><div align="center">Sat</div></td>
- </tr>
- <tr>
- <td><div align="center">1</div></td>
- <td><div align="center">2</div></td>
- <td><div align="center">3</div></td>
- <td><div align="center">4</div></td>
- <td><div align="center">5</div></td>
- <td><div align="center">6</div></td>
- <td><div align="center">7</div></td>
- </tr>
- <td><div align="center">8</div></td>
- <td><div align="center">9</div></td>
- <td><div align="center">10</div></td>
- <td><div align="center">11</div></td>
- <td><div align="center">12</div></td>
- <td><div align="center">13</div></td>
- <td><div align="center">14</div></td>
- </tr>
- <td><div align="center">15</div></td>
- <td><div align="center">16</div></td>
- <td><div align="center">17</div></td>
- <td><div align="center">18</td>
- <td><div align="center">19</div></td>
- <td><div align="center">20</div></td>
- <td><div align="center">21</div></td>
- </tr>
- <td><div align="center">22</div></td>
- <td><div align="center">23</div></td>
- <td><div align="center">24</div></td>
- <td><div align="center">25</div></td>
- <td><div align="center">26</div></td>
- <td><div align="center">27</div></td>
- <td><div align="center">28</div></td>
- </tr>
- <td><div align="center">29</div></td>
- <td><div align="center">30</div></td>
- </tr>
- </table></center>
- <br><br>
- <begin>Daily Thoughts</begin><br><br>
- <img src="http://i44.tinypic.com/zlbuc.gif" /> 07.15.12 I made a new theme, do you like it? <br><br>
- <img src="http://i44.tinypic.com/zlbuc.gif" /> 07.16.12 Had my first iPhone<br><br>
- <img src="http://i44.tinypic.com/zlbuc.gif" /> 06.27.12 I'm so tired, im just going to sit on tumblr all day long<br><br>
- <div class="header2">The quote she lives by</div><br>
- <h3>"May the odds be ever in your favor"</h3><br>
- -Effie Trinket, Hunger Games
- </div>
- <div id="hovertab"><center><br><div style="margin-top:10px;">HOVER</div></center></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement