Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <!-----------------------------------------------------------------------
- ***PLEASE READ THIS AS IT CONTAINS IMPORTANT INFO***
- Feline Themes Presents: Succulent Theme
- This theme has a ton of different customization options that you can mix and match! Just play around with the switches and colors until you get something you like!
- You may make as many cosmetic changes as you'd like to this theme such as changing fonts, colors, and simple stuff like that. You may also replace the updates tab if the included one doesn't suit your needs. *I'll be releasing an extended version of the included updates tab as well.* Just please don't make this theme look like an entirely new theme.
- Do not use as a base code! And do not reupload this theme as your own, no matter how much you edit it, and keep both credit links intact.
- You may look at my coding to see how I did certain things, but please don't copy and paste and of the CSS/HTML.
- *FONTS AND COLORS USED*
- -All colors are easily editable with the customize theme settings.
- FONTS [All fonts are from dafont.com, I did not make any of them]
- -Neou ['neouthin']
- -Dolce Vita ['dolce_vita_lightsuper_light']
- -Caviar Dreams ['caviar_dreamsregular']
- You may switch these fonts out if needed for your desired look.
- *OTHER INFO*
- -I have tested the following post types: Text, Photos/Photosets, Quotes, Asks, Videos, Chats. I didn't really touch the audio posts as I don't see them used often.
- -Popup script included for the popup ask! If you get new popups you may need to add .popup_block2, ect. But you won't need to add the script in here.
- Enjoy and let me know if you use it so I can see! :)
- © Feline Themes 2016
- ------------------------------------------------------------------------>
- <meta name="color:Background" content="#ffffff"/>
- <meta name="color:Posts" content="#ffffff"/>
- <meta name="color:Color 1" content="#95a88d"/>
- <meta name="color:Color 2" content="#5f6d59"/>
- <meta name="color:Color 3" content="#e7e5df"/>
- <meta name="color:Color 4" content="#a8a6a0"/>
- <meta name="color:Font Color" content="#000000"/>
- <meta name="text:Font Size" content="10px"/>
- <meta name="text:Title Font Size" content="25px"/>
- <meta name="text:Link 3 URL" content="/linkthree"/>
- <meta name="text:Link 3" content="Link 3"/>
- <meta name="text:Link 4 URL" content="/linkfour"/>
- <meta name="text:Link 4" content="Link 4"/>
- <meta name="if:Popup Ask" content="1"/>
- <meta name="text:Popup Ask Title" content="Ask Away!"/>
- <meta name="if:Border Style" content="1"/>
- <meta name="if:Left Or Right Sidebar" content="0"/>
- <meta name="if:Top Or Bottom Sidebar" content="0"/>
- <meta name="if:Three Columns" content="0"/>
- <meta name="if:Bold Post Borders" content="1"/>
- <meta name="if:Alternating Post Borders" content="1"/>
- <meta name="if:Updates Tab" content="1"/>
- <meta name="text:Tab One Title" content="Updates"/>
- <meta name="text:Tab One Contents" content="This is your updates tab. Do whatever with this space as you wish if you use! This version of this updates tab is basic so anyone can get it set up, but I'll be releasing a more detailed version of this updates tab as well. :)"/>
- <meta name="text:Tab Two Title" content="Stats"/>
- <meta name="text:Tab Two Contents" content="Put your stats counters in here if you'd like to! Or anything you want really!"/>
- <meta name="text:Tab Three Title" content="Tab Three"/>
- <meta name="text:Tab Three Contents" content="If you wanna get detailed with this updates tab, I've made sure it was pretty easy to find when you go to edit your HTML. You may also wanna be on the lookout for the extended version of this updates tab.:)"/>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script> <!-- jQuery, you only need ONE of these libraries! -->
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script> <!-- Style My Tooltips-->
- <script src="http://static.tumblr.com/wgijwsy/u2vm2hxv6/jquery.infinitescroll.min.js"></script> <!--- Infinite Scroll--->
- <script src="http://static.tumblr.com/wgijwsy/Ebfm2v4gy/jquery.masonry.min.js"></script> <!--- Masonry --->
- <script src="http://static.tumblr.com/iwtk77u/Yhym2yygt/jquery.imagesloaded.min.js"></script> <!-- Images Loaded -->
- <script src="http://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script> <!-- PXU -->
- <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/> <!--- PXU Styling --->
- <script src="//static.tumblr.com/wgg6svp/OoTofxa0c/unnest.min.js"></script> <!-- Unnest Caption -->
- <script type="text/javascript" src="//static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script> <!--- To Top Button ---->
- <link href="http://static.tumblr.com/dq6g0mp/MOTohk3d4/stylesheet.css" rel="stylesheet">
- <link rel="stylesheet" href="http://static.tumblr.com/dq6g0mp/o5uohhrvv/neou.css">
- <link href="http://static.tumblr.com/dq6g0mp/UAVocwhan/caviar.css" rel="stylesheet">
- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> <!--font awesome icons-->
- <!--------------Popup Boxes Needed 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://media.tumblr.com/tumblr_lngwqr5hbf1qf72le.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>
- <!---------------End Popup Boxes Script----------------->
- <style type="text/css">
- /*----------------------------------------------------------------------*/
- #sidebar{
- position:fixed;
- z-index:100;
- {block:ifTopOrBottomSidebar}
- top:120px;
- {block:ifTopOrBottomSidebar}
- {block:ifNotTopOrBottomSidebar}
- bottom:120px;
- {block:ifNotTopOrBottomSidebar}
- {block:ifNotLeftOrRightSidebar}
- left:6%;
- {/block:ifNotLeftOrRightSidebar}
- {block:ifLeftOrRightSidebar}
- right:6%;
- {/block:ifLeftOrRightSidebar}
- width:200px;
- text-align:center;
- background-color:{color:Posts};
- }
- #blogtitle{
- padding:5px;
- background-color:{color:Color 2};
- font-family:'dolce_vita_lightsuper_light';
- font-size:{text:Title Font Size};
- color:{color:Posts};
- }
- #description{
- padding:5px 10px 5px 10px;
- font-family:'neouthin';
- font-size:9px;
- color:{color:Color 2};
- }
- #links{
- padding:7px;
- background-color:{color:Color 2};
- font-size:13px;
- color:{color:Posts};
- }
- #links a{
- margin-left:2px;
- margin-right:2px;
- color:{color:Posts};
- }
- /*----------------------------------------------------------------------*/
- #updatestab{
- position:fixed;
- z-index:1000;
- top:30px;
- {block:ifLeftOrRightSidebar}
- {block:ifBorderStyle}
- left:30px;
- {/block:ifBorderStyle}
- {block:ifNotBorderStyle}
- left:15px;
- {/block:ifNotBorderStyle}
- {/block:ifLeftOrRightSidebar}
- {block:ifNotLeftOrRightSidebar}
- {block:ifBorderStyle}
- right:25px;
- {/block:ifBorderStyle}
- {block:ifNotBorderStyle}
- right:15px;
- {/block:ifNotBorderStyle}
- {/block:ifNotLeftOrRightSidebar}
- width:25px;
- max-height:25px;
- overflow:hidden;
- text-align:center;
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- -webkit-transition-delay: 1s; /* Safari */
- transition-delay: 1s;
- }
- #updatestab:hover{
- width:200px;
- max-height:500px;
- -webkit-transition-delay: 0s; /* Safari */
- transition-delay: 0s;
- }
- #tabmarker{
- position:absolute;
- {block:ifNotLeftOrRightSidebar}
- top:0px;
- left:0px;
- {/block:ifNotLeftOrRightSidebar}
- {block:ifLeftOrRightSidebar}
- top:0px;
- right:0px;
- {/block:ifLeftOrRightSidebar}
- width:25px;
- height:22px;
- padding-top:2px;
- padding-bottom:1px;
- background-color:{color:Color 2};
- font-size:15px;
- color:{color:Posts};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- -webkit-transition-delay: 1s; /* Safari */
- transition-delay: 1s;
- }
- #updatestab:hover #tabmarker{
- opacity:0;
- -webkit-transition-delay: 0s; /* Safari */
- transition-delay: 0s;
- }
- .updatestab{
- position:relative;
- padding:10px;
- opacity:0;
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- #updatestab:hover .updatestab{
- opacity:1;
- -webkit-transition-delay: 1s; /* Safari */
- transition-delay: 1s;
- }
- #tabtitle{
- margin-bottom:2px;
- padding:5px;
- background-color:{color:Color 2};
- font-family:'dolce_vita_lightsuper_light';
- font-size:20px;
- color:{color:Posts};
- }
- #contents{
- margin-bottom:2px;
- padding:5px;
- background-color:{color:Posts};
- font-size:10px;
- }
- /*----------------------------------------------------------------------*/
- #container{
- position:absolute;
- top:30px;
- left:50%;
- transform:translateX(-50%);
- {block:ifThreeColumns}
- width:750px;
- {/block:ifThreeColumns}
- {block:ifNotThreeColumns}
- width:610px;
- {/block:ifNotThreeColumns}
- {block:PermalinkPage}
- width:610px;
- {/block:PermalinkPage}
- }
- .entry{
- position:relative;
- z-index:2;
- {block:IndexPage}
- {block:ifThreeColumns}
- width:200px;
- {/block:ifThreeColumns}
- {block:ifNotThreeColumns}
- width:250px;
- {/block:ifNotThreeColumns}
- {/block:IndexPage}
- {block:PermalinkPage}
- width:500px;
- {block:ifBoldPostBorders}
- background-color:{color:Color 1};
- {/block:ifBoldPostBorders}
- {block:ifNotBoldPostBorders}
- border:1px solid {color:Color 1};
- background-color:{color:Posts};
- {/block:ifNotBoldPostBorders}
- {/block:PermalinkPage}
- margin:10px;
- padding:10px;
- {block:IndexPage}
- {block:ifNotAlternatingPostBorders}
- {block:ifBoldPostBorders}
- background-color:{color:Color 3};
- {/block:ifBoldPostBorders}
- {block:ifNotBoldPostBorders}
- border:1px solid {color:Color 3};
- background-color:{color:Posts};
- {/block:ifNotBoldPostBorders}
- {/block:ifNotAlternatingPostBorders}
- {block:IndexPage}
- text-align:justify;
- }
- {block:IndexPage}
- {block:ifAlternatingPostBorders}
- .postborders-even{
- position:absolute;
- z-index:-1;
- top:0px;
- bottom:0px;
- left:0px;
- right:0px;
- {block:ifBoldPostBorders}
- background-color:{color:Color 3};
- {/block:ifBoldPostBorders}
- {block:ifNotBoldPostBorders}
- border:1px solid {color:Color 3};
- background-color:{color:Posts};
- {/block:ifNotBoldPostBorders}
- }
- .postborders-odd{
- position:absolute;
- z-index:-1;
- top:0px;
- bottom:0px;
- left:0px;
- right:0px;
- {block:ifBoldPostBorders}
- background-color:{color:Color 4};
- {/block:ifBoldPostBorders}
- {block:ifNotBoldPostBorders}
- border:1px solid {color:Color 4};
- background-color:{color:Posts};
- {/block:ifNotBoldPostBorders}
- }
- {/block:ifAlternatingPostBorders}
- {/block:IndexPage}
- /*--Makes text posts look a little nicer--*/
- #textpostbody{
- padding:10px;
- background-color:{color:Posts};
- }
- /*--Makes text posts look a little nicer--*/
- /*--Post permalinks--*/
- #posteddate{
- padding:5px;
- text-align:right;
- background-color:{color:Color 2};
- font-size:9px;
- color:{color:Posts};
- }
- #textpermalinks{
- padding:5px;
- text-align:left;
- background-color:{color:Color 1};
- font-size:9px;
- color:{color:Posts};
- }
- #textpermalinks a{
- margin-left:5px;
- margin-right:5px;
- color:{color:Posts};
- }
- /*--Post permalinks--*/
- /*--Permalinks on photo posts--*/
- #photopermalinks{
- {block:PermalinkPage}
- display:none;
- {/block:PermalinkPage}
- position:absolute;
- z-index:15;
- {block:ifNotThreeColumns}
- width:220px;
- {/block:ifNotThreeColumns}
- {block:ifThreeColumns}
- width:170px;
- {/block:ifThreeColumns}
- top:50%;
- left:50%;
- transform:translate(-50%,-50%);
- opacity:0;
- text-align:center;
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .entry:hover #photopermalinks{
- opacity:1;
- }
- .photopermalinks{
- {block:ifNotThreeColumns}
- margin:5px;
- padding:10px;
- {/block:ifNotThreeColumns}
- {block:ifThreeColumns}
- margin:2px;
- padding:5px;
- {/block:ifThreeColumns}
- background-color:{color:Posts};
- font-family:'neouthin';
- font-size:15px;
- color:{color:Color 1};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photopermalinks:hover{
- background-color:{color:Color 2};
- color:{color:Posts};
- }
- /*--Permalinks on photo posts--*/
- /*--For hover effect on photo posts--*/
- #photoposts{
- position:relative;
- }
- .photohovereffecttop{
- position:absolute;
- z-index:10;
- top:2px;
- left:2px;
- right:2px;
- height:35px;
- opacity:0;
- background-color:{color:Color 1};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photohovereffectbottom{
- position:absolute;
- z-index:10;
- bottom:2px;
- left:2px;
- right:2px;
- height:35px;
- opacity:0;
- background-color:{color:Color 1};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photohovereffectleft{
- position:absolute;
- z-index:10;
- top:37px;
- bottom:37px;
- left:2px;
- width:35px;
- opacity:0;
- background-color:{color:Color 1};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photohovereffectright{
- position:absolute;
- z-index:10;
- top:37px;
- bottom:37px;
- right:2px;
- width:35px;
- opacity:0;
- background-color:{color:Color 1};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photohovereffectinner1{
- position:absolute;
- z-index:10;
- top:38px;
- bottom:38px;
- left:38px;
- right:38px;
- opacity:0;
- border:2px solid {color:Posts};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photohovereffectinner2{
- position:absolute;
- z-index:10;
- top:41px;
- bottom:41px;
- left:41px;
- right:41px;
- opacity:0;
- background-color:{color:Color 1};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .photohovereffect{
- position:absolute;
- top:0px;
- bottom:0px;
- left:0px;
- right:0px;
- opacity:0;
- background-color:{color:Posts};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- .entry:hover .photohovereffecttop{
- opacity:0.9;
- }
- .entry:hover .photohovereffectbottom{
- opacity:0.9;
- }
- .entry:hover .photohovereffectleft{
- opacity:0.9;
- }
- .entry:hover .photohovereffectright{
- opacity:0.9;
- }
- .entry:hover .photohovereffectinner1{
- opacity:1;
- }
- .entry:hover .photohovereffectinner2{
- opacity:0.9;
- }
- .entry:hover .photohovereffect{
- opacity:0.6;
- }
- /*--For hover effects on photo posts--*/
- /*--For quote posts--*/
- blockquote{
- margin:0px;
- text-align:left;
- font-family:'neouthin';
- font-size:20px;
- }
- #source{
- margin-top:5px;
- text-align:right;
- font-size:9px;
- }
- /*--For quote posts--*/
- /*--For the link in link posts--*/
- #link{
- padding:10px;
- background-color:{color:Color 1};
- text-align:center;
- font-family:'dolce_vita_lightsuper_light';
- font-size:30px;
- color:{color:Posts};
- -webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition: all 1s ease;
- }
- #link:hover{
- background-color:{color:Posts};
- color:{color:Color 1};
- }
- /*--For the link in link posts--*/
- /*--For the lines of chat posts--*/
- .odd{
- padding-top:5px;
- padding-bottom:5px;
- padding-left:15px;
- padding-right:15px;
- background-color:{color:Posts};
- color:{color:Color 2};
- }
- .even{
- padding-top:5px;
- padding-bottom:5px;
- padding-left:15px;
- padding-right:15px;
- background-color:{color:Color 1};
- color:{color:Posts};
- }
- /*--For the lines of chat posts--*/
- /*--The question part of answer posts--*/
- .question{
- padding:10px;
- background-color:{color:Color 2};
- color:{color:Posts};
- }
- .theasker{
- font-family:'neouthin';
- font-size:14px;
- }
- .theasker img{
- margin-right:5px;
- width:35px;
- height:35px;
- border-radius:90px;
- }
- .asked{
- margin-top:5px;
- padding:10px;
- background-color:{color:Color 1};
- }
- /*--The question part of answer posts--*/
- /*--The answer part of answer posts--*/
- .replies{
- margin-top:5px;
- margin-bottom:5px;
- padding:5px 20px 5px 20px;
- background-color:{color:Color 1};
- }
- .replies a{
- color:{color:Posts};
- }
- /*--The answer part of answer posts--*/
- /*--Permalink page--*/
- .caption{
- margin-top:10px;
- padding:10px;
- {block:ifNotBoldPostBorders}
- border:1px solid {color:Color 1};
- {/block:ifNotBoldPostBorders}
- background-color:{color:Posts};
- overflow-y:auto;
- }
- .tumblr_parent {
- margin:0px 0px 5px 0px;
- }
- .tumblr_avatar{
- display:none;
- }
- ol.notes{
- margin-bottom:0px;
- height:300px;
- padding:5px;
- overflow-y:auto;
- list-style-type:none;
- {block:ifNotBoldPostBorders}
- border:1px solid {color:Color 1};
- {/block:ifNotBoldPostBorders}
- background-color:{color:Posts};
- }
- ol.notes img.avatar {
- margin-right:5px;
- width:18px;
- height:18px;
- border-radius:90px;
- }
- ol.notes blockquote{
- margin-top:2px;
- margin-bottom:2px;
- font-family:'caviar_dreamsregular';
- font-size:{text:Font Size};
- }
- /*--Permalink Page--*/
- .tumblr_audio_player {
- {block:IndexPage}
- width: 250px;
- {/block:IndexPage}
- {block:PermalinkPage}
- width:500px;
- {/block:PermalinkPage}
- height: 100px;
- overflow: hidden;
- position: relative;
- z-index: 1000;
- }
- /*makes images in texts posts stay in the box*/
- iframe, img, embed, object, video {
- max-width: 100%;
- }
- img {
- vertical-align:middle;
- height: auto;
- width: auto;
- }
- /*----------------------------------------------------------------------*/
- {block:ifBorderStyle}
- #s1right, #s1left1, #s1left2{
- position:fixed;
- top:0px;
- bottom:0px;
- background-color:{color:Color 1};
- }
- #s1right{
- right:0px;
- width:15px;
- border-left:4px double {color:Posts};
- }
- #s1left1{
- left:0px;
- width:15px;
- border-right:1px solid {color:Posts};
- }
- #s1left2{
- left:16px;
- width:5px;
- border-right:5px double {color:Posts};
- }
- {/block:ifBorderStyle}
- {block:ifNotBorderStyle}
- #s2top1, #s2top2, #s2bottom1, #s2bottom2, #s2left1, #s2left2, #s2right1, #s2right2{
- position:fixed;
- z-index:9000000000;
- background-color:{color:Color 1};
- }
- #s2top1, #s2bottom1{
- left:0px;
- right:0px;
- height:4px;
- }
- #s2top2, #s2bottom2{
- left:0px;
- right:0px;
- height:2px;
- }
- #s2top1{
- top:0px;
- border-bottom:1px solid {color:Posts};
- }
- #s2top2{
- top:5px;
- border-bottom:1px solid {color:Posts};
- }
- #s2bottom1{
- border-top:1px solid {color:Posts};
- bottom:0px;
- }
- #s2bottom2{
- bottom:5px;
- border-top:1px solid {color:Posts};
- }
- #s2left1, #s2right1{
- top:0px;
- bottom:0px;
- width:5px;
- }
- #s2left2, #s2right1{
- top:0px;
- bottom:0px;
- width:2px;
- }
- #s2left1{
- border-right:1px solid {color:Posts};
- left:0px;
- }
- #s2left2{
- left:6px;
- border-right:1px solid {color:Posts};
- }
- #s2right1{
- right:0px;
- border-left:1px solid {color:Posts};
- }
- {/block:ifNotBorderStyle}
- /*----------------------------------------------------------------------*/
- #fade { /*--Transparent background layer on pop-ups--*/
- display: none; /*--hidden by default--*/
- background: {color:Background};
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: 1;
- z-index: 999900;
- }
- img.btn_close {
- display:none;
- }
- /*--Making IE6 Understand Fixed Positioning--*/
- *html #fade {
- position: absolute;
- }
- *html .popup_block{
- position: absolute;
- }
- .popup_block{
- /*main*/
- display:none; /*hides when not using*/
- position:fixed;
- top:50%;
- left:50%;
- z-index:9000000;
- }
- #askblock{
- position:fixed;
- z-index:9000000;
- top:50%;
- left:50%;
- transform:translate(-50%,-50%);
- width:350px;
- padding:20px;
- border:5px double {color:Color 2};
- background-color:{color:Posts};
- }
- #ask{
- margin:10px;
- }
- /*----------------------------------------------------------------------*/
- #s-m-t-tooltip {
- max-width:150px;
- background-color:{color:Color 1};
- font-family:'neouthin';
- font-size:11px;
- color:{color:Posts};
- padding:5px;
- margin:15px 0px 0px 10px;
- z-index:99999999999999999999999999999999999;
- }
- body{
- text-align:justify;
- background-color:{color:Backgrounds};
- font-family:'caviar_dreamsregular';
- font-size:{text:Font Size};
- color:{color:Font Color};
- }
- h1{
- margin:0px;
- padding:5px;
- text-align:center;
- background-color:{color:Color 2};
- font-family:'dolce_vita_lightsuper_light';
- font-size:25px;
- color:{color:Posts};
- }
- h1 b{
- font-family:'dolce_vita_lightsuper_light';
- }
- h2{
- margin-top:3px;
- margin-bottom:3px;
- padding:3px;
- background-color:{color:Color 3};
- text-align:center;
- font-family:'neouthin';
- font-size:18px;
- color:{color:Posts};
- }
- h2 b{
- font-family:'neouthin';
- }
- hr{
- height:1px;
- border:none;
- background-color:{color:Color 1};
- }
- ul{
- font-family:'caviar_dreamsregular';
- font-size:{text:Font Size};
- }
- p{
- text-align:justify;
- font-family:'caviar_dreamsregular';
- font-size:{text:Font Size};
- }
- a{
- text-decoration:none;
- color:{color:Color 1};
- webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition:all 1s ease; /*smooth transitions*/
- }
- a:hover{
- color:{color:Color 2};
- }
- b{
- font-family:'caviar_dreamsbold';
- }
- /*--Change the color of the highlights--*/
- ::-moz-selection { /* Code for Firefox */
- background:{color:Color 1};
- color:{color:Posts};
- }
- ::selection{
- background:{color:Color 1};
- color:{color:Posts};
- }
- /*Cred to html tutorials*/
- ::-webkit-scrollbar-thumb:vertical {
- width:4px; /*width of the slider*/
- opacity:1;
- background-color:{color:Posts}; /*color of main scrollbar*/
- }
- ::-webkit-scrollbar {
- border-left:1px solid {color:Posts};
- background-color:{color:Color 1}; /*color of the slider*/
- width:4px;
- opacity:1;
- }
- ::-webkit-scrollbar-corner{
- background-color:#FEFEFE;
- opacity:0;
- }
- #infscr-loading {
- display: none !important;
- }
- .tmblr-iframe{
- position:fixed;
- {block:ifBorderStyle}
- margin-top:2px;
- margin-right:21px;
- {/block:ifBorderStyle}
- {block:ifNotBorderStyle}
- margin-top:8px;
- margin-right:4px;
- {/block:ifNotBorderStyle}
- z-index:10000 !important;
- -webkit-filter: invert(100%);
- }
- /*----------------------------------------------------------------------*/
- </style>
- </head>
- <!-------------------What Appears On The Browser Tab---------------------->
- <title>{Title}</title>
- <link href="{Favicon}" rel="icon" type="image/x-icon" />
- <!---------You can customize this to something differant from your profile pic by putting the url to your desired icon in place of {Favicon}------->
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <!---------------------------------------------------------------------->
- <body>
- <!----------------------------------------------------------------------->
- <div id="sidebar">
- <div id="blogtitle">{Title}</div>
- <div id="description">{Description}</div>
- <div id="links">
- <a href="/"><i class="fa fa-circle-o-notch fa-spin"></i></a>
- •
- {block:ifPopupAsk}
- <a href="#?w=500" rel="01" class="poplight" title="Message"><i class="fa fa-envelope-o"></i></a>
- {/block:ifPopupAsk}
- {block:ifNotPopupAsk}
- <a href="/ask" title="Message"><i class="fa fa-envelope-o"></i></a>
- {block:ifNotPopupAsk}
- •
- <a href="{text:Link 3 URL}" title="{text:Link 3}"><i class="fa fa-user-o"></i></a> •
- <a href="{text:Link 4 URL}" title="{text:Link 4}"><i class="fa fa-navicon"></i></a>
- •
- <a href="http://katting.tk"><i class="fa fa-code"></i></a>
- </div>
- </div>
- <!----------------------------------------------------------------------->
- {block:ifUpdatesTab}
- <div id="updatestab">
- <div id="tabmarker">
- {block:ifLeftOrRightSidebar}
- <i class="fa fa-angle-right"></i>
- {/block:ifLeftOrRightSidebar}
- {block:ifNotLeftOrRightSidebar}
- <i class="fa fa-angle-left"></i>
- {/block:ifNotLeftOrRightSidebar}
- </div>
- <div class="updatestab">
- <div id="tabtitle">{text:Tab One Title}</div>
- <div id="contents">
- {text:Tab One Contents}
- </div>
- <div id="tabtitle">{text:Tab Two Title}</div>
- <div id="contents">
- {text:Tab Two Contents}
- </div>
- <div id="tabtitle">{text:Tab Three Title}</div>
- <div id="contents">
- {text:Tab Three Contents}
- </div>
- </div>
- </div>
- {/block:ifUpdates Tab}
- <!----------------------------------------------------------------------->
- <div id="container">
- <center>
- {block:Posts}
- <div class="entry">
- {block:IndexPage}
- {block:ifAlternatingPostBorders}
- {block:Odd}<div class="postborders-odd"></div>{/block:Odd}
- {block:Even}<div class="postborders-even"></div>{/block:Even}
- {/block:ifAlternatingPostBorders}
- {/block:IndexPage}
- <!--------------------------------------------------------------->
- {block:Text}
- <div class="post text">
- {block:Title}<h1>{Title}</h1>{/block:Title}
- <div id="textpostbody">{Body}</div>
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {block:Text}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Photo}
- <div class="post photo">
- {block:IndexPage}
- <div id="photoposts">
- <div class="photohovereffecttop"></div>
- <div class="photohovereffectbottom"></div>
- <div class="photohovereffectleft"></div>
- <div class="photohovereffectright"></div>
- <div class="photohovereffectinner1"></div>
- <div class="photohovereffectinner2"></div>
- <div class="photohovereffect"></div>
- <img src="{PhotoURL-250}" alt="{PhotoAlt}"/>
- </div>
- <div id="photopermalinks">
- <a href="{Permalink}"><div class="photopermalinks">{TimeAgo}</div></a>
- <a href="{Permalink}"><div class="photopermalinks">{NoteCountWithLabel}</div></a>
- <a href="{ReblogURL}"><div class="photopermalinks">Reblog</div></a>
- </div>
- {block:IndexPage}
- {block:PermalinkPage}
- <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
- {/block:PermalinkPage}
- </div>
- {/block:Photo}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Panorama}
- <div class="post panorama">
- {LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>
- {LinkCloseTag}
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Panorama}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Photoset}
- <div class="post photoset">
- <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
- {block:Photos}
- <div class="photo-data"><div class="pxu-photo">
- <img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}">
- </div>
- <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a>
- </div>
- {/block:Photos}
- </div>
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Photoset}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Quote}
- <div id="post quote">
- <div id="textpostbody">
- <blockquote>"{Quote}"</blockquote>
- <div id="source">{Source}</div>
- </div>
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Quote}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Link}
- <div class="post link">
- <a href="{URL}" class="link" {Target} target="blank"><div id="link">{Name}</div></a>
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Link}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Chat}
- <div class="post chat">
- {block:Title}<h1>{Title}</h1>{/block:Title}
- <div class="chat">
- {block:Lines}
- <div class="{Alt} user_{UserNumber}">
- {block:Label}<b>{Label}</b>{/block:Label}
- {Line}
- </div>
- {block:Lines}
- </div>
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Chat}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Video}
- <div class="post video">
- {block:IndexPage}{Video-250}{/block:IndexPage}
- {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Video}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Audio}
- <div class="post audio">
- </div>
- {/block:Audio}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:Answer}
- <div class="question">
- <div class="theasker">
- <table>
- <tr>
- <td><img src="{AskerPortraitURL-64}"></td>
- <td>{Asker} asked:</td>
- </tr>
- </table>
- </div>
- <div class="asked">{Question}</div>
- </div>
- <div class="replies">
- {Answer}
- </div>
- <div id="posteddate">
- Posted on {MonthNumber}/{DayOfMonth}/{Year}
- </div>
- {block:IndexPage}
- <div id="textpermalinks">
- <a href="{Permalink}" title="Permalink">{NoteCountWithLabel}</a>
- •
- <a href="{ReblogURL}"title="Reblog">Reblog</a>
- </div>
- {/block:IndexPage}
- {/block:Answer}
- <!--------------------------------------------------------------->
- <!--------------------------------------------------------------->
- {block:PermalinkPagination}
- {block:PermalinkPage}
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {block:PostNotes}{PostNotes-16}{/block:PostNotes}
- {/block:PermalinkPage}
- {/block:PermalinkPagination}
- <!--------------------------------------------------------------->
- </div>
- {block:Posts}
- </center>
- </div>
- <style>
- #cred{
- position:fixed;
- z-index:9000;
- {block:ifBorderStyle}
- bottom:5px;
- right:23px;
- {/block:ifBorderStyle}
- {block:ifNotBorderStyle}
- bottom:10px;
- right:6px;
- {/block:ifNotBorderStyle}
- width:15px;
- height:15px;
- padding:5px;
- border-radius:90px;
- background-color:{color:Color 1};
- text-align:center;
- font-size:14px;
- color:{color:Posts};
- webkit-transition: all 1s ease;
- -moz-transition: all 1s ease;
- -o-transition: all 1s ease;
- transition:all 1s ease; /*smooth transitions*/
- }
- #cred:hover{
- background-color:{color:Color 2};
- }
- </style>
- <a href="http://felinethemes.tumblr.com" title="Feline Themes" target="blank"><div id="cred"><i class="fa fa-paw"></i></div></a>
- <!----------------------------------------------------------------------->
- {block:ifBorderStyle}
- <div id="s1right"></div>
- <div id="s1left1"></div>
- <div id="s1left2"></div>
- {/block:ifBorderStyle}
- {block:ifNotBorderStyle}
- <div id="s2top1"></div>
- <div id="s2top2"></div>
- <div id="s2bottom1"></div>
- <div id="s2bottom2"></div>
- <div id="s2left1"></div>
- <div id="s2left2"></div>
- <div id="s2right1"></div>
- <div id="s2right2"></div>
- {block:ifNotBorderStyle}
- <!---------------------------------------------------------------------->
- <!---------------------------------------------------------------------->
- {block:ifScrollToTopButton}
- <a href="javascript:;" id="scrollToTop" rel="nofollow" title="Back To Top"><i class="fa fa-arrow-up"></i></a>
- {/block:ifScrollToTopButton}
- <!-------------------- PAGINATION - DON'T REMOVE ----------------------->
- {block:Pagination}
- <div class="pagination" style="visibility:hidden;">
- {block:NextPage}
- <a href="{NextPage}" id="next">Next</a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- <!------------ Functionality [BE CAREFUL, EASY TO FUCK UP] ------------->
- <script>
- $(function(){
- // ------------------------- Style My Tooltips -------------------------
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:90,
- tip_fade_speed:600,
- attribute:"title"
- });
- });
- })(jQuery);
- // ----------------------- Unnest by NEO --------------------------------
- $('.entry').unnest({ //posts themselves
- yourCaption: ".caption", //caption div
- wrapName: ".tumblr_parent", //unnested captions
- newCaptionUsername: true, //add username
- originalPostCaptionUsername: true, //adds username regardless
- tumblrAvatars: true, // user avatars
- tumblrAvatarClass: ".tumblr_avatar", // avatar class
- usernameColon: false
- });
- //---------------------------- PXU Photosets ----------------------------
- $('.photo-slideshow').pxuPhotoset({
- lightbox: false,
- rounded: false,
- gutter: '{select:Photoset Gutter Size}',
- photoset: '.photo-slideshow',
- photoWrap: '.photo-data',
- photo: '.pxu-photo'
- });
- });
- // -------------------------- Infinite Scroll ---------------------------
- {block:IndexPage}
- (function () {
- var $blogcontent = $('#container'); //posts container
- $blogcontent.imagesLoaded(function () {
- $blogcontent.masonry({
- itemSelector: '.entry', //posts themselves
- isAnimated:false,
- columnWidth:250,
- gutterWidth:40,
- });
- });
- $blogcontent.infinitescroll({
- navSelector : "div.pagination", //pagination div
- nextSelector : ".pagination a#next", //pagination next
- itemSelector : ".entry",
- loading: {
- finishedMsg: "<p>You have reached the end of the internet. Now go outside and get some fresh air.</p>", // if you scroll that far
- msg: null,
- msgText: "",
- },
- },
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.find('.photo-slideshow').pxuPhotoset({ //pxu callback
- lightbox: false,
- rounded: false,
- gutter: '3px',
- photoset: '.photo-slideshow',
- photoWrap: '.photo-data',
- photo: '.pxu-photo'
- },
- function(){
- $blogcontent.masonry({
- itemSelector: '.entry',
- columnWidth:250,
- gutterWidth:40,
- });
- });
- var $newElems = $(newElements).css({
- opacity: 0,
- zIndex: -1,
- });
- $newElems.imagesLoaded(function(){
- $newElems.animate({ opacity: 1, zIndex: 1 });
- $blogcontent.masonry( 'appended', $newElems );
- });
- });
- })();
- {/block:IndexPage}
- </script>
- <!---------------------------------------------------------------------->
- </body>
- <!---------------------------------------------------------------------->
- {block:ifPopupAsk}
- <div id="01" class="popup_block">
- <div id="askblock">
- <h1>{text:Popup Ask Title}</h1>
- <div id="ask">
- <!------------------------------Ask Form-------------------------------->
- <iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form"></iframe>
- <!---------------------------------------------------------------------->
- </div>
- </div>
- </div>
- {/block:ifPopupAsk}
- <!--------------------------------------------------------------------->
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement