Advertisement
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">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}{block:PostSummary} - {PostSummary}{/block:PostSummary}</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}
- {block:IfEndlessScrolling}
- <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEndlessScrolling}
- <!--
- The light behind your eyes
- Made by:
- http://work-it-out.tumblr.com/
- -->
- <html lang="en">
- <head>
- <meta name="text:Custom Link 1 Title" content=""/>
- <meta name="text:Custom Link 1" content=""/>
- <meta name="color:Asks" content="#ece9e3"/>
- <meta name="color:Links" content="#d04343"/>
- <meta name="color:Posts bg" content="#faf9f7"/>
- <meta name="color:Scrollbar" content="#bf3535"/>
- <meta name="color:Text" content="#a3a19c"/>
- <meta name="color:Menu" content="#af2a2a"/>
- <meta name="color:Chat" content="#c7c7c7"/>
- <meta name="color:Background color" content="#faf9f7"/>
- <meta name="color:Side borders" content="#d7d7d7"/>
- <meta name="color:Permalink text" content="#969996"/>
- <meta name="color:Permalink text hover" content="#a32c26"/>
- <meta name="color:Links hover" content="#6ea350"/>
- <meta name="color:Description" content="#fcfcfc"/>
- <meta name="text:Custom Link 2 Title" content=""/>
- <meta name="text:Custom Link 2" content=""/>
- <meta name="text:Custom Link 3 Title" content=""/>
- <meta name="text:Custom Link 3" content=""/>
- <meta name="text:Custom Link 4 Title" content=""/>
- <meta name="text:Custom Link 4" content=""/>
- <meta name="if:EndlessScrolling" content="0"/>
- <meta name="if:Description" content="1"/>
- <meta name="if:ShowCaptions" content="1"/>
- <meta name="if:Snow" content="1"/>
- <meta name="image:Sidebar IMG" content="http://static.tumblr.com/6ryspsu/kXlmwirot/g.png"/>
- <!-- start of script tooltip -->
- <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>
- <link href='http://fonts.googleapis.com/css?family=Scada' rel='stylesheet' type='text/css'>
- {block:IfSnow}
- <SCRIPT type="text/javascript">
- /*
- Snow Fall 1 - no images - Java Script
- Visit http://rainbow.arch.scriptmania.com/scripts/
- for this script and many more
- */
- // Set the number of snowflakes (more than 30 - 40 not recommended)
- var snowmax=50
- // Set the colors for the snow. Add as many colors as you like
- var snowcolor=new Array("#aaaacc","#ffffff","#ccccdd","#f3f3f3","#f0ffff")
- // Set the fonts, that create the snowflakes. Add as many fonts as you like
- var snowtype=new Array("Times","Arial","Times","Verdana")
- // Set the letter that creates your snowflake (recommended: * )
- var snowletter="*"
- // Set the speed of sinking (recommended values range from 0.3 to 2)
- var sinkspeed=0.7
- // Set the maximum-size of your snowflakes
- var snowmaxsize=32
- // Set the minimal-size of your snowflakes
- var snowminsize=14
- // Set the snowing-zone
- // Set 1 for all-over-snowing, set 2 for left-side-snowing
- // Set 3 for center-snowing, set 4 for right-side-snowing
- var snowingzone=1
- ///////////////////////////////////////////////////////////////////////////
- // CONFIGURATION ENDS HERE
- ///////////////////////////////////////////////////////////////////////////
- // Do not edit below this line
- var snow=new Array()
- var marginbottom
- var marginright
- var timer
- var i_snow=0
- var x_mv=new Array();
- var crds=new Array();
- var lftrght=new Array();
- var browserinfos=navigator.userAgent
- var ie5=document.all&&document.getElementById&&!browserinfos.match(/Opera/)
- var ns6=document.getElementById&&!document.all
- var opera=browserinfos.match(/Opera/)
- var browserok=ie5||ns6||opera
- function randommaker(range) {
- rand=Math.floor(range*Math.random())
- return rand
- }
- function initsnow() {
- if (ie5 || opera) {
- marginbottom = document.body.scrollHeight
- marginright = document.body.clientWidth-15
- }
- else if (ns6) {
- marginbottom = document.body.scrollHeight
- marginright = window.innerWidth-15
- }
- var snowsizerange=snowmaxsize-snowminsize
- for (i=0;i<=snowmax;i++) {
- crds[i] = 0;
- lftrght[i] = Math.random()*15;
- x_mv[i] = 0.03 + Math.random()/10;
- snow[i]=document.getElementById("s"+i)
- snow[i].style.fontFamily=snowtype[randommaker(snowtype.length)]
- snow[i].size=randommaker(snowsizerange)+snowminsize
- snow[i].style.fontSize=snow[i].size+'px';
- snow[i].style.color=snowcolor[randommaker(snowcolor.length)]
- snow[i].style.zIndex=1000
- snow[i].sink=sinkspeed*snow[i].size/5
- if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
- if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
- if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
- if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
- snow[i].posy=randommaker(2*marginbottom-marginbottom-2*snow[i].size)
- snow[i].style.left=snow[i].posx+'px';
- snow[i].style.top=snow[i].posy+'px';
- }
- movesnow()
- }
- function movesnow() {
- for (i=0;i<=snowmax;i++) {
- crds[i] += x_mv[i];
- snow[i].posy+=snow[i].sink
- snow[i].style.left=snow[i].posx+lftrght[i]*Math.sin(crds[i])+'px';
- snow[i].style.top=snow[i].posy+'px';
- if (snow[i].posy>=marginbottom-2*snow[i].size || parseInt(snow[i].style.left)>(marginright-3*lftrght[i])){
- if (snowingzone==1) {snow[i].posx=randommaker(marginright-snow[i].size)}
- if (snowingzone==2) {snow[i].posx=randommaker(marginright/2-snow[i].size)}
- if (snowingzone==3) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/4}
- if (snowingzone==4) {snow[i].posx=randommaker(marginright/2-snow[i].size)+marginright/2}
- snow[i].posy=0
- }
- }
- var timer=setTimeout("movesnow()",50)
- }
- for (i=0;i<=snowmax;i++) {
- document.write("<span id='s"+i+"' style='position:absolute;top:-"+snowmaxsize+"'>"+snowletter+"</span>")
- }
- if (browserok) {
- window.onload=initsnow
- }
- </SCRIPT>
- {/block:IfSnow}
- <script>
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:90,
- tip_fade_speed:600,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- <title>{title}</title>
- <link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
- <style type="text/css">
- ::-webkit-scrollbar-thumb:vertical {background-color:{color:scrollbar};height:50px;}
- ::-webkit-scrollbar-thumb:horizontal {background-color:{color:scrollbar};height:5px!important;}
- ::-webkit-scrollbar {background-color:white;height:5px;width:6px;}
- scrollbar {
- /* clear useragent default style*/
- -moz-appearance: none !important;
- }
- /* buttons at two ends */
- scrollbarbutton {
- -moz-appearance: none !important;
- }
- /* the sliding part*/
- thumb{
- -moz-appearance: none !important;
- }
- scrollcorner {
- -moz-appearance: none !important;
- resize:both;
- }
- /* vertical or horizontal */
- scrollbar[orient="vertical"] {
- color:silver;
- }
- ol.pnotes {
- float:left;
- margin-left:-25px;
- width:514px;
- text-align:left;
- }
- ol.pnotes li.pnote {
- background-color:pink;
- list-style-type: none;
- margin-bottom:1px;
- padding: 2px;
- text-align:left;
- }
- ol.pnotes li.pnote img.avatar {
- height: 16px;
- vertical-align: -4px;
- margin-right: 10px;
- width: 16px;
- }
- ol.pnotes li.pnote span.action {
- list-style-type: none;
- font-weight: normal;
- }
- ol.pnotes li.pnote .answer_content {
- list-style-type: none;
- font-weight: normal;
- }
- .pagenumbers {
- color:{color:text};
- font-family:'pt sans';
- font-size:9px;
- margin-top:-10px;
- margin-bottom:5px;
- padding-top:5px;
- padding-bottom:2px;
- padding-left:3px;
- padding-right:3px;
- text-align: center;
- }
- .pagenumbers a, .pagenumbers a:link, .pagenumbers a:visited {
- background-color:;
- color:{color:Links};
- cursor:pointer;
- font-family:'pt sans';
- font-size:24pt;
- font-weight: normal;
- letter-spacing: px;
- text-decoration: none;
- }
- .pagenumbers a:hover {
- color:{color:Links};
- }
- .pnotes {
- color:{color:text};
- font-family:'pt sans';
- font-size:8pt;
- margin-left:-5px;
- margin-bottom:2px;
- padding-top:5px;
- padding-bottom:3px;
- padding-left:3px;
- padding-right:3px;
- }
- iframe#tumblr_controls {
- top: 0% !important;
- right:0% !important;
- position: fixed !important;}
- body{
- background:{color:background color};
- font-size:9pt;
- font-family:'pt sans';
- background-attachment: fixed;
- background-repeat: repeat;
- }
- h1{
- font-family:Alwaysforever;
- font-size:22pt;
- text-transform: lowercase;
- text-decoration:none;
- font-weight:100;
- margin-top:20px;
- }
- a:link, a:active, a:visited{
- color: {color:Links};
- text-decoration: none;
- }
- a:hover{
- color: {color:Links hover};
- text-decoration: none;
- -webkit-transition: all 0.3s linear ;
- -moz-transition: all 0.3s linear ;
- transition: all 0.3s linear;
- }
- .inposts {
- padding-left:3px;
- padding-right:3px;
- }
- h2 {
- color: {color:text};
- font-family:'pt sans';
- font-size:10pt;
- font-style: normal;
- font-weight: normal;
- margin:0 0 0;
- }
- #main {
- float:left;
- margin-top:6px;
- width:514px;
- margin-left:370px;
- }
- #posts {
- background-color:{color:posts bg};
- color:{color:text};
- border: 1px solid {color:side borders};
- width:506px;
- font-family:'pt sans';
- font-size:8.5pt;
- padding-top:px;
- margin-bottom:-7px;
- padding-bottom:0px;
- padding-left:2px;
- padding-right:3px;
- position:relative;
- overflow:hidden;
- }
- #sidebar { width:285px;
- margin-left:70px;
- margin-top:-30px;
- padding-top:80px;
- float:left;
- position:fixed;
- }
- blockquote {
- border-left:2px solid {color:side borders};
- padding-left:2px;
- margin-left:5px;
- }
- #sidebar:hover .navig{
- -webkit-transition: all 0.5s linear ;
- -moz-transition: all 0.5s linear ;
- transition: all 0.5s linear;
- filter:alpha(opacity=100);
- opacity:100;}
- .title{
- padding-left:0px;
- margin-bottom:10px;
- color:{color:title};
- font-size:28pt;
- position:relative;
- text-transform:lowercase;
- font-family:santa;
- }
- .desc{
- position:fixed;
- filter:alpha(opacity=0);
- opacity:0;
- z-index:9999;
- -webkit-transition: all 0.5s linear ;
- -moz-transition: all 0.5s linear ;
- transition: all 0.5s linear;
- width:120px;
- height:120px;
- text-align:left;
- padding:3px;
- font-family:'scada';
- font-size:7.5pt;
- overflow-y:auto;
- letter-spacing:0px;
- color:{color:text};
- margin-top:59px;
- margin-left:78px;
- background-color:{color:description};
- }
- #sidebar:hover .desc{
- -webkit-transition: all 0.5s linear ;
- -moz-transition: all 0.5s linear ;
- transition: all 0.5s linear;
- filter:alpha(opacity=100);
- opacity:100;}
- .pagination {
- margin-left:115px;
- text-align:center;
- line-height:0px;
- margin-top:183px;
- font-family:'pt sans';
- font-size:12px;
- color:{color:text};
- position:fixed;
- font-weight:bold;}
- .pagination a {
- padding:4px;
- color:{color:text};
- }
- .menu {
- margin-top:-210px;
- -webkit-transition: all 0.7s linear ;
- -moz-transition: all 0.7s linear ;
- transition: all 0.7s linear;
- font-family:'pt sans';
- text-transform:uppercase;
- margin-left:-35px;
- position:absolute;
- }
- .menu a {
- padding:3px;
- margin-left:1px;
- font-size:6.5pt;
- letter-spacing:1px;
- margin-bottom:26px;
- display:block;
- padding:2px 6px 2px;
- text-align:center;
- }
- .menu a:hover{
- -webkit-transition:0.5s linear ;
- transition: 0.5s;
- -moz-transition: 0.5s;
- -o-transition: 0.5s;
- left:1px;
- }
- .user_1 .label {
- color:{color:Body text};
- font-weight:bold
- }
- .user_2 .label {
- color:{color:Scrollbar and Borders};
- font-weight:bold
- }
- ul.chat, .chat ol, .chat li {
- list-style:none;
- margin:0px;
- border-bottom:1px solid {color:chat};
- padding:0px
- }
- @font-face {
- font-family: "alwaysforever";
- src: url(http://static.tumblr.com/ent6nfp/4fWmhnjc9/kiwischoolhandwritingregular.ttf);
- }
- @font-face {
- font-family: "santa";
- src: url(https://www.dropbox.com/s/y8n8obgftlb9avb/chrioc__.eot);
- src:url(http://static.tumblr.com/ent6nfp/r22mex351/chrioc__.ttf) format('truetype'),
- url(https://www.dropbox.com/s/yc9qhspicpv0mwr/chrioc__.svg) format('svg');
- url(https://www.dropbox.com/s/5v4x28tzs6h1hl5/chrioc__.woff)
- }
- #aske{
- float: center;
- margin: 0px 4px 2px 0
- }
- #questions{
- background:{color:asks};
- padding:10px;
- margin-bottom:0px;
- font-size:10px;
- }
- .tags{
- text-align:center;
- padding:2px;
- margin-top:6px;
- font-size:7.5pt;
- font-family:'pt sans';
- border-top:1px solid {color:side borders};
- }
- .tags a{
- color:{color:permalink text};
- }
- .tags a:hover{
- color:{color:permalink text hover};
- }
- .buttons{
- position:fixed;
- }
- .sock img{
- top:175px;
- z-index:-99;
- position:relative;
- -webkit-transition: all 0.7s;
- -moz-transition: all 0.7s;
- transition: all 0.7s ; }
- .sock:hover img{
- top:190px;
- -webkit-transition: all 0.7s;
- -moz-transition: all 0.7s;
- transition: all 0.7s ;
- }
- #s-m-t-tooltip {
- max-width:150px;
- padding:5px 10px 5px 10px;
- margin:20px 14px 7px 10px;
- background-color:{color:menu};
- font-family:Calibri;
- font-style: normal;
- font-size:10px;
- line-height:11px;
- letter-spacing:1px;
- text-transform:uppercase;
- color:{color:description};
- z-index:999;-webkit-transition:opacity 0.8s linear;
- -webkit-transition:all 0.3s ease-out;
- -moz-transition:all 0.3s ease-out;
- transition:all 0.3s ease-out;
- }
- .pattern{
- height:105%;
- width:70px;
- background:url(http://static.tumblr.com/6ryspsu/AGDmwin8v/bbbb.png);
- position:fixed;
- margin-top:-20px;
- margin-bottom:-20px;
- right:90px;
- background-repeat:repeat-y;
- z-index:-999;
- }
- .pattern2{
- height:105%;
- width:70px;
- background:url(http://static.tumblr.com/6ryspsu/iRvmwinjx/vf_christmas03-.jpg);
- position:fixed;
- margin-top:-20px;
- margin-bottom:-20px;
- right:160px;
- background-repeat:repeat;
- z-index:-999;
- }
- .pattern3{
- height:105%;
- width:70px;
- background:url(http://static.tumblr.com/6ryspsu/mN2mwinvr/untitled-1.png);
- position:fixed;
- margin-top:-20px;
- margin-bottom:-20px;
- right:230px;
- background-repeat:repeat-y;
- z-index:-999;
- }
- {CustomCSS}
- </style>
- </head>
- <body>
- <div class="pattern"></div>
- <div class="pattern2"></div>
- <div class="pattern3"></div>
- <br>
- </div>
- <div id="sidebar">
- <br><br>
- <center>
- <div class="title"><br></div>
- {Block:IfDescription}
- <div class="desc">{description}</div>
- {/Block:IfDescription}
- <img src="{image:sidebar IMG}" onmousedown="return false" style="webkit-border-radius: 50em;
- -moz-border-radius: 50em;
- border-radius: 50em;width:240px;
- height:240px;margin-top:0px;"/>
- <a class="sock" href="/" ><img src="http://static.tumblr.com/6ryspsu/RGTmwfc1t/s1.png" style="position:absolute; margin-left:-240px;margin-top:110px;" /></a>
- <a class="sock" href="/ask" >
- <img src="http://static.tumblr.com/6ryspsu/oDYmwfc2b/s2.png" style="position:fixed; margin-left:-150px;margin-top:130px;" /></a>
- <a class="sock" href="http://work-it-out.tumblr.com" >
- <img src="http://static.tumblr.com/6ryspsu/IZYmwfc2t/s3.png" style="position:fixed; margin-left:-70px;margin-top:100px;" /></a>
- <br>
- <div class="menu">
- {block:IfCustomLink1}
- <a href="{text:Custom Link 1}" title="{text:Custom Link 1 Title}" ><img src="http://static.tumblr.com/6ryspsu/AQOmwh48p/santa.gif" style="margin-left:40px;"></a>
- {/block:IfCustomLink1}
- {block:IfCustomLink2}
- <a href="{text:Custom Link 2}" title="{text:Custom Link 2 Title}" ><img src="http://static.tumblr.com/6ryspsu/12jmwh4ap/so.gif"></a>
- {/block:IfCustomLink2}
- {block:IfCustomLink3}
- <a href="{text:Custom Link 3}" title="{text:Custom Link 3 Title}" ><img src="http://static.tumblr.com/6ryspsu/agJmwh4bt/tumblr_lv6c0n4eso1qcfn0j.gif"></a>
- {/block:IfCustomLink3}
- {block:IfCustomLink4}
- <a href="{text:Custom Link 4}" title="{text:Custom Link 4 Title}" ><img src="http://static.tumblr.com/6ryspsu/0Rbmwh4c7/re.gif" style="margin-left:40px;"></a>
- {/block:IfCustomLink4}
- </div>
- {block:IfNotEndlessScrolling}
- <div class="pagination">
- {block:Pagination}
- {block:PreviousPage}<a href="{PreviousPage}">< </a>{/block:PreviousPage}{CurrentPage}/{TotalPages} {block:NextPage}<a href="{NextPage}">></a>{/block:NextPage}
- {/block:Pagination}
- </div>{/block:IfNotEndlessScrolling}
- </div>
- <div id="main">
- <div class = "autopagerize_page_element" >
- {block:Posts}
- <div id="posts">
- <div class="inposts">
- {block:Title}<div style="padding:2px;margin-bottom:-19px; font-family:alwaysforever; font-size:11pt; margin-top:2px;">{Title} </div>{/block:Title}
- <br>
- {block:Text}{Body}{/block:Text}
- {block:Quote}<h2>"<i>{Quote}</i>"</h2><div style="text-align:right;"> - {Source}<br></div>{/block:Quote}
- {block:Link}<a href="{URL}" class="link" {Target}><div style="padding:2px;margin-bottom:-9px; font-family:alwaysforever; font-size:12pt; margin-top:-2px;">{Name} </div></a>
- {block:Description}<P>{Description}{/block:Description}</p>{/block:Link}
- {block:Photo}<center>{LinkOpenTag}
- <img src="{PhotoURL-500}" alt="{PhotoAlt}"/>
- {LinkCloseTag}</center>{block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
- {block:ContentSource}
- <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
- width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ContentSource}
- {block:ReblogParentURL}
- <!-- {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
- {/block:ReblogParentURL}
- {/block:Photo}
- {block:Photoset}<center>{Photoset-500}</center>{block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{block:IfShowCaptions}{/block:Photoset}
- {block:Chat}<ul class="chat">{block:Lines}<li class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul>{/block:Chat}
- {block:Video}<center>{Video-500}</center>{block:Caption}{Caption}{/block:Caption}{/block:Video}
- {block:Answer}<div id="questions"><div class="aske"><img src="{AskerPortraitURL-16}"> <strong>{Asker}</strong> asked: "{Question}"</div></div>
- {Answer}{/block:answer}
- {block:Audio}
- <div id="audio">
- <left>{block:AlbumArt}
- <img src="{AlbumArtURL}" width="80px" height="80px" align="left" style="margin-right:10px;" />
- {/block:AlbumArt}
- <span class="audio">
- <div style="margin-left:0px;">
- <div style="overflow:hidden;height:27px;">{AudioPlayergrey}</div></left></div></span>
- <br>
- {block:TrackName}<b>Title:</b> {TrackName}<br/>{/block:TrackName}
- {block:Artist}<b>Artist:</b> {Artist}<br/>{/block:Artist}
- {block:Album}<b>Album:</b> {Album}<br/>{/block:Album}
- {block:PlayCount}<b>Played:</b> {PlayCountWithLabel}<br/>{/block:PlayCount}
- {/block:ExternalAudio}</div>
- {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
- {/block:Audio}
- </div>
- <div class="tagswrap"><div class="tags">
- · posted <a href="{Permalink}"> {block:Date} {TimeAgo} ·{/block:Date}</a>
- {block:NoteCount} <a href="{Permalink}">{NoteCountWithLabel}</a> · {/block:NoteCount}
- <a href="{ReblogURL}" target="_blank" >reblog ·</a>
- {block:HasTags}<br> <b> tagged as:</b> {block:Tags}#<a href="/tagged/{Tag}">{Tag}</a> {/block:Tags}{/block:HasTags}
- </div></div>
- </div>
- <br>
- <div style="width:100%;
- background:url(http://static.tumblr.com/ent6nfp/JGmmwcnhp/tumblr.gif);
- height:15px;
- background-repeat:repeat-x;
- z-index:999;"></div>
- {/block:Posts} </div>
- {block:PostNotes}
- <div class="posts">
- <div class="inposts">
- <ol class="pnotes">
- {PostNotes}
- </ol>
- </div>
- {/block:PostNotes}
- <div>
- <br>
- </div>
- <br><br>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement