Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <head>
- <!-----
- ❤❤ WITHOUT YOU ❤❤
- theme by lps666.tumblr.com
- base code by animecharacter.tumblr.com
- ----->
- <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>
- <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">
- <meta name="image:Favicon" content="/"/>
- <meta name="color:Background" content="#fee">
- <meta name="color:PostBackground" content="#fff"/>
- <meta name="color:SidebarBackground" content="#fff"/>
- <meta name="color:FooterBackground" content="#fff"/>
- <meta name="color:Text" content="#aaa">
- <meta name="color:Borders" content="#ddd">
- <meta name="color:Shadows" content="#ddd">
- <meta name="color:Link" content="#999"/>
- <meta name="color:Link Hover" content="#ccc"/>
- <meta name="color:LinkBorder" content="#fcf">
- <meta name="color:LinkBackground" content="#fee">
- <meta name="color:Selection" content="#fcc">
- <meta name="color:Cursor" content="#fcc">
- <meta name="if:Circle" content="">
- <meta name="text:Links" content="CLICK"/>
- <meta name="text:Font" content="arial"/>
- <meta name="if:300px" content="0"/>
- <meta name="if:400px" content="0"/>
- <meta name="if:500px" content="1"/>
- <meta name="if:SidebarRight" content="1"/>
- <script src="http://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
- <script type="text/javascript">
- // <![CDATA[
- var colour="{color:Cursor}";
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- * (c) 2005 mf2fm web-design *
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var tiny=new Array();
- var star=new Array();
- var starv=new Array();
- var starx=new Array();
- var stary=new Array();
- var tinyx=new Array();
- var tinyy=new Array();
- var tinyv=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, rats, rlef, rdow;
- for (var i=0; i<sparkles; i++) {
- var rats=createDiv(3, 3);
- rats.style.visibility="hidden";
- document.body.appendChild(tiny[i]=rats);
- starv[i]=0;
- tinyv[i]=0;
- var rats=createDiv(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- var rlef=createDiv(1, 5);
- var rdow=createDiv(5, 1);
- rats.appendChild(rlef);
- rats.appendChild(rdow);
- rlef.style.top="2px";
- rlef.style.left="0px";
- rdow.style.top="0px";
- rdow.style.left="2px";
- document.body.appendChild(star[i]=rats);
- }
- set_width();
- sparkle();
- }}
- function sparkle() {
- var c;
- if (x!=ox || y!=oy) {
- ox=x;
- oy=y;
- for (c=0; c<sparkles; c++) if (!starv[c]) {
- star[c].style.left=(starx[c]=x)+"px";
- star[c].style.top=(stary[c]=y)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].style.visibility="visible";
- starv[c]=50;
- break;
- }
- }
- for (c=0; c<sparkles; c++) {
- if (starv[c]) update_star(c);
- if (tinyv[c]) update_tiny(c);
- }
- setTimeout("sparkle()", 40);
- }
- function update_star(i) {
- if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
- if (starv[i]) {
- stary[i]+=1+Math.random()*3;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- starx[i]+=(i%5-2)/5;
- star[i].style.left=starx[i]+"px";
- }
- else {
- star[i].style.visibility="hidden";
- starv[i]=0;
- return;
- }
- }
- else {
- tinyv[i]=50;
- tiny[i].style.top=(tinyy[i]=stary[i])+"px";
- tiny[i].style.left=(tinyx[i]=starx[i])+"px";
- tiny[i].style.width="2px";
- tiny[i].style.height="2px";
- star[i].style.visibility="hidden";
- tiny[i].style.visibility="visible"
- }
- }
- function update_tiny(i) {
- if (--tinyv[i]==25) {
- tiny[i].style.width="1px";
- tiny[i].style.height="1px";
- }
- if (tinyv[i]) {
- tinyy[i]+=1+Math.random()*3;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- tinyx[i]+=(i%5-2)/5;
- tiny[i].style.left=tinyx[i]+"px";
- }
- else {
- tiny[i].style.visibility="hidden";
- tinyv[i]=0;
- return;
- }
- }
- else tiny[i].style.visibility="hidden";
- }
- document.onmousemove=mouse;
- function mouse(e) {
- set_scroll();
- y=(e)?e.pageY:event.y+sdown;
- x=(e)?e.pageX:event.x+sleft;
- }
- function set_scroll() {
- if (typeof(self.pageYOffset)=="number") {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body.scrollTop || document.body.scrollLeft) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- window.onresize=set_width;
- function set_width() {
- if (typeof(self.innerWidth)=="number") {
- swide=self.innerWidth;
- shigh=self.innerHeight;
- }
- else if (document.documentElement && document.documentElement.clientWidth) {
- swide=document.documentElement.clientWidth;
- shigh=document.documentElement.clientHeight;
- }
- else if (document.body.clientWidth) {
- swide=document.body.clientWidth;
- shigh=document.body.clientHeight;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height+"px";
- div.style.width=width+"px";
- div.style.overflow="hidden";
- div.style.backgroundColor=colour;
- return (div);
- }
- // ]]>
- </script>
- <meta http-equiv="Content-Language" content="en-us" />
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <style type="text/css">
- #popitmenu{
- position: absolute;
- color:#ac8d8d;
- background-color: #fdeaf1;
- border:1px solid #ac8d8d;
- font-family:"Century Gothic";
- font-size:10px;
- line-height: 14x;
- z-index: 100;
- visibility: hidden;
- letter-spacing:2px;
- }
- #popitmenu a{
- color:#ac8d8d;
- text-decoration: none;
- padding-left: 6px;
- color: black;
- display: block;
- }
- #popitmenu a:hover{ /*hover background color*/
- background-color: #ffccff;
- }
- </style>
- <style type="text/css">
- .post img{
- border-radius:10px;
- }
- ::-moz-selection { background: {color:Selection}; }
- ::selection { background: {color:Selection}; }
- body {
- margin:0px;
- background:{color:Background};
- font-family: {text:Font};
- font-size:12px;
- line-height:140%;
- color: {color:Text};
- }
- 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:Link};
- text-decoration:none;
- transition: all .5s ease;
- }
- a:hover{
- color:{color:Link Hover};
- }
- li{
- margin-left:-15px;
- }
- h1{
- font-size:15pt;
- font-weight:normal;
- margin-top:-5px;
- line-height:105%;
- }
- /*
- containers etc
- */
- #wrapper{
- width:600px;
- margin:50px auto;
- }
- #sidebar{
- margin-top:10px;
- {block:IfNotSidebarRight}
- left:100px;{/block:IfNotSidebarRight}
- {block:IfSidebarRight}left:1000px;{/block:IfSidebarRight}
- width:115px;
- position:fixed;
- background:{color:SidebarBackground};
- border: 1px {color:Borders} solid;
- padding:30px;
- box-shadow:0px 0px 10px {color:Shadows};
- border-radius:10px;
- text-align:center;
- }
- #sidebar p{
- margin:5px;
- }
- #sidebarlinks button{
- color:{color:LinkBorder};
- background: {color:LinkBackground};
- border: {color:LinkBorder} solid 1px;
- padding:5px;
- margin:-5px;
- box-shadow:0px 0px 10px {color:Shadows};
- text-decoration:none;
- }
- #sidebar img{
- border:3px solid #fff;
- box-shadow:0px 0px 5px #bbb;
- {block:IfCircle}
- border-radius:100%;
- {/block:IfCircle}
- }
- #content{
- width:{block:If300px}400px{/block:If300px}{block:If400px}500px{/block:If400px}{block:If500px}600px{/block:If500px};
- {block:IfSidebarRight}margin-left:-100px;{/block:IfSidebarRight}
- {block:IfNotSidebarRight}margin-left:200px;{/block:IfNotSidebarRight}
- overflow:hidden;
- }
- .post{
- background:{color:PostBackground};
- width:{block:If300px}300px{/block:If300px}{block:If400px}400px{/block:If400px}{block:If500px}500px{/block:If500px};
- margin:10px 0 50px 10px;
- overflow:hidden;
- padding:25px;
- border: 1px {color:Borders} solid;
- box-shadow:0px 0px 10px {color:Shadows};
- border-radius:10px;
- }
- #sidebar img, .post img{
- max-width:100%;
- }
- #nav{
- margin:50px 0 0 0;
- }
- #nav a{
- padding:5px;
- background:#fff;
- border:{color:Borders};
- box-shadow: 0px 0px 10px {color:Shadows};
- margin:10px;
- }
- .media{
- margin:0 0 10px 0;
- }
- .title{
- font-weight:normal;
- font-size:18px;
- margin:0 0 10px 0;
- }
- .quote{
- font-weight:normal;
- font-size:16px;
- font-style:italic;
- margin:0 0 10px 0;
- }
- .question{
- margin-bottom:10px;
- }
- blockquote{
- margin:0 0 10px 10px;
- padding:0 0 0 10px;
- border-left:solid 1px #000;
- }
- .post .footer{
- margin:0;
- text-align:left;
- background:{color:FooterBackground};
- padding:15px;
- border-radius:10px;
- margin-top:10px;
- border:1px solid {color:Borders};
- box-shadow:0px 0px 10px {color:Shadows};
- }
- 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;
- }
- .hidden {display: none;}
- .unhidden {display: block;}
- #credit{
- padding:5px;
- bottom:0px;
- left:0px;
- position:fixed;
- background:#fff;
- border:{color:Borders};
- box-shadow: 0px 0px 10px {color:Shadows};
- margin:10px;
- }
- {CustomCSS}
- </style>
- </head>
- <body><div id="credit"><a href="http://lps666.tumblr.com/">THEME</a></div>
- <div id="wrapper">
- <div id="sidebar"><h1><a href="{BlogURL}">{blogtitle}</a></h1>
- <a href="{BlogURL}"><img src="{PortraitURL-128}"></a><br><br>
- {block:Description}
- <p>{Description}</p>
- {/block:Description}
- <br>
- <script type="text/javascript">
- jQuery(document).ready(function() {
- jQuery(".sub").hide();
- //toggle the componenet with class msg_body
- jQuery(".cthrough").click(function()
- {
- jQuery(this).next(".sub").slideToggle(500);
- });});
- </script>
- <a href="#" class="cthrough">{text:Links}</a>
- <div class="sub">
- <div id="sidebarlinks"><br><div align="center">
- <a href="/"><button style="display: block; width: 100%;">{lang:Home}</button></a><br>
- {block:AskEnabled}
- <a href="/ask"><button style="display: block; width: 100%;">{AskLabel}</button></a><br>
- {/block:AskEnabled}
- {block:SubmissionsEnabled}
- <a href="/ask"><button style="display: block; width: 100%;">{SubmitLabel}</button></a><br>
- {/block:SubmissionsEnabled}
- {block:HasPages}
- {block:Pages}
- <a href="{URL}"><button style="display: block; width:100%;">{Label}</button></a><br>
- {/block:Pages}
- {/block:HasPages}
- </div></div></div>
- </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}<div align="center"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></div>{LinkCloseTag}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Photo}
- {block:Photoset}
- <div class="media"><div align="center">{Photoset-500}</div></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-500}</div>
- {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
- {/block:Video}
- {block:Audio}
- <div class="media">
- {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}
- {AudioPlayerWhite}
- {block:TrackName}{TrackName}<br>{/block:TrackName}
- {block:Artist}{Artist}<br>{/block:Artist}
- {block:Album}{Album}{/block:Album}
- </div>
- {block:Caption}{Caption}{/block:Caption}
- {/block:Audio}
- {block:Answer}
- <div class="question">{Asker}: {Question}</div>
- <div class="caption">{Answer}</div>
- {/block:Answer}
- {block:Date}
- <div class="footer">
- <a href="{Permalink}">{TimeAgo}{block:NoteCount} ({NoteCountWithLabel}){/block:NoteCount}</a>
- {block:HasTags}<br>{block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}{/block:HasTags}
- {block:PermalinkPage}{block:RebloggedFrom}<br><a href="{ReblogParentURL}">{lang:Reblogged from ReblogParentName}</a>{/block:RebloggedFrom}
- {block:ContentSource}<br><a href="{SourceURL}">{lang:Source}: {SourceTitle}</a>{/block:ContentSource}{/block:PermalinkPage}
- </div>
- {block:PermalinkPage}
- {block:NoteCount}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:NoteCount}
- {/block:PermalinkPage}
- {/block:Date}
- </div>
- {/block:Posts}
- {block:Pagination}
- <div id="nav">
- {block:PreviousPage}<a href="{PreviousPage}">{lang:Previous}</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}">{lang:Next}</a>{/block:NextPage}
- </div>
- {/block:Pagination}
- </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>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment