Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <!-- ------------------------------------------------------------------
- a theme
- by me
- inspired by a certain grid theme i wasn't able to edit
- ------------------------------------------------------------------ -->
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{Title}</title>
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <link rel="shortcut icon" href="{Favicon}" />
- <link rel="apple-touch-icon" href="{PortraitURL-128}"/>
- <link rel="alternate" type="application/rss+xml" href="{RSS}" />
- <meta name="color:Background" content="#fafafa"/>
- <meta name="color:Captions" content="#ffffff"/>
- <meta name="color:Header title" content="#000000"/>
- <meta name="color:Header text" content="#737373"/>
- <meta name="color:Info" content="#555555"/>
- <meta name="color:Link" content="#515151"/>
- <meta name="color:Link hover" content="#000000"/>
- <meta name="color:Pagination" content="#555555"/>
- <meta name="color:Tags" content="#555555"/>
- <meta name="color:Text" content="#555555"/>
- <meta name="text:Header title" content="">
- <meta name="if:Taglist" content="1"/>
- <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="/"/>
- <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
- <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>
- $(document).ready(function() {
- var div = $('#header');
- var start = $(div).offset().top;
- $.event.add(window, "scroll", function() {
- var p = $(window).scrollTop();
- $(div).css('position',((p)>start) ? 'fixed' : 'static');
- $(div).css('top',((p)>start) ? '0px' : '');
- });
- });
- </script>
- <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"></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>
- <style type="text/css">
- ::-webkit-scrollbar {
- width: 8px;
- background-color:{color:background};
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 8px;
- -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
- background-color: #555;
- }
- #s-m-t-tooltip {
- max-width:300px;
- margin:12px 0px 0px 12px;
- padding:1px 3px;
- background:#fff;
- text-transform:lowercase;
- font-style: none;
- font-family: calibri;
- font-size:10px;
- letter-spacing: 1px;
- color:{color:text};
- box-shadow: 1px 1px 2px #a5a5a5;
- z-index:999;
- }
- *, body, a, a:hover {cursor: url(http://www.totallylayouts.com/cursors/random/tiny_cursor.png), auto;}
- body {
- background:{color:background};
- font-family:helvetica;
- font-size:10px;
- line-height:16px;
- text-align:justify;
- color:{color:text};
- }
- img {
- max-width:100%;
- }
- ol, ul {
- list-style-type:square;
- margin-left:12px;
- }
- blockquote {
- border-left:1px solid #f0f0f0;
- padding:1px;
- padding-left:8px;
- background:{color:captions};
- }
- a {
- text-decoration:none;
- color:{color:link};
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- a:hover {
- color:#dbdbdb;
- -moz-transition-duration:0.5s;
- -webkit-transition-duration:0.5s;
- -o-transition-duration:0.5s;
- }
- /* POPUPS */
- .popup_block {
- display:none;
- width:100px;
- background:#FFF;
- padding:40px;
- position:fixed;
- top:50%;
- left:50%;
- text-align:justify;
- z-index: 99999;
- -webkit-box-shadow: 0px 0px 15px #949494;
- -moz-box-shadow: 0px 0px 15px #949494;
- box-shadow: 0px 0px 15px #949494;
- }
- img.btn_close {
- float: right;
- margin: -20 -20px 0 0;
- }
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- #fade {
- display:none;
- background:#fafafa;
- position:fixed;
- left:0;
- top:0;
- width:100%;
- height:100%;
- opacity:0.5;
- z-index:9999;
- }
- /* HEADER */
- #container {
- position:relative;
- width:500px;
- margin-top:-10px;
- margin-left:auto;
- margin-right:auto;
- padding-top:100px;
- background:rgba(248,248,248, .9);
- }
- #header {
- position:fixed;
- width:470px;
- color:{color:header text};
- padding:15px;
- padding-bottom:20px;
- padding-top:20px;
- border-bottom:1px solid #f0f0f0;
- text-align:right;
- z-index:99;
- background:rgba(248,248,248, .9);
- }
- #header a:hover {
- }
- #headertitle {
- font-family:montserrat;
- font-size:20px;
- letter-spacing:1px;
- font-weight:700;
- }
- #headertitle a {
- text-decoration:none;
- float:left;
- color:{color:Header title};
- }
- #links {
- width:500px;
- margin-left:-35px;
- text-align:right;
- word-spacing:2px;
- }
- #onelink {
- width:8px;
- height:8px;
- background:#000;
- border:1px solid #000;
- border-radius:5px;
- display:inline-block;
- -webkit-transition-duration: .0s;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #link1, #link2, #link3, #link4 {
- width:8px;
- height:8px;
- background:#000;
- border:1px solid #000;
- border-radius:5px;
- display:inline-block;
- -webkit-transition-duration: .0s;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #links a:hover #onelink {
- background:#fafafa;
- opacity:.9;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #links a:hover #link1 {
- background:#fafafa;
- opacity:.9;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #links a:hover #link2 {
- background:#fafafa;
- opacity:.9;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #links a:hover #link3 {
- background:#fafafa;
- opacity:.9;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #links a:hover #link4 {
- background:#fafafa;
- opacity:.9;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- /* POSTS */
- #entries {
- position:relative;
- margin-left:auto;
- margin-right:auto;
- width:500px;
- margin-top:20px;
- margin-bottom:200px;
- }
- #posts {
- width:500px;
- padding-top:105px;
- margin-left:auto;
- margin-right:auto;
- margin-top:30px;
- margin-bottom:20px;
- }
- /* INFO */
- #tags {
- font-size:8px;
- letter-spacing:1px;
- }
- #info {
- margin-top:10px;
- width:500px;
- line-height:25%;
- opacity:0;
- text-align:center;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- color:{color:tags};
- }
- #info a {
- text-decoration:none;
- color:{color:info};
- }
- #info a:hover {
- color:{color:text};
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- -ms-transition: all 0.5s ease;
- transition: all 0.5s ease;
- }
- #posts:hover #info {
- opacity:1;
- }
- /* PERMALINK */
- #permalink {
- color:{color:text};
- }
- #permalink a {
- text-decoration:none;
- }
- #note {
- margin-left:-25px;
- margin-top:-8px;
- }
- #note img {
- display:none;
- }
- /* PAGINATION*/
- #pagination {
- position:relative;
- margin-bottom:0px;
- margin-left:auto;
- margin-right:auto;
- font-family:helvetica;
- width:500px;
- font-size:10px;
- padding:11px;
- letter-spacing:1px;
- word-spacing:15px;
- text-align:center;
- text-transform:lowercase;
- }
- #pagination a {
- color:{color:pagination};
- opacity:1;
- text-decoration:none;
- }
- #pagination a:hover{
- color:{color:link hover};
- }
- /* TAGLIST*/
- #infos {
- text-align:center;
- font-size:10px;
- color:#ccc;
- }
- #infos a {
- color:#1e1e1e;
- font-family:montserrat;
- line-height:50px;
- background:#ccc;
- width:120px;
- margin:3px;
- display:inline-block;
- text-align:center;
- -o-transition: all 0.4s ease-out;
- -webkit-transition: all 0.4s ease-out;
- transition: all 0.4s ease-out;
- }
- #infos a:hover {
- color:#fff;
- background:#000;
- border-radius:0px;
- }
- #wrap {
- margin:auto;
- float:center;
- width:440px;
- height:100%;
- position:relative;
- background:#fff;
- opacity:.4;
- }
- /* AUDIO */
- .cover {
- position: relative;
- z-index: 1;
- width: 90px;
- float:left;
- border-radius:45px;
- }
- .button {
- width:20px;
- height:30px;
- overflow: hidden;
- position: relative;
- z-index: 99;
- margin: 15px 24px 13px 16px;
- }
- .player {
- background-color: #fff;
- position: absolute;
- z-index: 99;
- margin-top: 16px;
- margin-left: 15px;
- opacity: 0.3;
- border-radius:30px;
- -webkit-transition: opacity 0.2s linear;
- -webkit-transition: all 0.2s linear;
- -moz-transition: all 0.2s linear;
- -o-transition: all 0.2s linear;
- }
- .player:hover {
- opacity:0.85;
- }
- .musicinfo {
- padding:13px;
- font-size:12px;
- margin-left:100px;
- text-align:right;
- line-height:110%;
- }
- /* ASKS */
- #ask {
- padding:5px;
- padding-bottom:10px;
- padding-left:10px;
- text-align:right;
- color:{color:text};
- line-height:130%;
- border:0px solid #f3f3f3 opacity:0.5;
- }
- #ask img {
- margin-left:-2px;
- margin-bottom:-9px;
- padding:3px;
- }
- #answer {
- text-align:left;
- padding:6px;
- color:{color:text};
- }
- /* QUOTES */
- #quote {
- font-family:lato;
- font-size:17px;
- font-weight:400;
- letter-spacing:1px;
- }
- /* CAPTIONS */
- #caption {
- margin-top:10px;
- background:{color:captions};
- width:480px;
- padding:10px;
- padding-top:1px;
- padding-bottom:1px;
- }
- /* TITLES */
- #titles {
- font-family:montserrat;
- font-weight:400;
- font-size:15px;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <div id="header">
- <div id="headertitle"><a href="/" title="home">{text:header title}</a></div>
- <div id="links">
- <a title="ask" href="#?w=440" rel="box1" class="poplight"><div id="link1"></div></a>
- <a title="about" href="#?w=440" rel="box2" class="poplight"><div id="link1"></div></a>
- {block:IfTaglist}
- <a title="tags" href="#?w=440" rel="box3" class="poplight"><div id="link1"></div></a>
- {/block:IfTaglist}
- <a title="links" href="#?w=440" rel="box4" class="poplight"><div id="link1"></div></a>
- {block:IfLink1}
- <a href="{text:link 1 url}"title="{text:link 1}"><div id="onelink"></div></a>
- {/block:IfLink1}
- {block:IfLink2}
- <a href="{text:link 2 url}"title="{text:link 2}"><div id="onelink"></div></a>
- {/block:IfLink2}
- {block:IfLink3}
- <a href="{text:link 3 url}"title="{text:link 3}"><div id="onelink"></div></a>
- {/block:IfLink3}
- {block:IfLink4}
- <a href="{text:link 4 url}"title="{text:link 4}"><div id="onelink"></div></a>
- {/block:IfLink4}
- </div>
- </div>
- </div>
- <div id="entries">
- {block:Posts}
- <div id="posts">
- {block:Text}
- {block:Title}<div id="titles">{Title}</div>{/block:Title}
- {Body}
- {/block:Text}
- {block:Quote}<div id="quote"><big>“</big>{Quote}<big>”</big></div>{block:Source}<br> <div style="text-align: right;">— {Source}</div><br>{/block:Source}{/block:Quote}
- {block:Link}
- <div id="titles"><a href="{URL}">{Name}</a></div>
- {block:Description}{Description}{/block:Description}
- {/block:Link}
- {block:Photo}
- <center><img src="{PhotoURL-500}"/></center>
- {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- <center>{Photoset-500}</center>
- {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
- {/block:Photoset}
- {block:Chat}
- {block:Title}<div id="titles">{Title}</div>{/block:Title}
- {block:Lines}
- {block:Label}<b>{Label}</b>{/block:Label}
- {Line}<br />
- {/block:Lines}
- {/block:Chat}
- {block:Video}
- {Video-500}
- {block:Caption}{Caption}{/block:Caption}
- {/block:Video}
- {block:Answer}
- <div id="ask"><img src="{AskerPortraitURL-24}" style="border-radius:90px; opacity:.85;margin-left:3px;"></div> <em>{Asker}:<br> <big>{Question}</big></em><br><br>{Answer}
- {/block:Answer}
- {block:Audio}
- <div class="player"><div class="button">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>{block:AlbumArt}<img src="{AlbumArtURL}" class="cover">{/block:AlbumArt}<div class="musicinfo">
- {block:TrackName}<div style="font-size:12px;">{TrackName}</div>{/block:Trackname}<br>{block:Artist}<span style="font-size:10px;">{Artist}{/block:Artist}<br>{block:Album} {Album}{/block:Album}<br>{block:PlayCount}{PlayCount} plays </span>{/block:PlayCount}<br></div><div><style="margin-top:20px;"><br>{block:caption}{Caption}{/block:caption}</div>
- {/block:Audio}
- {block:IndexPage}
- {block:Date}<div id="info">
- <a href="{Permalink}">+{NoteCount}</a>
- {block:HasTags}{block:Tags}
- <p><a href="{TagURL}"><div id="tags">{Tag}</div></a>
- {/block:Tags}{/block:HasTags}{/block:Date}</div></p>
- {/block:IndexPage}
- {block:PermalinkPage}
- <div id="permalink"><center>{12Hour}:{Minutes} {AmPm} on {DayOfWeek}, {Month} {DayOfMonth}, {Year}
- <p>{block:RebloggedFrom}<a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> + <a title="{ReblogRootName}" href="{ReblogRootURL}">source</a>{/block:RebloggedFrom}</p></a></center>
- {block:HasTags}
- <i>tagged as:</i> {block:Tags}<a href="{TagURL}">#{Tag}</a>
- {/block:Tags}
- {/block:HasTags}</div>
- {/block:PermalinkPage}
- <br>
- <div id="note">
- {block:PostNotes}
- {PostNotes}
- {/block:PostNotes}
- </div>
- </div>
- {/block:Posts}
- </div>
- {/block:posts}
- {block:Pagination}
- <div id="pagination">
- {block:PreviousPage}
- <a href="{PreviousPage}">back</a>
- {/block:PreviousPage}
- {block:JumpPagination length="0"}
- {block:CurrentPage}
- <span class="current_page">{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {block:NextPage}
- <a href="{NextPage}">forth</a>
- {/block:NextPage}
- </div>
- {/block:Pagination}
- </div>
- </body>
- <div id="box1" class="popup_block">
- <iframe frameborder="0" border="0" scrolling="yes" width="440" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/taurielic.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
- </div>
- <div id="box2" class="popup_block">
- {Description}
- </div>
- <div id="box3" class="popup_block">
- <div id="wrap">
- <center>
- <div id="infos">
- <!-- here is an example ; put the link where the / is and the title where it says etc. take note if you are going to link something to a url outside your blog, add http:// -->
- <!-- COPY THIS
- <a href="/">link name</a>
- IF YOU WANT TO ADD MORE LINKS -->
- <a href="/tagged/doctor who">DOCTOR WHO</a>
- <a href="/tagged/music">MUSIC</a>
- <a href="/tagged/photography">PHOTOGRAPHY</a>
- <a href="/tagged/game of thrones">GAME OF THRONES</a>
- <a href="/tagged/art">ART</a>
- <a href="/tagged/fashion">FASHION</a>
- <a href="/tagged/sherlock">SHERLOCK</a>
- <a href="/tagged/cats">CATS</a>
- <a href="/tagged/cinematography">CINEMATOGRAPHY</a>
- <a href="/tagged/the fall">THE FALL</a>
- <a href="/tagged/mythology">MYTHOLOGY</a>
- <a href="/tagged/text">TEXT POSTS</a>
- </div>
- </div>
- </div>
- </div>
- <div id="box4" class="popup_block" stlyle="color:{color:text};">
- <center>
- <p><a href="/tagged/theme">my themes</a>
- <p><a href="/tagged/ask">↳ answered questions</a>
- <p><a href="/tagged/fav"> favourtite posts</a>
- <br></br>
- <p><script language="JavaScript">
- var ref = (''+document.referrer+'');
- var w_h = window.screen.width + " x " + window.screen.height;
- document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID4108544&e1=online&e2=online&r=' + ref + '&wh=' + w_h + '"><\/script>');
- </script>
- </div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment