Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!----- endless dream by @aken / thnx please sub ----->
- <link href="https://fonts.googleapis.com/css?family=Short+Stack" rel="stylesheet">
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <title>{Title}</title>
- <meta name="image:favicon" content="">
- <meta name="image:sidebar" content="">
- <meta name="image:bg" content=""/>
- <meta name="image:desc" content="">
- <meta name="color:background" content="#fff">
- <meta name="color:text" content="#000">
- <meta name="color:post" content="#999">
- <meta name="color:desc color" content="#fff">
- <meta name="color:links" content="#fff">
- <meta name="color:blinking insertion" content="">
- <meta name="color:link border" content="#000">
- <meta name="color:links hover" content="#ccc">
- <meta name="color:tooltip text" content="#000">
- <meta name="color:tooltip bg" content="#fff">
- <meta name="color:border" content="">
- <meta name="if:circle sidebar img" content="1">
- <meta name="if:centered desc" content="1">
- <meta name="if:cover bg" content="">
- <meta name="if:show title" content="1">
- <meta name="if:show tags" content="">
- <meta name="if:link outline" content="1">
- <meta name="if:custom title" content="">
- <meta name="if:fancy desc" content="1">
- <meta name="if:show border" content="">
- <meta name="if:redirect" content="" >
- <meta name="if:custom desc" content="">
- <meta name="if:link 3" content="">
- <meta name="select:post size" content="250">
- <meta name="select:post size" content="300">
- <meta name="select:post size" content="400">
- <meta name="select:post size" content="500">
- <meta name="select:border" content="solid">
- <meta name="select:border" content="dotted">
- <meta name="select:border" content="dashed">
- <meta name="select:border" content="outset">
- <meta name="select:border" content="double">
- <meta name="text:font size" content="12">
- <meta name="text:font" content="arial">
- <meta name="text:desc img size" content="20">
- <meta name="text:border size" content="">
- <meta name="text:redirect tag" content="" >
- <meta name="text:title" content="hello">
- <meta name="text:desc" content="hi">
- <meta name="text:desc url" content="/">
- <meta name="text:link divider" content="/">
- <meta name="text:links name 1" content="">
- <meta name="text:links url 1" content="">
- <meta name="text:links name 2" content="">
- <meta name="text:links url 2" content="">
- <meta name="text:links name 3" content="">
- <meta name="text:links url 3" content="">
- <link rel="shortcut icon" href="{image:favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- <link rel="stylesheet" href="http://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
- <script src="http://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
- <style type="text/css">
- .container {
- position: relative;
- text-align: center;
- color: white;
- }
- .centered {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- body {
- margin:0px;
- background:{color:background};
- font-family:{text:font};
- font-size:{text:font size}px;
- line-height:120%;
- color:{color:text};
- background-image: url('{image:bg}');
- {block:ifnotcoverbg}
- background-repeat: repeat;
- background-attachment: fixed;
- {/block:ifnotcoverbg}
- {block:ifcoverbg}
- background-size: cover;
- background-attachment: fixed;
- {/block:ifcoverbg}
- }
- p{
- margin:0 0 10px 0;
- padding:0;
- }
- pre {
- white-space: pre-wrap;
- white-space: -moz-pre-wrap;
- white-space: -pre-wrap;
- white-space: -o-pre-wrap;
- word-wrap: break-word;
- }
- a{
- color:{color:links};
- text-decoration:none;
- {block:iflinkoutline}
- text-shadow: -1px 0 {color:link border}, 0 1px {color:link border}, 1px 0 {color:link border}, 0 -1px {color:link border};
- {/block:iflinkoutline}
- font-weight:bold;
- }
- a:hover{
- color:{color:links hover};
- -webkit-filter: blur(1px);
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- }
- li{
- margin-left:-15px;
- }
- #wrapper{
- width:600px;
- margin:50px 250px;
- }
- #sidebar{
- width:200px;
- position:fixed;
- padding:10px;
- margin-left:-50px;
- margin-top: 110px;
- background:{color:post};
- box-shadow: 0 0 12px 12px {color:post};
- }
- #uhhhh {
- background-color:{color:desc color};
- {block:ifcentereddesc}
- text-align:center;
- {/block:ifcentereddesc}
- {block:iffancydesc}
- max-width: 200px;
- {block:ifshowborder}
- border: 2px {select:border} {color:border};
- {/block:ifshowborder}
- padding: 3px;
- background-image:url('{image:desc}');
- background-repeat: repeat;
- background-size:{text:desc img size}px;
- {/block:iffancydesc}
- }
- .blinking-cursor {
- font-weight: 100;
- font-size: 22px;
- color: #2E3D48;
- -webkit-animation: 1s blink step-end infinite;
- -moz-animation: 1s blink step-end infinite;
- -ms-animation: 1s blink step-end infinite;
- -o-animation: 1s blink step-end infinite;
- animation: 1s blink step-end infinite;
- }
- @keyframes "blink" {
- from, to {
- color: transparent;
- }
- 50% {
- color: {color:blinking insertion};
- }
- }
- @-moz-keyframes blink {
- from, to {
- color: transparent;
- }
- 50% {
- color: {color:blinking insertion};
- }
- }
- @-webkit-keyframes "blink" {
- from, to {
- color: transparent;
- }
- 50% {
- color: {color:blinking insertion};
- }
- }
- @-ms-keyframes "blink" {
- from, to {
- color: transparent;
- }
- 50% {
- color: {color:blinking insertion};
- }
- }
- @-o-keyframes "blink" {
- from, to {
- color: transparent;
- }
- 50% {
- color: {color:blinking insertion};
- }
- }
- #content{
- width:auto;
- margin-left:300px;
- }
- .post{
- width:{select:post size}px;
- margin:0 0 90px 0;
- margin-top: 70px;
- overflow:hidden;
- padding:10px;
- background:{color:post};
- box-shadow: 0 0 12px 12px {color:post};
- }
- .post img{
- max-width:100%;
- }
- #sidebar img{
- {block:ifshowborder}
- border: {text:border size}px {select:border} {color:border};
- {/block:ifshowborder}
- max-height:auto;
- max-width:200px;
- float:center;
- {block:ifcirclesidebarimg}
- border-radius:800px;
- {/block:ifcirclesidebarimg}
- }
- #sidebar .pagination {
- width:100px;
- text-align:center;
- padding: 3px 0;
- }
- #sidebar .pagination a {
- color:{color:links};
- text-decoration: none;
- }
- #sidebar .pagination a:hover {
- color: {color:links hover};
- }
- .media{
- margin:0 0 10px 0;
- }
- .media img{
- width:100%;
- }
- .title{
- font-weight:normal;
- font-size:18px;
- margin:0 0 10px 0;
- }
- .stitle{
- font-weight:bold;
- font-size:18px;
- margin-top:-12px;
- margin-bottom:5px;
- text-align:center;
- }
- .quote{
- font-weight:normal;
- font-size:16px;
- font-style:italic;
- margin:0 0 10px 0;
- }
- .question{
- margin-bottom:10px;
- padding:5px;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px {color:borders};
- }
- .post .footer{
- margin:0;
- text-align:right;
- padding:3px;
- line-height: 15px;
- }
- ol.notes{
- list-style-type:none;
- padding:0;
- margin:0;
- }
- ol.notes li.note img{
- width:16px;
- height:16px;
- }
- ol.notes li.note{
- margin:0px;
- }
- #s-m-t-tooltip {
- z-index: 9999;
- background: {color:tooltip bg};
- font-size: {text:font size}px;
- line-height: 17px;
- text-align:center;
- font-family:{text:font};
- letter-spacing: 1px;
- -o-transition: all 0.3s ease-out;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- text-transform: normal;
- color: {color:tooltip text};
- max-width: 200px;
- word-wrap: break-word;
- padding: 7px;
- display: block;
- margin: 24px 14px 7px 12px;
- box-shadow: 0 0 12px 12px {color:tooltip bg};
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- {block:ifredirect}
- {block:IndexPage}<script type="text/javascript">
- var url = location.href;
- if (url == "{BlogURL}") {
- window.location = "{BlogURL}tagged/{text:redirect tag}";
- }
- </script>{/block:IndexPage}
- {/block:ifredirect}
- <div id="wrapper">
- <div id="sidebar">
- {block:ifshowtitle}
- <div class="stitle">{block:ifcustomtitle}{text:title}{/block:ifcustomtitle}{block:ifnotcustomtitle}{Title}{/block:ifnotcustomtitle} <span class="blinking-cursor">|</span></div>{/block:ifshowtitle}
- <div id="sidebar img">
- <center>
- <a href="/"><img src="{image:sidebar}"></a>
- </div>
- <div id="uhhhh">{block:ifcustomdesc}<a href="{text:desc url}">{text:desc}</a>{/block:ifcustomdesc}{block:ifnotcustomdesc}<a href="{text:links url 1}">{text:links name 1}</a> {text:link divider} <a href="{text:links url 2}">{text:links name 2}</a> {block:iflink3}{text:link divider} <a href="{text:links url 3}">{text:links name 3}</a>{/block:iflink3}{/block:ifnotcustomdesc}</div>
- {block:Pagination}
- <center>
- <div id="pagination">
- {block:PreviousPage}
- <a href="{PreviousPage}">←</a>
- {/block:PreviousPage}
- {block:JumpPagination length="5"}
- {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}"> →</a>
- {/block:NextPage}
- </div>
- </center>
- {/block:Pagination}
- </div>
- <div id="content">
- {block:Posts}
- <div class="post">
- {block:Text}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {Body}
- {/block:Text}
- {block:Photo}
- <div class="media">{LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- <div class="media">{Photoset}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Photoset}
- {block:Quote}
- <div class="quote">"{Quote}"</div>
- {block:Source}
- <div class="quotesource">{Source}</div>
- {/block:Source}
- {/block:Quote}
- {block:Link}
- <div class="title"><a href="{URL}">{Name}</a></div>
- {block:Description}
- <div class="description">{Description}</div>
- {/block:Description}
- {/block:Link}
- {block:Chat}
- {block:Title}
- <div class="title">{Title}</div>
- {/block:Title}
- {block:Lines}
- <div class="{Alt} user_{UserNumber}">
- {block:Label}
- <b>{Label}</b>{/block:Label}
- {Line}
- </div>
- {/block:Lines}
- {/block:Chat}
- {block:Video}
- <div class="media">{Video-400}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Video}
- {block:Audio}
- <div class="media">
- {block:AlbumArt}<img src="{AlbumArtURL}" style="width:100px; height:100px;">{/block:AlbumArt}
- <br>{block:TrackName}<small>{TrackName}{/block:TrackName} by {block:Artist}{Artist}</small>{/block:Artist}{AudioPlayerWhite}
- </div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Answer}
- <div class="question">
- <img class="asker-avatar" src="{AskerPortraitURL-24}" {block:ifborders}style="border:1px solid {color:borders}"{/block:ifborders} alt=""> {Asker}: {Question}
- </div>
- <p><div class="caption">{Answer}</div>
- {/block:Answer}
- {block:Date}
- <div class="footer">
- <a href="{Permalink}" title="{TimeAgo}">{NoteCount}</a>
- {block:ifshowtags}
- {block:HasTags}<small>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</small>{/block:ifshowtags}
- {block:RebloggedFrom}<a href="{ReblogParentURL}"></a>{/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}"></a>{/block:ContentSource}
- </div>
- {block:PermalinkPage}
- {block:NoteCount}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:NoteCount}
- {/block:PermalinkPage}
- {/block:Date}
- </div>
- {/block:Posts}
- </div>
- </div>
- </div>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
- <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
- <script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script><script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
- </div>
- <p style="position: fixed; left: 3px; bottom: -10px; font-size:12px;"><a href="https://tmblr.co/mrRfmbRR8G93obHQkpXeORA" title="theme by aken">💉</a>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment