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>
- <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}
- <!---- theme {suomi} © imjaebumx
- yes this is a theme made by me (ノ◕ヮ◕)ノ*:・゚✧
- feel free to edit away, but please don't remove the credits!
- it's very tiny, see? :) it won't hurt to leave it there
- thanks for using this code! ilu (◕‿◕✿)
- (no srsly i really do ♡) --->
- <meta name="if:Hover tags" content="1"/>
- <meta name="color:Background" content="#ffffff"/>
- <meta name="color:Text" content="#818181"/>
- <meta name="color:Link" content="#474747"/>
- <meta name="color:Linkhover" content="#bdbcbc"/>
- <meta name="color:bold" content="#252525"/>
- <meta name="color:italic" content="#c5c4c4"/>
- <meta name="color:ask" content="#f7f7f7"/>
- <meta name="color:description" content="#2b2b2b"/>
- <meta name="color:description text" content="#ffffff"/>
- <meta name="color:navlinks" content="#d4d4d4"/>
- <meta name="color:selection bg" content="#2b2b2b"/>
- <meta name="image:sidebar" content=""/>
- <meta name="text:ask title" content="ask title here :)"/>
- <meta name="text:your url" content="your url here"/>
- <meta name="text:Link1" content="/" />
- <meta name="text:Link1 Title" content="link1 title" />
- <meta name="text:Link2" content="/" />
- <meta name="text:Link2 Title" content="link2 title" />
- <meta name="text:Link3" content="/" />
- <meta name="text:Link3 Title" content="link3 title" />
- <meta name="text:Link4" content="/" />
- <meta name="text:Link4 Title" content="link4 title" />
- <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(){
- $("[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:200,
- tip_fade_speed:300
- }
- );
- });
- })(jQuery);
- </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
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
- //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)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- 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">
- body {
- background:{color:background};
- margin:0px;
- color:{color:text};
- font-family:cambria;
- font-size:11px;
- line-height:100%;
- }
- b, bold, strong {
- font-style:bold;
- color:{color:bold};
- }
- i, em {
- font-style:italic;
- font-color:italic;
- }
- #fade {
- display: none;
- background: #000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- .popup_block{
- display: none;
- background: #FFFFFF;
- padding: 50px;
- float: left;
- position: fixed;
- top: 50%;
- left: 50%;
- -webkit-box-shadow: 0px 0px 20px #000;
- -moz-box-shadow: 0px 0px 20px #000;
- box-shadow: 0px 0px 20px #000;
- z-index: 99999;
- }
- img.btn_close {
- float: right;
- margin: -55px -55px 0 0;
- }
- *html #fade {
- position: absolute;
- }
- *html .popup_block {
- position: absolute;
- }
- #linkage a {
- margin-right:6px;
- display:inline-block;
- margin-bottom:7px;
- width:170px;
- font:7px 'Times New Roman';
- color:{color:background};
- padding:10px;
- text-transform:uppercase;
- font-weight:bold;
- letter-spacing:1px;
- text-align:center;
- letter-spacing:1px;
- font-weight:none;
- background-color:{color:description};
- -moz-transition-duration:0.6s;
- -webkit-transition-duration:0.6s;
- -o-transition-duration:0.6s;
- }
- #linkage a:hover {
- text-decoration:none;
- color:{color:description};
- background-color:{color:background};
- -moz-transition-duration:0.6s;
- -webkit-transition-duration:0.6s;
- -o-transition-duration:0.6s;
- }
- ::-webkit-scrollbar {height: auto;width: 3px;}
- ::-webkit-scrollbar-thumb {background-color:{color:bold};}
- ::-webkit-scrollbar-track{background-color:{color:background};}
- ::-moz-selection {color:{color:background};cursor: crosshair;background-color:{color:selectiong bg};}
- ::selection{color:{color:background};cursor: crosshair;background-color:{color:selection bg};}
- #tumblr_controls{position: fixed!important;z-index:15;}
- iframe#tumblr_controls { right:3px !important; position: fixed !important; -webkit-transition: opacity 0.5s linear; opacity: 0.6; -webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; transition: all 0.8s ease-out;}
- iframe#tumblr_controls:hover{ -webkit-transition: opacity 0.7s linear; opacity: 1; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out;}
- #s-m-t-tooltip{
- max-width:300px;
- margin:15px;
- padding:2px 8px;
- background:{color:background};
- color:{color:text};
- text-align:justify;
- z-index:999999;
- font-size:10px;
- font-weight:lighter;
- text-transform:uppercase;
- box-shadow:3px 3px 5px rgba(3,3,3,.4);}
- .navhover a::before,
- .navhover a::after {
- display: inline-block;
- opacity: 0;
- -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
- -moz-transition: -moz-transform 0.3s, opacity 0.2s;
- transition: transform 0.3s, opacity 0.2s;
- }
- .navhover a::before {
- padding-right:2px;
- content: '{';
- -webkit-transform: translateX(20px);
- -moz-transform: translateX(20px);
- transform: translateX(20px);
- }
- .navhover a::after {
- padding-left:2px;
- content: '}';
- -webkit-transform: translateX(-20px);
- -moz-transform: translateX(-20px);
- transform: translateX(-20px);
- }
- .navhover a:hover::before,
- .navhover a:hover::after,
- .navhover a:focus::before,
- .navhover a:focus::after {
- opacity: 1;
- -webkit-transform: translateX(0px);
- -moz-transform: translateX(0px);
- transform: translateX(0px);
- }
- #nav {
- font-size:7px;
- color:white;
- text-align:center;
- text-transform:uppercase;
- font-family:times new roman;
- font-weight:bold;
- width:250px;
- padding:10px 10px 5px 10px;
- letter-spacing:2px;
- }
- #nav a {
- color:{color:navlinks};
- padding:4px;
- -webkit-transition:all 0.6s ease-out;
- -moz-transition:all 0.6s ease-out;
- transition:all 0.6s ease-out;
- }
- #nav a:hover {
- color:{color:description text};
- -webkit-transition:all 0.6s ease-out;
- -moz-transition:all 0.6s ease-out;
- transition:all 0.6s ease-out;
- }
- a {
- text-decoration:none;
- outline:none;
- -moz-outline-style:none;
- color:{color:link};
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- a:hover {
- text-decoration:none;
- outline:none;
- -moz-outline-style:none;
- color:{color:linkhover};
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- blockquote {
- padding-left:5px;
- border-left:1px dotted {color:bold};
- }
- blockquote blockquote {
- padding-left:5px;
- border-left:1px dotted {color:navlinks};
- }
- h1 {
- font-family:times new roman;
- font-weight:bold;
- text-transform:uppercase;
- font-size:10px;
- }
- #entries {
- padding:10px;
- padding-top:60px;
- width:500px;
- margin:auto;
- }
- #entries:hover #tags {
- opacity:1;
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- #post {
- width:500px;
- padding-bottom:40px;
- }
- #pagination {
- bottom:0px;
- width:500px;
- padding:11px;
- margin:auto;
- margin-bottom:20px;
- word-spacing:15px;
- text-align:center;
- background:{color:background};
- opacity:1;
- }
- #pagination a {
- color:{color:italic};
- font-family:times new roman;
- font-size:7px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:1px;
- padding:5px;
- background-color:{color:background};
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- #pagination a:hover {
- color:{color:background};
- font-family:times new roman;
- font-size:7px;
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:1px;
- padding:5px;
- background-color:{color:bold};
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- #title {
- font-size:18px;
- text-align:center;
- text-transform:uppercase;
- font-family:times new roman;
- font-weight:bold;
- margin:auto;
- color:{color:description text};
- margin-bottom:15px;
- margin-top:20px;
- }
- #sidebar {
- height:70%;
- padding-top:10px;
- background-color:{color:description};
- padding:20px 20px 10px 20px;
- }
- #sidebarimage img {
- width:70px;
- height:70px;
- border-radius:100px;
- border-bottom: 4px solid {color:bold};
- border-right: 4px solid {color:bold};
- }
- #description {
- padding-top:15px;
- text-align:justify;
- margin:auto;
- color:{color:description text};
- width:250px;
- margin-bottom:20px;
- }
- #description b, bold, strong {
- font-style:bold;
- color:{color:description text};
- padding-bottom:2px;
- border-bottom:1px solid {color:navlinks};
- }
- #description a {
- font-family:times new roman;
- font-size:7px;
- text-transform:uppercase;
- color:{color:navlinks};
- letter-spacing:1px;
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- #description a:hover {
- font-family:times new roman;
- font-size:7px;
- text-transform:uppercase;
- letter-spacing:1px;
- color:{color:description text};
- -moz-transition-duration: 0.9s;
- -webkit-transition-duration: 0.9s;
- -o-transition-duration: 0.9s;
- }
- #permalink {
- text-align:center;
- font-size:7px;
- margin-top:10px;
- padding-bottom:5px;
- text-transform:uppercase;
- font-family:times new roman;
- font-weight:bold;
- border-bottom:1px solid {color:navlinks};
- letter-spacing:1px;
- opacity:1;
- -moz-transition-duration: 0.6s;
- -webkit-transition-duration: 0.6s;
- -o-transition-duration: 0.6s;
- }
- #tags {
- font:7px 'Times New Roman';
- font-weight:bold;
- text-transform:uppercase;
- letter-spacing:1px;
- {block:IfHovertags}opacity:0;{block:IfHovertags}
- padding-top:10px;
- text-align:center;
- -moz-transition-duration: 0.6s;
- -webkit-transition-duration: 0.6s;
- -o-transition-duration: 0.6s;
- }
- #pagination {
- font-size:20px;
- text-align:center;
- }
- #audio {
- height:auto;
- min-height:100px;
- padding-bottom:13px;
- }
- .cover {
- position:absolute;
- z-index:1;
- width:100px;
- height:100px;
- border-radius:100px;
- padding-right:20px;
- }
- .cover img {
- float:left;
- width:100px;
- height:100px;
- box-shadow: 4px 4px 10px {color:navlinks};
- border-radius:100px;
- }
- .button {
- width:19px;
- height:20px;
- overflow:hidden;
- position:relative;
- z-index:1000;
- margin-top:22px;
- margin-left:21px;
- text-align:center;
- margin-top:6px;
- margin-left:8px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
- }
- .box {
- opacity:0.8;
- width:40px;
- height:40px;
- margin-top:30px;
- margin-left:30px;
- background:#fff;
- position:absolute;
- z-index:1000;
- -webkit-border-radius:100px;
- -moz-border-radius:100px;
- border-radius:100px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
- }
- artist {
- font-family:times new roman;
- font-size:7px;
- font-weight:bold;
- color:{color:bold};
- text-transform:uppercase;
- }
- label {
- font-style:italic;
- }
- .box:hover {
- opacity:1.0;
- width:40px;
- height:40px;
- margin-top:30px;
- margin-left:30px;
- background:{color:background};
- position:absolute;
- z-index:1000;
- -webkit-border-radius:100px;
- -moz-border-radius:100px;
- border-radius:100px;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
- }
- .capbox {
- padding:20px 50px 20px 20px;
- margin-left:82px;
- border-top:10px solid transparent;
- border-left:20px solid transparent;
- height:auto;
- min-height:35px;
- font-family:times new roman;
- font-size:10px;
- background-color: {color:background};
- text-align:left;
- width:320px;
- }
- .notes {
- font-family:times new roman;
- font-size:7px;
- text-transform:uppercase;
- padding:10px 0px 10px 0px;
- }
- .ask {
- padding: 20px;
- background-color: {color:ask};
- font-size: 8px;
- text-align: justify;
- min-height:50px;
- text-transform: uppercase;
- }
- .ask a {
- font-family:times new roman;
- font-size:7px;
- text-transform:uppercase;
- }
- .ask img {float: left;
- padding: 3px;
- margin-right: 10px;
- margin-bottom: 10px;}
- .chat {
- line-height: 12px;
- list-style: none }
- .chat ul {
- line-height: 15px;
- list-style: none;
- padding: 0px;
- line-height:20px;}
- .person1 {
- background-color:{color:ask};
- color: {color:Text};}
- .person1 .label {
- font:7px 'Times New Roman';
- font-weight:bold;
- text-transform:uppercase;
- padding: 0px;
- margin-left: 5px;
- color:{color:bold};}
- .person2 {
- background-color:{color:background};
- color: {color:text}; }
- .person2 .label {
- font:7px 'Times New Roman';
- font-weight:bold;
- text-transform:uppercase;
- padding: 0px;
- margin-left: 5px;
- color:{color:italic};}
- #cred a {
- color:{color:background};
- background-color:{color:bold};
- padding:3px;
- border-radius:100px;
- border:1px solid {color:bold};
- font-family:"calibri";
- }
- #cred a:hover {
- color:{color:bold};
- background-color:{color:ask};
- border:1px solid {color:ask};
- padding:3px;
- border-radius:100px;
- font-family:"calibri";
- text-decoration:none;
- }
- #cred {
- width:auto;
- height:auto;
- bottom:15px;
- right:15px;
- padding:4px;
- z-index:1000000;
- font-size:8px;
- letter-spacing:1px;
- position:fixed;
- text-align:center;
- font-family:"calibri";
- text-transform:uppercase;
- -webkit-transition: all 0.7s ease-out; -moz-transition: all 0.7s ease-out;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <div id="askbox" class="popup_block">
- <h1>{text:ask title}</h1>
- <p><iframe frameborder="0" height="200" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/{text:your url}.tumblr.com" width="100%"></iframe></p>
- </div>
- <div id="linkage" class="popup_block">
- <div id="linkage">
- <h1>navigation</h1><br>
- <a title="{text:Link1 Title}" href="{text:Link1}">{text:Link1 Title}</a>
- <a title="{text:Link2 Title}" href="{text:Link2}">{text:Link2 Title}</a>
- <a title="{text:Link3 Title}" href="{text:Link3}">{text:Link3 Title}</a>
- <a title="{text:Link4 Title}" href="{text:Link4}">{text:Link4 Title}</a>
- <br><br>
- </div>
- </div>
- <center><div id="sidebar">
- <center><div id="sidebarimage" align="center"><a title="{Title}" href="/"><img src="{image:sidebar}"></a></div></center>
- <div id="title">{<font color="{color:description}">------</font>{Title}<font color="{color:description}">------</font>}</div>
- <center><div id="nav" class="navhover" align="center">
- <a href="/">home</a>
- <a href="#?w=300" rel="askbox" class="poplight">ask</a>
- <a href="/archive">memories</a>
- <a href="#?w=400" rel="linkage" class="poplight">links</a>
- </div></center>
- <div id="description">{Description}</div>
- </div>
- </div>
- </center>
- <div id="cred"><a title="©theme by imjaebumx" href="http://imjaebumx.tumblr.com">IJX</a></div>
- <div id="entries">{block:Posts}<div id="post">
- {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
- {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
- <center>{block:Quote}<b><h1><quotation>"</quotation>{Quote}”</h1></b><p align="left">–{Source}</p>{/block:Quote}</center>
- {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
- {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
- {block:Chat}
- {block:Title}
- <h1>{Title}</h1>
- {/block:Title}
- <div class="chat"><ul>{block:Lines}
- <li class="person{UserNumber}">{block:Label}
- <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
- {/block:Chat}
- {block:Audio}
- <div id="audio">
- <div class="cover">
- <img src="http://static.tumblr.com/k9utpfa/tcom8wpif/default_cover_m.jpg">
- </div>
- {block:AlbumArt}
- <div class="cover">
- <img src="{AlbumArtURL}"></div>
- {/block:AlbumArt}
- <div class="box">
- <div class="button">
- {block:AudioPlayer}
- {AudioPlayerWhite}
- {/block:AudioPlayer}
- </div></div>
- <div class="capbox">
- <span class="caption"><artist><span {block:Artist} style="display:none;"{/block:Artist}>Unknown</span> {block:Artist}{Artist}</artist>{/block:Artist}<br>
- <label><span{block:TrackName} style="display:none;"{/block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}
- <br>{block:PlayCount} {PlayCountWithLabel}</label>{/block:PlayCount}
- </span>
- </div></div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Answer}
- <div class="ask"><img src="{AskerPortraitURL-40}"><b>{Asker}</b>:<br>{Question}</div>
- {Answer}
- {/block:Answer}
- <div id="permalink">
- <br> {block:Date}<div id="info"><a href="{Permalink}">{DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix}</a> {block:NoteCount} - { <a href="{Permalink}">{NoteCount}</a> } {/block:NoteCount} {block:RebloggedFrom} — <a title="{ReblogParentTitle}" href="{ReblogParentURL}">VIA</a>{/block:RebloggedFrom}{block:ContentSource}/ <a title="{SourceTitle}" href="{SourceURL}">SOURCE</a>{/block:ContentSource} {/block:Date}</div></div> <div id="tags">{block:HasTags}{block:Tags} <a title="#{Tag}" href="{TagURL}">#{Tag}</a>{/block:Tags}{/block:HasTags}</div>
- </div>
- {block:PostNotes} <div class="notes"> <img scr=" {PostNotes-16}"/> {PostNotes} </div>{/block:PostNotes}
- {/block:Posts}</div>
- <div id="pagination">
- <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}"> next</a><br />{/block:NextPage}{/block:Pagination}</div></center>
- </body></html>
Advertisement
Add Comment
Please, Sign In to add comment