Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- septim theme
- -->
- <!DOCTYPE html>
- <head>
- <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="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
- <!--Default Variables-->
- <meta name="color:Background" content="#f4f4f4"/>
- <meta name="color:Text" content="#aaaaaa"/>
- <meta name="color:Link" content="#000000"/>
- <meta name="color:Link Hover" content="#ffffff"/>
- <meta name="color:Title" content="#ffffff"/>
- <meta name="color:Blog Title" content="#000000"/>
- <meta name="color:Blog Title Link" content="#ffffff"/>
- <meta name="color:Posts and Sidebar" content="#ffffff"/>
- <meta name="color:Accents" content="#000000"/>
- <meta name="color:Accent Text" content="#ffffff"/>
- <meta name="color:Scrollbar" content="#000000"/>
- <meta name="color:Bold" content="#000000"/>
- <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:Home Link Title" content="index"/>
- <meta name="text:Message Link Title" content="message"/>
- <meta name="text:Archive Link Title" content="archive"/>
- <meta name="text:Post Spacing" content="100"/>
- <meta name="text:Post Width" content="350"/>
- <meta name="image:Sidebar" content=""/>
- <meta name="image:Background" content=""/>
- <meta name="if:Stretch Background" content="0"/>
- <meta name="if:Show Sidebar Image" content="1"/>
- <meta name="if:Hide Captions" content="0"/>
- <meta name="if:Hide Tags" content="0"/>
- <meta name="if:Click for Sidebar" content="0"/>
- <meta name="if:Infinite Scroll" content="0"/>
- <meta name="if:Center Content" content="1"/>
- <!-- jquery for tooltips-->
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
- <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
- <script>
- $(function() {
- $(document).tooltip({
- track:true
- });
- });
- </script>
- {block:ifclickforsidebar}
- <script>
- $(document).ready(function(){
- $('#blogt').click(function(){
- $('#s').slideToggle(400);
- });
- });
- </script>
- {/block:ifclickforsidebar}
- <!--infinte scroll code-->
- {block:indexpage}
- {block:ifinfinitescroll}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
- {/block:ifinfinitescroll}
- {/block:indexpage}
- <!--CSS customization here. -->
- <style type="text/css">
- /*tumblr controls*/
- iframe#tumblr_controls {
- white-space:nowrap!important;
- -webkit-filter:invert(100%)!important;
- -moz-filter:invert(100%)!important;
- -ms-filter:invert(100%)!important;
- -o-filter:invert(100%)!important;
- filter:invert(100%)!important;
- top:5px!important;
- right:5px!important;
- position:fixed!important;
- opacity:.2!Important;
- }
- /*lightbox*/
- #tumblr_lightbox {
- background-color:rgba(246, 246, 246, .9)!important;
- z-index:99999!important;
- }
- #tumblr_lightbox img {opacity:0;}
- #tumblr_lightbox_caption {
- color:black!important;
- font-family:trebuchet ms!important;
- font-size:10px!important;
- font-weight:normal!important;
- text-shadow:none!important;
- }
- #tumblr_lightbox_center_image, #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {
- padding:10px!important;
- background:white!important;
- margin-top:-10px!important;
- margin-left:-10px!important;
- -moz-box-shadow:none!important;
- -webkit-box-shadow:none!important;
- box-shadow:none!important;
- -moz-border-radius:0px!important;
- -webkit-border-radius:0px!important;
- border-radius:0pxpx!important;
- opacity:1!important;
- }
- #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {opacity:.6!important;}
- /*tooltip*/
- .ui-tooltip {
- position:Absolute;
- z-index:9999;
- padding:10px;
- }
- .ui-tooltip-content {
- background:{color:accents};
- color:{color:accent text};
- padding:0px 4px;
- font-size:8px;
- text-transform:uppercase;
- font-family:courier new;
- letter-spacing:2px;
- }
- /*scrollbar*/
- ::-webkit-scrollbar{
- height:3px;
- width:5px;
- background-color:{color:background};
- }
- ::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
- ::-webkit-scrollbar-track {background-color:{color:background};}
- /*basics*/
- body {
- background:{color:background} url('{image:background}') center center fixed repeat;
- {block:ifstretchbackground}
- -webkit-background-size: cover;
- -moz-background-size: cover;
- -o-background-size: cover;
- background-size: cover;
- {/block:ifstretchbackground}
- color:{color:text};
- font-family:trebuchet ms, sans-serif;
- font-size:9px;
- text-align:justify;
- letter-spacing:1px;
- margin:0;
- line-height:150%;
- }
- blockquote {
- padding:0 0 0 10px;
- border-left:1px solid rgba({RGBcolor:text},.4);
- margin:10px;
- text-align:left;
- }
- .caption blockquote {margin:5px 0;}
- a {
- border-bottom:1px solid {color:link};
- color:{color:text};
- text-decoration:none;
- transition:0.4s;
- -o-transition-transition:0.4s;
- -webkit-transition-duration:0.4s;
- -moz-transition-duration:0.4s;
- }
- a:hover {
- text-decoration:none;
- color:{color:text};
- border-bottom:1px solid {color:link hover};
- transition:0.4s;
- -o-transition-transition:0.4s;
- -webkit-transition-duration:0.4s;
- -moz-transition-duration:0.4s;
- }
- img {
- opacity:1;
- border:none;
- text-decoration:none;
- }
- small {
- font-size:9px;
- }
- big {
- font-size:9px;
- }
- b, strong {color:{color:bold};}
- p {margin:5px 0;}
- p:first-of-type {margin-top:0;}
- p:last-of-type {margin-bottom:0;}
- pre {
- margin:0;
- padding:0;
- font-family:trebuchet ms;
- font-size:9px;
- background:transparent;
- }
- /*top*/
- #sidebar {
- -webkit-animation-name: fade-in;
- -webkit-animation-duration: 2s;
- text-align:left;
- position:fixed;
- left:50px;
- {block:ifcentercontent}
- left:50%;
- margin-left:calc(-{text:post width}px / 2 - 200px);
- {/block:ifcentercontent}
- top:50px;
- z-index:5;
- width:150px;
- }
- {block:ifclickforsidebar}
- #s {display:none;}
- {/block:ifclickforsidebar}
- #sidebar img {
- display:block;
- width:130px;
- padding:10px;
- background:{color:posts and sidebar};
- margin-bottom:5px;
- }
- #blogt {
- background:{color:blog title};
- color:{color:blog title link};
- display:block;
- font-size:8px;
- cursor:pointer;
- padding:10px;
- border:0;
- text-transform:uppercase;
- letter-spacing:2px;
- font-family:courier new;
- margin-bottom:5px;
- }
- #blogt:hover {
- background:{color:blog title link};
- color:{color:blog title};
- }
- #blogt i {margin-right:10px;}
- #links {
- text-transform:uppercase;
- list-style:none;
- font-family:courier new;
- padding:10px;
- margin:0;
- background:{color:posts and sidebar};
- }
- #links a {border:0;}
- #links a:hover {color:{color:link hover};}
- #links i {margin-right:10px;}
- #description {
- padding:10px;
- background:{color:posts and sidebar};
- margin-bottom:5px;
- }
- /*pagination*/
- #pagination {
- margin-top:5px;
- font-family:courier new;
- text-transform:uppercase;
- }
- #pagination i {
- margin-right:7px;
- }
- #pagination a {
- display:inline-block;
- margin:0 3px;
- border:0;
- }
- #pagination a:hover {color:{color:link hover};}
- /*posts*/
- #entries {
- margin:50px auto 100px auto;
- {block:ifnotcentercontent}
- margin:50px 0 100px 250px;
- {/block:ifnotcentercontent}
- position:relative;
- width:calc({text:Post width}px + 20px);
- }
- .posts {
- -webkit-animation-name: fade-in;
- -webkit-animation-duration: 2s;
- position:relative;
- width:calc({text:Post width}px + 20px);
- {block:IndexPage}
- margin-bottom:{text:post spacing}px;
- {/block:IndexPage}
- {block:PermalinkPage}
- margin-bottom:5px;
- {/block:PermalinkPage}
- }
- {block:IndexPage}
- .posts:last-of-type {margin-bottom:0;}
- {/block:IndexPage}
- .hm img, .set {
- padding:10px;
- background:{color:posts and sidebar};
- }
- .hm iframe, .hm img {
- display:block;
- width:{text:post width}px;
- }
- .hm a {border:0!important;}
- .v {
- display:block;
- padding:10px;
- background:{color:posts and sidebar};
- }
- .video_big {
- position:relative;
- height:0;
- padding-bottom:56.25%;
- }
- .video_big iframe {
- position:absolute;
- top:0;
- left:0;
- height:100%;
- width:100%;
- }
- .pad {
- padding:10px;
- background:{color:posts and sidebar};
- }
- .posts img, .posts li, .posts blockquote {max-width: 100%;}
- .tumblr_blog {
- margin-bottom:5px;
- display:inline-block;
- }
- #title {
- font-size:8px;
- color:{color:title};
- text-transform:uppercase;
- margin-bottom:5px;
- background:{color:accents};
- padding:10px;
- font-family:courier new;
- }
- #title i {margin-right:10px;}
- #title a {
- color:{color:title};
- border-bottom:0;
- }
- #title a:hover {color:{color:link hover};}
- .caption {
- margin-top:5px;
- {block:indexpage}
- {block:ifhidecaptions}
- display:none;
- {/block:ifhidecaptions}
- {/block:indexpage}
- }
- /*quote*/
- #titlequote {
- font-size:11px;
- letter-spacing:0;
- line-height:200%;
- color:{color:bold};
- }
- #source {
- margin-top:5px;
- font-family:courier new;
- font-size:8px;
- text-transform:uppercase;
- }
- /*audio*/
- .m {
- overflow:hidden;
- display:block;
- width:27px;
- height:28px;
- border-width:11px 11px 11px 12px;
- border-color:white;
- border-style:solid;
- position:absolute;
- }
- .player {
- width:25px;
- height:25px;
- background:white;
- border-right:2px solid white;
- border-bottom:3px solid white;
- }
- .audioinfo {
- text-align:left;
- background:{color:posts and sidebar};
- display:block;
- padding:10px;
- line-height:15px;
- min-height:30px;
- margin-left:55px;
- text-transform:uppercase;
- font-size:8px;
- font-family:courier new;
- }
- .audioinfo b {border-bottom:1px solid {color:bold};}
- /*asks*/
- .q {}
- .q a {color:{color:bold};
- border:0!important;
- }
- .q a:hover {color:{color:link hover};}
- .a {margin-top:5px;}
- /*chat*/
- .chat ol {
- padding:0;
- margin:0;
- list-style:none;
- text-align:left;
- }
- .line {
- margin-bottom:5px;
- padding:10px;
- }
- .line.odd {background:{color:posts and sidebar};}
- .line.even {
- background:{color:accents};
- color:{color:accent text};
- }
- .label {
- text-transform:uppercase;
- font-size:8px;
- font-family:courier new;
- }
- .even .label {color:{color:accent text};}
- .odd .label {color:{color:bold};}
- /*permalink and notes*/
- #permalink {
- position:block;
- margin-bottom:5px;
- font-size:8px;
- text-transform:uppercase;
- font-family:courier new;
- }
- #permalink a {
- padding:5px 10px;
- background:{color:accents};
- color:{color:accent text};
- border:0;
- display:block;
- }
- #permalink i {font-size:6px;}
- .ok {margin-right:30px;}
- .re {
- width:5px;
- text-align:center;
- float:right;
- }
- #perm, .tags {
- padding:10px;
- background:{color:posts and sidebar};
- margin-top:5px;
- }
- .tags {
- word-break:break-all;
- {block:ifhidetags}
- {block:indexpage}
- display:none;
- {/block:indexpage}
- {/block:ifhidetags}
- }
- .tags a {margin-right:3px;}
- .pagenotes {
- -webkit-animation-name: fade-in;
- -webkit-animation-duration: 2s;
- text-align:left;
- padding:10px;
- width:{text:post width};
- background:{color:posts and sidebar};
- font-size:8px;
- font-family:courier new;
- text-transform:uppercase;
- max-height:300px;
- overflow-y:auto;
- }
- .pagenotes::-webkit-scrollbar{
- width:2px;
- background-color:{color:posts and sidebar};
- }
- .pagenotes::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
- .pagenotes::-webkit-scrollbar-track {background-color:{color:posts and sidebar};}
- .pagenotes ol {
- margin:0!important;
- padding:0!important;
- list-style:none;
- }
- .pagenotes img {display:none!important;}
- .pagenotes li {
- list-style-type:none;
- padding:0 0 5px 0;
- margin:0;
- text-align:left;
- }
- .theme {
- position:fixed;
- bottom:15px;
- right:15px;
- width:15px;
- text-align:center;
- font-size:8px;
- color:{color:bold};
- border:0;
- }
- .theme:hover {border:0;}
- {CustomCSS}
- @-webkit-keyframes fade-in {
- 0% { opacity: 0; }
- 50% { opacity: 0; }
- 100% { opacity: 1; }
- </style>
- </head>
- <body>
- <div id="sidebar">
- <a {block:ifnotclickforsidebar}href="/"{/block:ifnotclickforsidebar} id="blogt"><i class="fa fa-times"></i>{Title}</a>
- <div id="s">
- {block:ifshowsidebarimage}<img src="{image:sidebar}"/>{/block:ifshowsidebarimage}
- <div id="description">{Description}</div>
- <ul id="links">
- <li><i class="fa fa-angle-double-right"></i><a href="/">{text:home link title}</a></li><li><i class="fa fa-angle-double-right"></i><a href="/ask">{text:message link title}</a></li><li><i class="fa fa-angle-double-right"></i><a href="/archive">{text:archive link title}</a></li>{block:ifLink1}<li><i class="fa fa-angle-double-right"></i><a href="{text:Link 1 URL}">{text:Link 1}</a></li>{/block:ifLink1}{block:ifLink2}<li><i class="fa fa-angle-double-right"></i><a href="{text:Link 2 URL}">{text:Link 2}</a></li>{/block:ifLink2}{block:ifLink3}<li><i class="fa fa-angle-double-right"></i><a href="{text:Link 3 URL}">{text:Link 3}</a></li>{/block:ifLink3}
- </ul>
- </div>
- {block:ifnotinfinitescroll}
- {block:Pagination}
- <div id="pagination" class="pad">
- <i class="fa fa-angle-double-right"></i>{block:PreviousPage}<a href="{PreviousPage}">less</a> / {/block:PreviousPage}{block:NextPage}<a href="{NextPage}">more</a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- {/block:ifnotinfinitescroll}
- </div>
- <div id="entries">
- <div class="autopagerize_page_element">
- {block:Posts}
- <div class="posts">
- {block:Date}{block:indexpage}
- <div id="permalink">
- <a href="{ReblogURL}" target="_blank" class="re" title="reblog"><i class="fa fa-times"></i></a><a href="{permalink}" title="{timeago}" class="ok">{shortmonth} {dayofmonth}{dayofmonthsuffix}{block:notecount}({notecount}){/block:notecount}</a>
- </div>{/block:indexpage}
- {/block:Date}
- {block:Quote}
- <div id="titlequote" class="pad">“{Quote}”</div>
- {block:Source}<div id="source" class="pad">{Source}</div>{/block:Source}
- {/block:Quote}
- {block:Text}
- {block:Title}<div id="title"><i class="fa fa-angle-double-right"></i>{Title}</div>{/block:Title}
- <div class="pad">{Body}</div>
- {/block:Text}
- {block:Link}
- <div id="title"><i class="fa fa-angle-double-right"></i><a href="{URL}">{Name}</a></div>
- {block:Description}<div class="pad">{Description}</div>{/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}<div id="title"><i class="fa fa-angle-double-right"></i>{Title}</div>{/block:Title}
- <div class="chat">
- <ol>{block:Lines}
- <li class="line {Alt}">
- {block:Label}
- <span class="label">
- {Label}</span>
- {/block:Label}{Line}</li>
- {/block:Lines}
- </ol></div>
- {/block:Chat}
- {block:Photo}<div class="hm">
- <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
- </div>{/block:Photo}
- {block:Photoset}<div class="hm">
- <div class="set">{photoset}</div>
- </div>
- {/block:Photoset}
- {block:Video}<div class="v">
- <div class="video_big">{VideoEmbed-700}</div></div>
- {/block:Video}
- {block:Audio}
- <div class="m">
- <div class="player">{AudioPlayerWhite}</div>
- </div>
- <div class="audioinfo">
- {block:TrackName}<b>{TrackName}</b>{/block:TrackName}{block:Artist}<br>by {Artist}{/block:Artist}
- </div>
- {/block:Audio}
- {block:Answer}
- <div class="q pad">{Asker} said: {Question}</div>
- <div class="a pad">{Answer}</div>
- {/block:Answer}
- {block:Caption}<div class="caption pad">{Caption}</div>{/block:Caption}
- {block:Date}{block:permalinkpage}
- <div id="perm">
- Posted on <a href="{permalink}" title="{timeago}">{shortmonth} {dayofmonth}{dayofmonthsuffix}</a>{block:notecount} with <a href="{permalink}">{notecountwithlabel}</a>{/block:notecount}
- {block:RebloggedFrom}<br>Via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{block:ContentSource} — source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:ContentSource}{/block:RebloggedFrom}
- </div>{block:permalinkpage}
- {/block:Date}
- {block:HasTags}<div class="tags">Tags: {block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
- </div>
- {block:PostNotes}
- <div class="pagenotes" class="pad">
- {PostNotes}
- </div>
- {/block:PostNotes}
- {/block:Posts}
- <a class="theme" href="http://farahmir.tumblr.com" target="_blank" title="septim">©</a>
- </div>
- </div>
- {block:ContentSource}
- <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
- width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement