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">
- <!----------------------------------------
- Base Code #1 by Incedo
- http://incedothemes.tumblr.com
- *Tips @ http://incedothemes.tumblr.com/basecodes
- *Please do not remove this credit
- and please credit me in your faq
- *DO NOT REDISTRIBUTE without proper credit
- Updated 1/1/14
- ------------------------------------------>
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>{Title}</title>
- <!Meta-tags go here>
- <meta name="image:background" content="" />
- <meta name="image:Sidebar" content=""/>
- <meta name="image:cursor" content=""/>
- <meta name="image:Sidebar2 bg" content=""/>
- <meta name="image:border bg" content="" />
- <meta name="if:show tags" content="1" />
- <meta name="color:background" content="#ffffff" />
- <meta name="color:border bg color" content="#ffffff" />
- <meta name="color:Sidebar2 color" content="#ffffff" />
- <meta name="color:text" content="#000000" />
- <meta name="color:Linkute" content="#000000" />
- <meta name="color:Linkute Hover" content="#000000" />
- <meta name="color:link" content="#000000" />
- <meta name="color:link text" content="#000000" />
- <meta name="color:link hover" content="#000000" />
- <meta name="color:link hover text" content="#000000" />
- <meta name="color:link border" content="#000000" />
- <meta name="color:Permalink" content="#e1e1e1"/>
- <meta name="color:Permalink Bg" content="#e1e1e1"/>
- <meta name="color:Permalink Hover" content="#e1e1e1"/>
- <meta name="color:Tag Bg" content="#FFFFFF"/>
- <meta name="text:Link 1" content=""/>
- <meta name="text:Link 1 URL" content=""/>
- <meta name="text:Link 2" content=""/>
- <meta name="text:Link 2 URL" content=""/>
- <meta name="text:Link 3" content=""/>
- <meta name="text:Link 3 URL" content=""/>
- <style type="text/css">body, a, a:hover {cursor: url({image:cursor}), progress;}</style>
- <link href="https://fonts.googleapis.com/css?family=Signika" rel="stylesheet">
- <link href="https://fonts.googleapis.com/css?family=Patrick+Hand" rel="stylesheet">
- <!Leave this stuff alone>
- <link rel="stylesheet" media="screen" href="http://openfontlibrary.org/face/web-symbols" rel="stylesheet" type="text/css"/>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
- <link rel="shortcut icon" href="{Favicon}"/>
- <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
- <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
- <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
- <script>
- $(document).ready(function(){
- $('.photo-slideshow').pxuPhotoset({
- lightbox: true,
- rounded: false,
- gutter: '0px',
- borderRadius: '0px',
- photoset: '.photo-slideshow',
- photoWrap: '.photo-data',
- photo: '.pxu-photo',
- padding: '3px'
- });
- });
- </script>
- <script type="text/javascript">
- // <![CDATA[
- var colours=new Array('#fcdbf3', '#beede3', '#f5dcde', '#ffe7f8', '#f0f7ff', '#fff2f3'); // colours of the hearts
- var minisize=10; // smallest size of hearts in pixels
- var maxisize=14; // biggest size of hearts in pixels
- var hearts=35; // maximum number of hearts on screen
- var over_or_under="over"; // set to "over" for hearts to always be on top, or "under" to allow them to float behind other objects
- /*****************************
- *JavaScript Love Heart Cursor*
- * (c)2013+ 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 herz=new Array();
- var herzx=new Array();
- var herzy=new Array();
- var herzs=new Array();
- var kiss=false;
- if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
- var oldonload=window.onload;
- if (typeof(oldonload)!='function') window.onload=funky;
- else window.onload=function() {
- if (oldonload) oldonload();
- funky();
- }
- }
- addRVLoadEvent(mwah);
- function mwah() { if (document.getElementById) {
- var i, heart;
- for (i=0; i<hearts; i++) {
- heart=createDiv("auto", "auto");
- heart.style.visibility="hidden";
- heart.style.zIndex=(over_or_under=="over")?"1001":"0";
- heart.style.color=colours[i%colours.length];
- heart.style.pointerEvents="none";
- if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
- else heart.style.opacity=0.75;
- heart.appendChild(document.createTextNode(String.fromCharCode(9829)));
- document.body.appendChild(heart);
- herz[i]=heart;
- herzy[i]=false;
- }
- set_scroll();
- set_width();
- herzle();
- }}
- function herzle() {
- var c;
- if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- ox=x;
- oy=y;
- for (c=0; c<hearts; c++) if (herzy[c]===false) {
- herz[c].firstChild.nodeValue=String.fromCharCode(9829);
- herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
- herz[c].style.top=(herzy[c]=y-minisize)+"px";
- herz[c].style.fontSize=minisize+"px";
- herz[c].style.fontWeight='normal';
- herz[c].style.visibility='visible';
- herzs[c]=minisize;
- break;
- }
- }
- for (c=0; c<hearts; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
- setTimeout("herzle()", 40);
- }
- document.onmousedown=pucker;
- document.onmouseup=function(){clearTimeout(kiss);};
- function pucker() {
- ox=-1;
- oy=-1;
- kiss=setTimeout('pucker()', 100);
- }
- function blow_me_a_kiss(i) {
- herzy[i]-=herzs[i]/minisize+i%2;
- herzx[i]+=(i%5-2)/5;
- if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
- herz[i].style.visibility="hidden";
- herzy[i]=false;
- }
- else if (herzs[i]>minisize+2 && Math.random()<.5/hearts) break_my_heart(i);
- else {
- if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
- herz[i].style.top=herzy[i]+"px";
- herz[i].style.left=herzx[i]+"px";
- }
- }
- function break_my_heart(i) {
- var t;
- herz[i].firstChild.nodeValue=String.fromCharCode(9676);
- herz[i].style.fontWeight='bold';
- herzy[i]=false;
- for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
- setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
- }
- document.onmousemove=mouse;
- function mouse(e) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- window.onresize=set_width;
- function set_width() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)=='number' && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (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;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height;
- div.style.width=width;
- div.style.overflow="hidden";
- div.style.backgroundColor="transparent";
- return (div);
- }
- // ]]>
- </script>
- <!CSS starts here>
- <style type="text/css">
- body {
- background-color:{color:background};
- background-image:url({image:background});
- background-attachment: fixed;
- color:{color:text};
- font-family: 'Signika', sans-serif;
- font-size:13px;
- letter-spacing:1px;
- line-height:20px;
- }
- a:link, a:active, a:visited{
- text-decoration: none;
- color: {color:Linkute};
- -webkit-transition: all 0.4s ease-out;
- -moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
- }
- a:hover {
- color:{color:Linkute Hover};
- text-decoration:none;
- }
- #wrapper {
- width:650px;
- margin-left:auto;
- margin-right:auto;}
- #sidebar {
- top:200px;
- width:100px;
- position:fixed;
- background-color:#fff;
- padding:7px;
- margin-left:10px;
- border:8px solid {color:border bg color};
- border-radius:0px;
- border-image:url({image:border bg}) 10% repeat;
- box-shadow: 7px 7px rgba(0,0,0,.05);
- }
- #sideimage img{
- width: 80px;
- height: 100px;
- padding:4px;
- border: 1px solid #ddd;
- opacity:0.8;
- }
- #sideimage img{
- border-radius:120px;
- background-color: #fff;
- border: 1px solid #eee;
- padding: 8px;
- height:90px;
- width:90px;
- position:absolute;
- top:-100px;
- left:4px;
- box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- }
- .description{
- font-size:10px;
- letter-spacing:1px;
- line-height:18px;
- padding:3px;
- font-family: 'Patrick Hand', cursive;
- }
- #sidebar2 {
- text-align: center;
- margin: 20px auto 10px;
- padding:3px;
- background: {color:Sidebar2 color};
- background-image:url({image:Sidebar2 bg});
- border: 0px solid #000000;
- bottom: -9px;
- width: 100%;
- height:50px;
- left:0px;
- z-index: 100;
- position: fixed;
- opacity: 0.9;
- }
- #entries {
- margin-left: 170px;
- margin-top:30px;
- width:300px;
- }
- #posts {
- width:300px;
- overflow:hidden;
- margin:40px;
- border:1px solid #eee;
- padding:14px;
- background-color:#fff;
- border-radius:7px;
- box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- }
- #posts img{
- max-width:100%;
- border-radius:7px;
- }
- #posts .perma{
- width:250px;
- height:auto;
- margin-left:0px;
- position: absolute;
- line-height: 14px;
- overflow:hidden;
- text-align:center;
- top:3px;
- padding:3px;
- background:white;
- word-spacing:2px;
- letter-spacing:1px;
- opacity: 0.0;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- #posts:hover .perma{
- overflow:visible;
- opacity:0.8;
- }
- .permalink{
- text-transform:lowercase;
- font-size:10px;
- background-color:{color:Permalink Bg};
- border: 1px solid #eee;
- text-align:right;
- color:{color:Permalink};
- margin-top: 10px;
- padding:3px;
- padding-right:4px;
- line-height:12px;
- border-radius:3px;
- box-shadow: 5px 5px rgba(0,0,0,.08);
- }
- .permalink a{
- text-transform:uppercase;
- line-height:15px;
- color:{color:Permalink};
- -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
- }
- .permalink a:hover{
- color:{color:Permalink Hover};
- -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
- }
- .notes {
- float: left;
- text-align: left;
- padding-left:4px;
- }
- .tags{
- text-transform:uppercase;
- font-size:9px;
- background-color:{color:Tag Bg};
- border: 0px solid #E0F1FF;
- text-align:right;
- color:{color:Permalink};
- padding:3px;
- margin-top:8px;
- padding-right:4px;
- line-height:12px;
- border-radius:3px;
- text-shadow:1px 1px 0px #BBBBBB;
- }
- img, img a {
- border:none;
- line-height:0;
- max-width:100%;}
- a.baekminu{
- background:{color:link};
- width:80px;
- display:inline-block;
- text-align:center;
- color:{color:link text};
- margin-bottom:1px;
- font:10px calibri light;
- text-transform:uppercase;
- letter-spacing:2px;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- padding:5px;
- border:1px solid {color:link border};
- }
- a.baekminu:hover{
- background:{color:link hover};
- border:1px solid {color:link border};
- color:{color:link hover text};
- border-radius:5px;
- }
- #credit{position:fixed; bottom:10px; left:10px; font-size:10px; font-family:calibri;color:{color:text}; text-transform:uppercase;letter-spacing: 0px; font-style:normal; background:white; border:1px solid #aaa; padding:3px;}
- </style>
- <style type="text/css">{CustomCSS}</style>
- </head>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/smoothscroll/1.4.1/SmoothScroll.min.js"></script>
- <!HTML body starts here>
- <body>
- <div id="wrapper">
- <div style="position: fixed; top:85px; left: 354px; background-color: transparent; margin:5px; padding:4px; text-align:center;z-index:999;">
- <center><img src="http://oi60.tinypic.com/10dh8ci.jpg"></center>
- </div>
- <div id="sidebar">
- <div id="sideimage"><a href="/"><img src="{image:sidebar}"/></a></div>
- <div class="description">{Description}</div>
- <center>
- {block:Pagination}
- {block:PreviousPage}<a href="{PreviousPage}"><img src="http://68.media.tumblr.com/3bb27096b2b942b8ef1d24b9ecef0dcf/tumblr_inline_mpedf5hhgx1qz4rgp.gif"></a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}"><img src="http://68.media.tumblr.com/d8f3479cd531c54753be621c8df00e4c/tumblr_inline_mpedf95ujK1qz4rgp.gif"></a>{/block:NextPage}
- {/block:Pagination}
- </center>
- </div>
- <div id="sidebar2">
- <br>
- <center>
- <a class="baekminu" href="/" >home</a>
- <a class="baekminu" href="/ask" >ask </a>
- <a class="baekminu" href="/archive" >archive </a>
- <a class="baekminu" href="{text:link 1 url}" >{text:link 1}</a>
- <a class="baekminu" href="{text:link 2 url}" >{text:link 2}</a>
- <a class="baekminu" href="http://codingqt.tumblr.com/" >credit</a>
- </center>
- </div>
- <div class = "autopagerize_page_element" >
- <div id="entries">
- <!Post blocks start here>
- {block:Posts}
- <div id="posts">
- {block:Text}
- {block:Title}{Title}{/block:Title}
- {Body}
- {/block:Text}
- {block:Quote}
- "{Quote}"<br>
- — {Source}
- {/block:Quote}
- {block:Link}
- <a href="{URL}">{Name}</a>
- {/block:Link}
- {block:Chat}
- {block:Lines}{block:Label}{Label} {/block:Label}{Line}<br>{/block:Lines}
- {/block:Chat}
- {block:Answer}
- {Asker} asked: {Question}<br>
- {Answer}
- {/block:Answer}
- {block:Audio}
- {AudioPlayer}
- {/block:Audio}
- {block:Video}
- {Video-400}
- {/block:Video}
- {block:Photo}
- <img src="{PhotoURL-400}"/>
- {/block:Photo}
- {block:Photoset}
- <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">{block:Photos}<div class="photo-data"><div class="pxu-photo"><img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"></div><a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a></div>{/block:Photos}</div>
- {/block:Photoset}
- <div class="permalink"><a href="{ReblogURL}">Reblog</a> <div class="notes"> <a href="{Permalink}">{NoteCountWithLabel}</a></div></div>
- {block:permalinkpage}
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:PermalinkPage}
- {block:ifshowtags}
- <div class="tags">
- {block:HasTags}{block:Tags} <small> # </small> <a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
- {/block:ifshowtags}</div>
- {/block:Posts}
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment