Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!--
- honest songs
- theme by kalopsiathemes
- Please do not
- -remove the credit
- -steal parts of code
- -use as a base
- Feel free to
- -edit parts of the theme
- -ask me any questions
- -->
- <!DOCTYPE html>
- <head>
- <link href='http://fonts.googleapis.com/css?family=Hind:400,700' rel='stylesheet' type='text/css'>
- <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}
- <meta name="color:Background" content="#ffffff"/>
- <meta name="color:link" content="#090909"/>
- <meta name="color:link hover" content="#090909"/>
- <meta name="color:title" content="#090909"/>
- <meta name="color:text" content="#090909"/>
- <meta name="image:Background" content=""/>
- <meta name="image:sidebar" content=""/>
- <meta name="if:InfiniteScroll" content="1"/>
- <meta name="if:500px posts" content="0"/>
- <meta name="if:400px posts" content="1"/>
- <meta name="if:250px posts" content="0"/>
- <meta name="text:link1" content="">
- <meta name="text:link1url" content="" />
- <meta name="text:link2" content="">
- <meta name="text:link2url" content="" />
- <meta name="text:link3" content="">
- <meta name="text:link3url" content="" />
- <meta name="text:link4" content="">
- <meta name="text:link4url" content="" />
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:30,
- tip_fade_speed:300,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- //When you click on a link with class of poplight and the href starts with a #
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- //Pull Query & Variables from href URL
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- //Fade in the Popup and add close button
- //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- //Fade in Background
- $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).delay(300).fadeIn(600); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- $('#' + popID).delay(200).fadeIn(600).css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/wi2dwmg/fJ6nqwau3/tumblr_static_x-mark-512.png" class="btn_close" title="Close Window" alt="Close" />જ </a>');
- return false;
- });
- //Close Popups and Fade Layer
- $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <style type="text/css">
- #s-m-t-tooltip {max-width:400px;
- padding:2px;
- margin:10px 0px 0px 10px;
- padding:2px 4px;
- background-color:{color:text};
- text-transform:uppercase;
- font-size:7px;
- letter-spacing:2px;
- font-weight:700;
- color:{color:background};
- z-index:999999999;
- }
- ::-webkit-scrollbar {height: 0px;
- width: 3px;
- -webkit-border-radius: 0px;
- background-color:{color:background}}
- ::-webkit-scrollbar-thumb{background-color:{color:text};
- }
- html, body {margin:0;padding:0;height:100%;}
- body {
- background-color:{color:background};
- color:{color:text};
- font-size:9px;
- margin:0;
- font-family: 'Hind', sans-serif;
- background-image: url("{image:background}");
- background-repeat:repeat;
- background-position: bottom;
- background-attachment: fixed;
- }
- #fade {
- display: none;
- background-color:{color:text};
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: 1;
- z-index: 9999;
- }
- .popup_block{
- display:none;
- position:fixed;
- width:150px;
- left:48%;
- top:48%;
- padding:10px;
- text-align:left;
- background-color:{color:text};
- z-index: 99999;
- }
- .popup_block a {
- color:{color:background};
- }
- img.btn_close {
- position:fixed;
- top:50px;
- right:50px;
- color:{color:background};
- }
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- #posts {
- {block:If500pxposts}
- width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- width:250px;
- {/block:If250pxposts}
- margin-bottom:100px;
- }
- #posts img {
- {block:If500pxposts}
- max-width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- max-width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- max-width:250px;
- {/block:If250pxposts}
- }
- #posts, #posts img, #posts blockquote {
- font-size:11px;
- color:{color:text};
- }
- .entries {
- {block:If500pxposts}
- width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- width:250px;
- {/block:If250pxposts}
- padding:10px;
- }
- small {
- font-size:10px;
- }
- big {
- font-size:12px;
- }
- h2 {
- font-size:14px;
- color:{color:title};
- font-weight:700;
- text-transform:uppercase;
- }
- h1 {
- font-size:9px;
- Text-align:left;
- letter-spacing:1px;
- color:{color:text};
- }
- h3 {
- font-size:11px;
- color:{color:title};
- letter-spacing:1px;
- }
- #content {
- width:100%;
- margin:auto;
- {block:If500pxposts}
- width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- width:250px;
- {/block:If250pxposts}
- margin-top:100px;
- }
- #sidebar {
- width:80px;
- position:fixed;
- {block:If500pxposts}
- margin-left:150px;
- {/block:If500pxposts}
- {block:If400pxposts}
- margin-left:200px;
- {/block:If400pxposts}
- {block:If250pxposts}
- margin-left:250px;
- {/block:If250pxposts}
- margin-top:0px;
- word-wrap:break-word;
- text-align:center;
- }
- #sidebarimage img {
- width:50px;
- height:50px
- padding:5px;
- margin-bottom:10px;
- border-radius:2px;
- }
- #sidebarimage2 img {
- width:50px;
- height:50px
- padding:5px;
- margin-bottom:5px;
- text-align:left;
- border-radius:2px;
- }
- .top {
- width:200px;
- padding-bottom:5px;
- border-bottom:1px solid {color:background};
- }
- #nav {
- text-transform:uppercase;
- font-size:8px;
- letter-spacing:1px;
- line-height:220%;
- margin-bottom:5px;
- text-align:center;
- }
- #nav a {
- color:{color:text};
- }
- #nav1 {
- color:{color:background};
- display:inline;
- }
- #nav1 a {
- color:{color:background};
- text-transform:uppercase;
- }
- .link {
- width:5px;
- height:5px;
- border:1px solid {color:text};
- }
- .link:hover {
- background-color:{color:text};
- cursor:crosshair;
- }
- .info {
- font-size:8px;
- text-transform:uppercase;
- font-weight:700;
- display:inline-block;
- letter-spacing:1px;
- background-color:{color:text};
- color:{color:link};
- float:left;
- padding:2px;
- border-radius:2px;
- }
- #title {
- word-wrap:break-word;
- font-size:13px;
- color:{color:background};
- margin-top:10px;
- margin-bottom:10px;
- text-transform:lowercase;
- font-weight:700;
- text-align:left;
- }
- #description {
- font-size:12px;
- line-height:140%;
- text-align:left;
- color:{color:background};
- }
- #container {
- {block:If500pxposts}
- width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- width:250px;
- {/block:If250pxposts}
- margin-bottom:10px;
- }
- #postinfo {
- letter-spacing:1px;
- font-size:8px;
- text-transform:uppercase;
- font-weight:700;
- {block:IndexPage}
- margin-left:10px;
- text-align:left;
- {/block:IndexPage}
- {block:PermalinkPage}
- margin-top:10px;
- {/block:PermalinkPage}
- display:inline-block;
- word-wrap:break-word;
- }
- #postinfo a {
- background-color:none;
- color:{color:text};
- }
- a:link, a:visited {
- text-decoration:none;
- font-weight:700;
- color:{color:text};
- padding:2px;
- border-radius:2px;
- }
- a:hover {
- font-weight:700;
- text-decoration:none;
- cursor: crosshair;
- }
- .pagenotes {
- {block:IndexPage}
- display: none;
- {/block:IndexPage}
- {block:If500pxposts}
- width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- width:250px;
- {/block:If250pxposts}
- margin-top:20px;
- margin-left:-30px;
- text-transform:uppercase;
- font-size:9px;
- letter-spacing:1px;
- color:{color:background};
- }
- .pagenotes img {
- display:none;
- }
- .pagenotes li {
- {block:If500pxposts}
- width:500px;
- {/block:If500pxposts}
- {block:If400pxposts}
- width:400px;
- {/block:If400pxposts}
- {block:If250pxposts}
- width:250px;
- {/block:If250pxposts}
- margin-top:10px;
- padding:5px 0px;
- border-radius:2px;
- list-style-type:none;
- text-align:center;
- color:{color:background};
- background-color:{color:text};
- }
- .pagenotes a {
- color:{color:background};
- }
- .tags {
- font-size:8px;
- word-wrap:break-word;
- text-align:left;
- }
- #pagi {
- {block:IfInfiniteScroll}
- display:none;
- {/block:IfInfiniteScroll}
- margin:auto;
- text-transform:uppercase;
- text-align:center;
- position:fixed;
- letter-spacing:.5px;
- margin-top:35px;
- {block:If500pxposts}
- margin-left:77%;
- {/block:If500pxposts}
- {block:If400pxposts}
- margin-left:73%;
- {/block:If400pxposts}
- {block:If250pxposts}
- margin-left:69%;
- {/block:If250pxposts}
- }
- .source {
- font-size:8px;
- }
- .player {
- width:50px;
- height:25px;
- overflow:hidden;
- position:absolute;
- background:white;}
- .audioinfo {
- margin-left:50px;
- font-size:12px;
- }
- .q {
- text-align:center;
- font-weight:bold;
- }
- .as {
- font-weight:bold;
- text-transform:uppercase;
- margin-bottom:10px;
- }
- .a {
- margin-top:10px;
- }
- .chat ol {
- padding:0;
- list-style:none;
- }
- .label {font-weight:bold;
- }
- .newplayerbutton {
- position: relative;
- width: 28px;
- height: 27px;
- overflow: hidden;
- }
- .playerbuttonhug {
- position: absolute;
- top: -11px;
- left: -12px;
- }
- .tumblr_audio_player {
- border: none;
- padding: 0px;
- margin: 0px;
- height: 50px;
- width: 500px;
- }
- .playerbuttonbg {
- position: absolute;
- z-index:999;
- left: 30px;
- top: 30px;
- width: 28px;
- height: 28px;
- background-color: #ffffff;
- padding: 10px;
- -webkit-border-radius: 40px;
- -moz-border-radius: 40px;
- border-radius: 0px;
- opacity: .4;
- filter: alpha(opacity=40);
- -moz-opacity: 0.4;
- -khtml-opacity: 0.4;
- transition: opacity .7s ease-in-out;
- -moz-transition: opacity .7s ease-in-out;
- -webkit-transition: opacity .7s ease-in-out;
- }
- .playerbuttonbg:hover {
- opacity: 1;
- filter: alpha(opacity=100);
- -moz-opacity: 1;
- -khtml-opacity: 1;
- }
- .audioimgwrapper {
- position: absolute;
- padding:10px;
- background-color:{color:sidebar background};
- left: 0px;
- top: 0px;
- -webkit-border-radius: 50px;
- -moz-border-radius: 50px;
- border-radius: 0px;
- overflow: hidden;
- width: 90px;
- height: 88px;
- }
- .audioimgwrapper img {
- width: 100%;
- height: auto;
- -webkit-border-radius: 50px;
- -moz-border-radius: 50px;
- border-radius: 0px;
- }
- .trackdetails {
- width: auto;
- display:inline-block;
- margin-left: 120px;
- line-height:200%;
- min-height: 85px;
- margin-top:0px;
- }
- .audiowrapper {
- position: relative;
- display:inline-block;
- margin-bottom:20px;
- }
- #credit {
- position:fixed;
- color:{color:text};
- bottom:2px;
- right:1px;
- padding:4px;
- font-size:12px;
- }
- #credit a {
- text-decoration:none;
- }
- </style>
- </head>
- <body>
- <div id="sidebar">
- <a href="/">
- <div id="sidebarimage"><img src="{image:sidebar}"></a></div>
- <div id="nav">
- <a href="/">home</a>
- <a href="/ask">ask</a>
- <a href="#?w=300" rel="popup_name" class="poplight">more</a>
- </div></div>
- <div id="popup_name" class="popup_block">
- <div class="top">
- <a href="/">
- <div id="sidebarimage2"><img src="{image:sidebar}"></a></div>
- <div id="nav1">
- <a href="{text:Link1url}">{text:link1}</a>
- <a href="{text:Link2url}">{text:link2}</a>
- <a href="{text:Link3url}">{text:link3}</a>
- <a href="{text:Link4url}">{text:link4}</a>
- </div></div>
- <div id="title">{title}</div>
- <div id="description">{Description}</div>
- </div>
- </div>
- {block:Pagination}
- <div id="pagi">
- {block:PreviousPage}
- <a href="{PreviousPage}">back</a><br>
- {/block:PreviousPage}
- {block:NextPage}
- <a href="{NextPage}"> next</a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- {block:IfInfiniteScroll}
- <script type="text/javascript" src="http://static.tumblr.com/q0etgkr/ytzm5f1ke/infinitescrolling.js"></script>
- {/block:IfInfiniteScroll}
- <div id="content">
- {block:IfInfiniteScroll}
- <div class="autopagerize_page_element">
- {/block:IfInfiniteScroll}
- {block:Posts}<div id="posts">
- <div class="entries">
- {block:Date}{block:IndexPage}<div id="container"><div class="info">info</div><div id="postinfo">{ShortMonth} {DayofMonth}{DayofMonthSuffix}<a href="{permalink}"> {NoteCount} notes</a> <a href="{ReblogURL}">reblog</a></div></div>{/block:IndexPage}{/block:Date}
- {block:Text}{block:Title}<h3>{Title}</h3>{/block:Title}{Body}{/block:Text}
- {block:Quote}<h2>“{Quote}”</h2><h1>-{Source}</h1>{/block:Quote}
- {block:Link}<a href="{URL}"><h3>{Name}</h3></a>
- {block:Description}<p>{Description}</p>{/block:Description}{/block:Link}
- {block:Photo} {block:If500pxposts}<img src="{PhotoURL-500}" />{block:Caption}{Caption}{/block:Caption} {/block:If500pxposts}{block:If400pxposts}<img src="{PhotoURL-400}" />{block:Caption}{Caption}{/block:Caption} {/block:If400pxposts}{block:If250pxposts}<img src="{PhotoURL-250}" />{block:Caption}{Caption}{/block:Caption} {/block:If250pxposts}{/block:Photo}
- {block:Photoset}
- {block:If500pxposts}
- <center>{Photoset-500}</center>{block:Caption}{Caption}{/block:Caption}
- {/block:If500pxposts}
- {block:If400pxposts}
- <center>{Photoset-400}</center>{block:Caption}{Caption} {/block:If400pxposts}{/block:Caption}
- {/block:If400pxposts}
- {block:If250pxposts}
- <center>{Photoset-250}</center>{block:Caption}{Caption} {/block:If400pxposts}{/block:Caption}
- {/block:If250pxposts}
- {/block:Photoset}
- {block:Chat}<ul class="chat">{block:Title}<h3>{Title}</h3>{/block:Title}{block:Lines}<li>{block:Label}<span class="label">{Label}</span>{/block:Label}{Line}</li>{/block:Lines}</ul>{/block:Chat}
- {block:Video} {block:If500pxposts} {Video-500}{block:Caption}{Caption}{/block:Caption}
- {/block:If500pxposts}
- {block:If400pxposts}
- {Video-400}{block:Caption}{Caption}{/block:Caption}
- {/block:If400pxposts}
- {block:If250pxposts}
- {Video-250}{block:Caption}{Caption}{/block:Caption}
- {/block:If250pxposts}{/block:Video}
- {block:Audio}{block:AudioPlayer}
- <div class="audiowrapper">
- {block:AlbumArt}
- <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
- {/block:AlbumArt}
- <div class="playerbuttonbg">
- <div class="newplayerbutton">
- <div class="playerbuttonhug">
- {AudioPlayerWhite}
- </div>
- </div>
- </div>
- <div class="trackdetails">
- {block:TrackName}<strong>{TrackName}</strong>{/block:TrackName}<br/>
- {block:Artist}<em>{Artist}</em> {/block:Artist}<br/>
- {block:Album}{Album}{/block:Album}<br/>
- {PlayCountWithLabel}
- </div>
- </div>
- {/block:AudioPlayer}{/block:Audio}
- {block:Answer}
- <div class="q">
- <div class="as">{Asker} inquired: </div>
- {Question}</div>
- <div class="a">{Answer}</div>
- {/block:Answer}
- {block:Date}{block:PermalinkPage}<div id="container"><div id="postinfo">{ShortMonth} {DayofMonth}{DayofMonthSuffix}<a href="{permalink}"> {NoteCount} notes</a> <a href="{ReblogURL}">reblog</a>{block:RebloggedFrom}<br><div class="source"><a href="{ReblogParentURL}">via: {ReblogParentName} </a>{block:ContentSource}<a href="{ReblogRootURL}">/ src: {ReblogRootName} </a>{/block:ContentSource}</div>{/block:RebloggedFrom}{block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}, </a>{/block:Tags}</div>{/block:HasTags}</div></div>{/block:PermalinkPage}{/block:Date}
- </div>
- {block:PostNotes}
- <div class="pagenotes">
- {PostNotes}
- </div>
- {/block:PostNotes}
- </div>
- {/block:Posts}
- </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}
- <div id="credit">
- <a href="http://kalopsiathemes.tumblr.com" title="kalopsiathemes"</div>Δ</a></div></div>
- </body></html>
Advertisement
Add Comment
Please, Sign In to add comment