Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Licca Theme #1</title>
- <link rel="shortcut icon" href="http://i.imgur.com/DpcZMPM.gif">
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
- </script>
- <script type='text/javascript' language='Javascript'>
- var scrolltotop={
- //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
- //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (1=top).
- setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
- controlHTML: '<img src="http://i.imgur.com/Kk23ODg.gif"/>', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
- controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ center of window corner
- anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
- state: {isvisible:false, shouldvisible:false},
- scrollup:function(){
- if (!this.cssfixedsupport) //if control is positioned using JavaScript
- this.$control.css({opacity:0}) //hide control immediately after clicking it
- var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
- if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
- dest=jQuery('#'+dest).offset().top
- else
- dest=0
- this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
- },
- keepfixed:function(){
- var $window=jQuery(window)
- var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
- var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
- this.$control.css({left:controlx+'px', top:controly+'px'})
- },
- togglecontrol:function(){
- var scrolltop=jQuery(window).scrollTop()
- if (!this.cssfixedsupport)
- this.keepfixed()
- this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
- if (this.state.shouldvisible && !this.state.isvisible){
- this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
- this.state.isvisible=true
- }
- else if (this.state.shouldvisible==false && this.state.isvisible){
- this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
- this.state.isvisible=false
- }
- },
- init:function(){
- jQuery(document).ready(function($){
- var mainobj=scrolltotop
- var iebrws=document.all
- mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
- mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
- mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
- .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'url()'})
- .attr({title:"Go to top !"})
- .click(function(){mainobj.scrollup(); return false})
- .appendTo('body')
- if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
- mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
- mainobj.togglecontrol()
- $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
- mainobj.scrollup()
- return false
- })
- $(window).bind('scroll resize', function(e){
- mainobj.togglecontrol()
- })
- })
- }
- }
- scrolltotop.init()
- </script>
- <style type="text/css">
- #navbar-iframe{
- display: none;
- }
- body{
- background:url(http://i.imgur.com/q0Iz4UN.jpg);
- background-attachment: fixed;
- font-family: century gothic;
- letter-spacing:1px;
- color:#000;
- padding:1px;
- cursor:url(http://media.tumblr.com/tumblr_m2wj5jgL671qfamg6.gif),auto;
- }
- a:link, a:visited {
- cursor:url(http://media.tumblr.com/tumblr_lqs4it9hbQ1qfoi4t.png),auto;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- text-decoration:none;
- color:#B0E0E6;
- padding:1px;
- }
- a:hover {
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- color:#000;
- }
- img{
- border-radius:2px;
- -webkit-transition:1s;
- }
- .sidebar {
- border-radius:10px;
- background:white;
- padding-top:10px;
- padding-bottom:10px;
- padding-left:20px;
- padding-right:20px;
- width: 220px;
- font-size:11px;
- text-align:left;
- border:1px solid #B0E0E6;
- margin-left:10px;
- }
- .title {
- padding:5px 5px 5px 30px;
- background:url(http://i.imgur.com/3Kw0GZJ.gif) left center;
- background-repeat:no-repeat;
- font:17px century gothic;
- text-align:left;
- letter-spacing: 2px;
- color:black;
- -webkit-transition:All 0.4s ease;
- -moz-transition:All 0.4s ease;
- -o-transition:All 0.4s ease;
- }
- .title:first-letter {
- font-size: 30px;
- font-family: century gothic;
- text-align: center;
- color: #B0E0E6;
- }
- .comment {
- background:#E0FFFF;
- margin-bottom:10px;
- font-size:11px;
- text-align:right;
- letter-spacing:2px;
- }
- .ch-grid {
- margin: 20px 0 0 0;
- padding: 2px;
- list-style: none;
- display: block;
- text-align: center;
- width: 100%;
- }
- blockquote {
- padding: 10px 10px 10px 26px;
- border-top:1px dashed #B0E0E6;
- border-bottom:1px solid #B0E0E6;
- border-right:1px solid #B0E0E6;
- border-left:1px dashed #B0E0E6;
- background-position:bottom right;
- background-repeat:no-repeat;
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- }
- u {
- text-decoration:none;
- border-bottom: 1px solid #B0E0E6;
- -webkit-transition: 1s;
- }
- i {
- font-family:trebuchet ms;
- }
- ::-webkit-scrollbar {
- width: 10px;
- background:#ffffff;
- }
- ::-webkit-scrollbar-thumb {
- background:#8EBDD1;
- -moz-border-radius: 5px;
- border-radius: 5px;
- border: 1px solid #8EBDD1;
- }
- ::selection {
- background: #BFE3F3;
- color: #fff;
- }
- ::-moz-selection {
- background: #E0FFFF;
- color: #fff;
- }
- a.navi{
- display:inline-block;
- -webkit-transition:All 0.8s ease ;
- -moz-transition:All 0.84s ease ;
- -o-transition:All 0.8s ease ;
- padding:5px;
- width:70px;
- text-decoration:none;
- font-family:tahoma;
- font-size:10px;
- text-transform:uppercase;
- color: #fff;
- background: #B0E0E6;
- text-align:center;
- cursor:url(http://media.tumblr.com/tumblr_lqs4it9hbQ1qfoi4t.png),auto;
- }
- a.navi:hover{
- -moz-box-shadow:inset -100px 0px -200px -0.5px #F0FAFC;
- -webkit-box-shadow:inset -100px 0px -200px -0.5px #F0FAFC;
- box-shadow:inset -100px 0px 0px -0.5px #F0FAFC;
- color: #F0FAFC;
- border-bottom:0px;
- }
- a.tablo{
- margin-bottom:10px;
- background:#fff;
- width:45px;
- text-decoration:none;
- border:1px dotted #B0E0E6;
- border-radius:33px;
- color:#555;
- display:inline-block;
- text-align:center;
- }
- .h1 {
- background:url(http://pastelpatterns.com/small/smallpattern-4.png);
- padding:2px;
- text-transform:uppercase;
- color:#000;
- -webkit-transition: 1.0s;
- -moz-transition: 1.0s;
- margin-bottom:5px;
- margin:10px;
- font-family: 'Rum Raisin', sans-serif;
- font-size:12px;
- line-height:18px;
- text-align:center;
- }
- a.chan {
- background:url(http://i205.photobucket.com/albums/bb186/mhilkas/favoicons/icco5.gif);
- background-repeat:no-repeat;
- background-size:13px;
- padding-left:25px;
- color:#666;
- display:inline-block;
- font:11px arial;
- -webkit-transition: all 0.5s ease;
- -moz-transition: all 0.5s ease;
- -o-transition: all 0.5s ease;
- width:305px;
- line-height:18px;
- }
- a.chan:hover{
- background:url(http://i205.photobucket.com/albums/bb186/mhilkas/favoicons/1009254cq7evun01h.gif);
- background-repeat:no-repeat;
- background-size:13px;
- color: #B0E0E6;
- }
- .sidenav2 a:link, .sidenav2 a:active, .sidenav2 a:visited
- {
- width: 93px;
- background: #8EBDD1;
- color: #FFFFFF;
- display: inline-block;
- text-decoration: none;
- text-transform: lowercase;
- text-align: center;
- font:12px century gothic;
- padding: 1px;
- margin-top: 2px;
- -webkit-transition-property: color, text;
- -webkit-transition-duration: .2s;
- -moz-transition-duration: .2s;
- -webkit-transition-timing-function: linear, ease-in;
- }
- .sidenav2 a:hover
- {
- letter-spacing: 2px;
- -webkit-transition-duration: .2s;
- -moz-transition-duration: .2s;
- background:#fff;
- color:#000;
- }
- </style>
- <table style="border-radius:0px 0px 0px 0px;line-height: 17px; padding-left:0px; padding-right:0px; padding-bottom:18px; padding-top:20px; background:none; border:0px solid #efefef;" width="960" border="0" align="center" cellspacing="15"-webkit-box-shadow: 0 1px 5px rgba(191,191,191,0.88);
- -moz-box-shadow: 0 1px 5px rgba(191,191,191,0.88);
- box-shadow: 0 1px 5px rgba(191,191,191,0.88); >
- <tbody>
- <tr>
- <td valign="top">
- <div class="sidebar">
- <div class="title">Welcome</div>
- <div class="comment">to my precious blog.</div>
- <center>
- <div style="background:url(http://37.media.tumblr.com/df649b19489b2954788d8856188cdd18/tumblr_movcawwYsM1ru3nbdo1_250.png) repeat; border:1px dashed #C3E5FB;padding:5px;width:200px;">
- <img style="width:200px;height:140px;" src="http://i.imgur.com/Anp0alF.png"><br>
- <table>
- <td><div class="sidenav2">
- <a href="http://www.blogger.com/follow-blog.g?blogID=224954534691562404" title="Follow me :)">Follow</a></td>
- <td><div class="sidenav2"><a href="http://blogger.com/home" title="home blog!">dashboard</a></div></td>
- </table>
- </center>
- <center>
- Morbi rhoncus ante nec velit accumsan, at eleifend augue dapibus. Integer tincidunt nibh eu mi sagittis, rutrum sodales erat porttitor.
- <br/>
- </center><div></div>
- </div>
- <center><div style="background:none;margin-bottom:-3px;border-left:20px solid #8EBDD1;border-right:20px solid #8EBDD1;width:100px;height:30px;display:inline-block;">
- </div>
- <div class="sidebar">
- <div class="title">Archives</div>
- <div class="comment">find more...</div>
- <center>
- <select style="background-color: #FFFFFF; color: #000000; font: 10px tahoma; letter-spacing: 2px; border:2px #8EBDD1 solid; padding: 1px; width: 200px;cursor:url(http://i1196.photobucket.com/albums/aa406/tieqaonew/01.gif),progress;" onChange="location.href=this.options[this.selectedIndex].value;">
- <option value=''>History:</option>
- <BloggerPreviousItems>
- <option value="<$BlogItemPermalinkURL$>"> <$BlogPreviousItemTitle$></option>
- </BloggerPreviousItems></select></center><br/>
- <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace('loading', ''); }, 10); </script> <center>© copyright by <a href="http://precioussebook.blogspot.com/">licca</a>.</center>
- </div></div></br>
- <td valign="top" style="padding-top:10px;padding-bottom:10px;padding-left:20px;padding-right:20px;width:950px; border:1px solid #B0E0E6; background:white; font-size:11px;border-radius:10px;"><div id="blog">
- <blogger><div class="title"><BlogItemTitle><$BlogItemTitle$></BlogItemTitle></div><div class="comment"><BlogDateHeader><$BlogDateHeaderDate$></BlogDateHeader> - <a href="<$BlogItemPermalinkURL$>">Permalink</a> - <a href="<$BlogItemCommentCreate$>"<$BlogItemCommentFormOnClick$>> <$BlogItemCommentCount$> Comments</a></BlogItemCommentsEnabled></div><$blogitembody$>
- </blogger>
- </div><br><br>
- </table>
- <style type="text/css">
- @font-face{font-family:pixel;src:url(http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf)}
- a.link2 {
- cursor: url(http://media.tumblr.com/tumblr_lqs4it9hbQ1qfoi4t.png), progress;
- background:#fff;
- border:1px solid #B0E0E6;
- display:inline-block;
- padding:2px;
- width:70px;
- margin:2px;
- color:#000;
- font-family: pixel;
- font-size:8px;
- text-transform:uppercase;
- letter-spacing:1px;
- text-align:center;
- box-shadow:inset 0px 0px 0px #B0E0E6,inset 0px 0px 0px #B0E0E6;
- -webkit-transition: 0.5s;
- -moz-transition: 0.5s;
- }
- a.link2:hover {
- padding:2px;
- width:70px;
- margin:2px;
- color:#000;
- display:inline-block;
- box-shadow:inset 0px 14px 0px #B0E0E6,inset 0px -14px 0px #B0E0E6;
- }
- a.linkies {
- font-size: 11px;
- font-family: Trebuchet Ms;
- display:inline-block;
- text-align:center;
- width: 70px;
- color: #fff;
- background:#D2E3FF;
- padding:3px;
- margin:2px;
- text-decoration: none;
- -webkit-transition-duration:1200ms;
- }
- a.linkies:hover{
- display:inline-block;
- text-align:center;
- width: 70px;
- color: #000;
- background:#fff;
- -webkit-transition-duration:1200ms;
- }
- </style>
- <div id="entry" style="display:none;">
- <blogger><div class="title"><BlogItemTitle><$BlogItemTitle$></BlogItemTitle></div><div class="comment"><BlogDateHeader><$BlogDateHeaderDate$></BlogDateHeader> - <a href="<$BlogItemPermalinkURL$>">Permalink</a> - <a href="<$BlogItemCommentCreate$>"<$BlogItemCommentFormOnClick$>> <$BlogItemCommentCount$> Comments</a></BlogItemCommentsEnabled></div><$blogitembody$>
- </blogger>
- </div><br><br>
- </table>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement