Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html><html><head>
- <!---base code #1 by ewzayns
- _______ __ __ .____ __ __ .____ ____ _ _
- ' / | | / | | / / \ `. /
- | |___| |__. |\ /| |__. |,_-< `./
- | | | | | \/ | | | ` ,'
- / / / /----/ / / /----/ `----' _-'
- ____ _____ .____ _______ __ __ .____ __ __ .____ _____
- / \ ( / ' / | | / | | / (
- |,_-< `--. |__. | |___| |__. |\ /| |__. `--.
- | ` | | | | | | | \/ | | |
- `----' \___.' /----/ / / / /----/ / / /----/ \___.'
- -don't change or remove credit
- -don't take bits of the code
- -don't claim theme as yours
- -for any questions, feedback or theme requests please don't hesitate to contanct me!!!
- -->
- <title>{Title}</title>
- {block:description}<meta name="description" content="{MetaDescription}"/>{block:description}
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
- <meta name="color:background" content="#ffffff"/>
- <meta name="color:text" content="#000000"/>
- <meta name="color:bold" content="#000000"/>
- <meta name="color:italic" content="#000000"/>
- <meta name="color:links" content="#787878"/>
- <meta name="color:hover" content="#e0e0e0"/>
- <meta name="color:border" content="#eee"/>
- <meta name="color:notebookbackground" content="#fff"/>
- <meta name="image:background" content=""/>
- <meta name="image:sidebar" content=""/>
- <meta name="if:InfiniteScroll" content="0">
- <meta name="if:captions" content="1">
- <meta name="if:SidebarTitle" content="1">
- <meta name="if:BackgroundCover" content="1">
- <meta name="if:Tags" content="0">
- <meta name="text:sidebar title" content="this is ur title"/>
- <!---here is the metas for your links! if you'd like to add more links to your sidebar, just copy link and the link url metas and change the numbers--->
- <meta name="text:link 1" content="link 1"/>
- <meta name="text:link 1 url" content="/"/>
- <meta name="text:link 2" content="link 2"/>
- <meta name="text:link 2 url" content="/"/>
- <meta name="text:link 3" content="link 3"/>
- <meta name="text:link 3 url" content="/"/>
- <meta name="text:link 4" content="link 4"/>
- <meta name="text:link 4 url" content="/"/>
- {block:ifInfiniteScroll}
- <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
- {/block:ifInfiniteScroll}
- <script type="text/javascript">
- WebFontConfig = {
- google: { families: [ 'Source+Code+Pro::latin' ] }
- };
- (function() {
- var wf = document.createElement('script');
- wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
- '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
- wf.type = 'text/javascript';
- wf.async = 'true';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(wf, s);
- })(); </script>
- <style type="text/css">
- /*---this is where CSS begins!!! Wooooooooo---*/
- ::-webkit-scrollbar-thumb {
- height:auto;
- background-color:{color:notebookbackground};
- }
- ::-webkit-scrollbar {
- height:9px;
- width:4px;
- background-color:{color:border};
- }
- /*---the styling of the entire page---*/
- body {
- background-image: url('{image:background}');
- {block:ifBackgroundCover}
- background-size:cover;
- background-repeat:no-repeat;
- background-attachment:fixed;
- background-position:center;
- {/block:ifBackgroundCover}
- {block:ifnotBackgroundCover}
- background-repeat:repeat;
- {/block:ifnotBackgroundCover}
- background-color:{color:background};
- font-family: 'Source Code Pro';
- font-size:12px;
- color:{color:text};
- }
- /*---styling of the links---*/
- a {
- color:{color:links};/*---the color of the links---*/
- text-decoration:none;/*---like underline, line-through, etc--*/
- font-weight:normal;/*---bolded, italics, etc---*/
- /*---below is for transitions, see. like, for hovering---*/
- -moz-transition-duration:0.5s;/*---this one is for Mozilla Firefox---*/
- -webkit-transition-duration:0.5s;/*---this one is for Chrome---*/
- -o-transition-duration:0.5s;/*---this one is for Opera---*/
- }
- /*---this determines what happens when you hover over links---*/
- a:hover {
- color:{color:hover};
- text-decoration:none;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- /*---here you can customize the headers, such as post title---*/
- h1 {
- font-size:18px;
- font-family: 'Source Code Pro';
- font-weight:bold, italic;
- letter-spacing:-1px;
- color:{color:bold};
- }
- /*---here is where you edit your sidebar---*/
- #sidebar {
- width:250px;/*---change the width of the sidebar---*/
- height:200px;/*---the height---*/
- margin-left:200px;/*---move the sidebar left or right (raising the number moves it right)---*/
- margin-top:135px;/*---move the sidebar up or down (raising the number moves it down)---*/
- position:fixed;/*---don't touch this---*/
- }
- /*---the sidebar title, you can delete this if you don't want it---*/
- #sidebartitle {
- font-family: 'Source Code Pro';
- margin-bottom:3px;
- font-size:25px;/*---size of font---*/
- color:{color:text};/*---color of font---*/
- letter-spacing:-2px;/*---spacing between letters---*/
- text-transform:none;/*---like if you want it lowercase or uppercase---*/
- -moz-transition-duration:0.7s;
- -webkit-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- /*--this is the same as the links btw--*/
- #sidebartitle a {
- color:{color:text};
- -moz-transition-duration:0.7s;
- -webkit-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- #sidebartitle a:hover {
- color:{color:hover};
- border:1px solid {color:border};
- -moz-transition-duration:0.7s;
- -webkit-transition-duration:0.7s;
- -o-transition-duration:0.7s;
- }
- /*--this is the sidebar image. not much too it, just edit its width and height here--*/
- #sidebarimage {
- position:fixed;
- width:250px;
- height:150px;
- }
- /*--this is the actual styling of the image--*/
- #sidebarimage img {
- width:250px;
- height:150px;
- }
- #links {
- width:240px;
- margin-top:150px;
- padding:5px;/*--padding makes sure that things are smushed together because that just looks bad unless you're going for that look idk--*/
- font-family: 'arial';
- font-size:12.5px;
- text-align:left;
- text-transform:lowercase;
- color:{color:links};
- border-bottom:1px solid #000; /*--this here is the line below the links btw--*/
- }
- #links a {
- color:{color:links};
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- #links a:hover {
- color:{color:hover};
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- /*--edit your description here!!--*/
- #description {
- width:240px;
- font-size:11px;
- font-family: 'Source Code Pro';
- font-weight:italic;
- letter-spacing:1px;
- text-align:left;
- padding:5px;
- }
- /*--this is like your "next page" "back page" thingy here...it's pretty basic so....--*/
- {block:ifnotInfiniteScroll}
- #pagination {
- text-align:center;
- margin-top:5px;/*--how far it is from the description--*/
- letter-spacing:1px;
- }
- {block:ifnotInfiniteScroll}
- /*--this determines where your posts go and shit, same as sidebar--*/
- #entries {
- padding:20px;
- width:430px;
- margin-left:535px;
- margin-top:-570px;
- max-height:510px;
- overflow:auto;
- position:absolute;
- z-index:1;
- }
- /*--this is the customization of each individual post--*/
- #post {
- width:400px;
- padding-bottom:20px;
- z-index:10;
- }
- /*--this is all the info like the source, via who, etc. --*/
- #postinfo {
- text-align:center;
- margin-top:10px;
- border-top:1px; solid {color:border};
- padding-top:5px;
- }
- #notebook {
- content: url(http://i59.tinypic.com/4i9z.png);
- margin-left:450px;
- margin-top:10px;
- height:600px;
- }
- .something {
- width:529px;
- height:589px;
- background:{color:notebookbackground};
- opacity:.7;
- margin-top:-590px;
- margin-left:500px;
- position:absolute;
- z-index:-1;
- }
- .somethingborder {
- margin-top:-590px;
- margin-left:500px;
- width:529px;
- height:589px;
- -webkit-box-shadow: 10px 10px 0px 0px {color:border};
- -moz-box-shadow: 10px 10px 0px 0px {color:border};
- box-shadow: 10px 10px 0px 0px {color:border};
- }
- /*--this is for your asks posts---*/
- #asker {
- float:left;
- padding:2px;
- margin-top:-2px;
- margin-right:5px;
- }
- #credit {
- position:fixed;
- font-size:10px;
- font-weight:bold;
- line-height:150%;
- letter-spacing:2px;
- right:10px;
- bottom:10px;
- text-transform:lowercase;
- padding:3px;
- text-align:center;
- background:white;
- border-bottom:1px solid black;
- border-right:1px solid black;
- border-left:1px solid gray;
- border-top:1px solid gray;
- -moz-transition-duration:0.999999999999999s;
- -webkit-transition-duration:0.999999999999999s;
- -o-transition-duration:0.999999999999999s;
- }
- #credit:hover{
- border:1px solid white;
- -moz-transition-duration:0.999999999999999s;
- -webkit-transition-duration:0.999999999999999s;
- -o-transition-duration:0.999999999999999s;
- }
- </style>
- </head>
- <body>
- <!--this is the actual layout of your theme!!-->
- <div id="sidebar">
- {block:ifSidebarTitle}<div id="sidebartitle"><a href="/">{text:sidebar title}</a></div>{block:ifSidebarTitle}
- <div id="sidebarimage"><img src="{image:sidebar}"></div>
- <div id="links">
- <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>
- <a href="{text:link 4 url}">{text:link 4}</a>
- </div>
- <div id="description">{Description}</div><!---if you want to put your description above your links, cut and past this above the <div id="links">--->
- {block:ifnotInfiniteScroll}
- <div id="pagination">
- {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">back</a>{/block:PreviousPage}
- {block:NextPage}– <a href="{NextPage}">next</a>{/block:NextPage}
- {/block:Pagination}
- </div>
- {/block:ifnotInfiniteScroll}
- </div>
- <div id="notebook"></div><div class="something"></div><div class="somethingborder"></div>
- <div id="entries">{block:ifInfiniteScroll}<div class = "autopagerize_page_element" >{/block:ifInfiniteScroll}{block:Posts}<div id="post">
- <!--text posts-->
- {block:Text}<h1>{block:Title}<big><big>{Title}</big></big>{/block:Title}</h1>{Body}{/block:Text}
- <!--photo and photoset posts-->
- {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:ifCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifCaptions}{/block:Photo}
- {block:Photoset}{Photoset-400}{block:ifCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifCaptions}{/block:Photoset}
- <!--quote posts-->
- {block:Quote}<big><b><i>"{Quote}"</i></b></big>{block:Source}<p></p>— {Source}{/block:Source}{/block:Quote}
- <!--link posts-->
- {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
- <!--chat posts-->
- {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
- <!--video posts-->
- {block:Video}{Video-400}{block:ifCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifCaptions}{/block:Video}
- <!--audio posts-->
- {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="60px" height="60px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerBlack}</left></span>
- {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
- {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
- {/block:ExternalAudio}<b>Played:</b> {PlayCount} times <br>
- {/block:Audio}<br>
- <!--asks posts-->
- {block:Answer}<div id="question"><img src="{AskerPortraitURL-24}"></div><big><i>{Asker} asked:</big></i><br>{Question}<p>{Answer}{/block:Answer}
- <!--post info such as tags and notes-->
- <div id="postinfo">on <a href="{Permalink}">{DayOfMonthWithZero}.{MonthNumberWithZero}</a>{/block:Date} <a href="{Permalink}">{NoteCount}%</a> {block:RebloggedFrom}<a href="{ReblogParentURL}"> via</a> {/block:RebloggedFrom} {block:ContentSource} / <a href="{SourceURL}"> <a href="{SourceURL}"> src</a>{/block:ContentSource}{/block:RebloggedFrom}
- {block:ifTags}
- {block:HasTags}<div id="tags">{block:Tags} #<a href="{TagURL}">{tag}</a> {/block:Tags}</div>{/block:HasTags} {/block:ifTags}</div></div>
- {/block:Posts}{block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes} {/block:Posts}
- {block:ifInfiniteScroll}</div>{/block:ifInfiniteScroll}</div></div></div></div>
- </div>
- </div>
- </div>
- <!--put your url in here if you made significant changes! if not, LEAVE IT BE-->
- <div id="credit"><a href="http://bsethemes.tumblr.com/">bsethemes</a></div>
- <!--you done bruh-->
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment