Advertisement
Erlina

Lovely Blue

Feb 8th, 2015
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.80 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4.  
  5. <title>Licca Theme #1</title>
  6.  
  7. <link rel="shortcut icon" href="http://i.imgur.com/DpcZMPM.gif">
  8.  
  9. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  10.  
  11. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">
  12. </script>
  13.  
  14. <script type='text/javascript' language='Javascript'>
  15. var scrolltotop={
  16. //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control
  17. //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (1=top).
  18. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  19. controlHTML: '<img src="http://i.imgur.com/Kk23ODg.gif"/>', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol"
  20. controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ center of window corner
  21. anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links
  22. state: {isvisible:false, shouldvisible:false},
  23. scrollup:function(){
  24. if (!this.cssfixedsupport) //if control is positioned using JavaScript
  25. this.$control.css({opacity:0}) //hide control immediately after clicking it
  26. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  27. if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists
  28. dest=jQuery('#'+dest).offset().top
  29. else
  30. dest=0
  31. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  32. },
  33. keepfixed:function(){
  34. var $window=jQuery(window)
  35. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  36. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  37. this.$control.css({left:controlx+'px', top:controly+'px'})
  38. },
  39. togglecontrol:function(){
  40. var scrolltop=jQuery(window).scrollTop()
  41. if (!this.cssfixedsupport)
  42. this.keepfixed()
  43. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  44. if (this.state.shouldvisible && !this.state.isvisible){
  45. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  46. this.state.isvisible=true
  47. }
  48. else if (this.state.shouldvisible==false && this.state.isvisible){
  49. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  50. this.state.isvisible=false
  51. }
  52. },
  53. init:function(){
  54. jQuery(document).ready(function($){
  55. var mainobj=scrolltotop
  56. var iebrws=document.all
  57. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode
  58. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  59. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  60. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'url()'})
  61. .attr({title:"Go to top !"})
  62. .click(function(){mainobj.scrollup(); return false})
  63. .appendTo('body')
  64. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text
  65. mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text
  66. mainobj.togglecontrol()
  67. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  68. mainobj.scrollup()
  69. return false
  70. })
  71. $(window).bind('scroll resize', function(e){
  72. mainobj.togglecontrol()
  73. })
  74. })
  75. }
  76. }
  77. scrolltotop.init()
  78. </script>
  79.  
  80. <style type="text/css">
  81.  
  82. #navbar-iframe{
  83. display: none;
  84. }
  85.  
  86. body{
  87. background:url(http://i.imgur.com/q0Iz4UN.jpg);
  88. background-attachment: fixed;
  89. font-family: century gothic;
  90. letter-spacing:1px;
  91. color:#000;
  92. padding:1px;
  93. cursor:url(http://media.tumblr.com/tumblr_m2wj5jgL671qfamg6.gif),auto;
  94. }
  95.  
  96. a:link, a:visited {
  97. cursor:url(http://media.tumblr.com/tumblr_lqs4it9hbQ1qfoi4t.png),auto;
  98. -webkit-transition: all 0.5s ease-in-out;
  99. -moz-transition: all 0.5s ease-in-out;
  100. -o-transition: all 0.5s ease-in-out;
  101. -ms-transition: all 0.5s ease-in-out;
  102. text-decoration:none;
  103. color:#B0E0E6;
  104. padding:1px;
  105. }
  106.  
  107. a:hover {
  108. -webkit-transition: all 0.5s ease-in-out;
  109. -moz-transition: all 0.5s ease-in-out;
  110. -o-transition: all 0.5s ease-in-out;
  111. -ms-transition: all 0.5s ease-in-out;
  112. color:#000;
  113. }
  114.  
  115. img{
  116. border-radius:2px;
  117. -webkit-transition:1s;
  118. }
  119.  
  120. .sidebar {
  121. border-radius:10px;
  122. background:white;
  123. padding-top:10px;
  124. padding-bottom:10px;
  125. padding-left:20px;
  126. padding-right:20px;
  127. width: 220px;
  128. font-size:11px;
  129. text-align:left;
  130. border:1px solid #B0E0E6;
  131. margin-left:10px;
  132. }
  133.  
  134. .title {
  135. padding:5px 5px 5px 30px;
  136. background:url(http://i.imgur.com/3Kw0GZJ.gif) left center;
  137. background-repeat:no-repeat;
  138. font:17px century gothic;
  139. text-align:left;
  140. letter-spacing: 2px;
  141. color:black;
  142. -webkit-transition:All 0.4s ease;
  143. -moz-transition:All 0.4s ease;
  144. -o-transition:All 0.4s ease;
  145. }
  146.  
  147. .title:first-letter {
  148. font-size: 30px;
  149. font-family: century gothic;
  150. text-align: center;
  151. color: #B0E0E6;
  152. }
  153.  
  154. .comment {
  155. background:#E0FFFF;
  156. margin-bottom:10px;
  157. font-size:11px;
  158. text-align:right;
  159. letter-spacing:2px;
  160. }
  161.  
  162. .ch-grid {
  163. margin: 20px 0 0 0;
  164. padding: 2px;
  165. list-style: none;
  166. display: block;
  167. text-align: center;
  168. width: 100%;
  169. }
  170.  
  171. blockquote {
  172. padding: 10px 10px 10px 26px;
  173. border-top:1px dashed #B0E0E6;
  174. border-bottom:1px solid #B0E0E6;
  175. border-right:1px solid #B0E0E6;
  176. border-left:1px dashed #B0E0E6;
  177. background-position:bottom right;
  178. background-repeat:no-repeat;
  179. -webkit-transition: all 0.5s ease-in-out;
  180. -moz-transition: all 0.5s ease-in-out;
  181. -o-transition: all 0.5s ease-in-out;
  182. -ms-transition: all 0.5s ease-in-out;
  183. }
  184.  
  185. u {
  186. text-decoration:none;
  187. border-bottom: 1px solid #B0E0E6;
  188. -webkit-transition: 1s;
  189. }
  190.  
  191. i {
  192. font-family:trebuchet ms;
  193. }
  194.  
  195. ::-webkit-scrollbar {
  196. width: 10px;
  197. background:#ffffff;
  198. }
  199.  
  200. ::-webkit-scrollbar-thumb {
  201. background:#8EBDD1;
  202. -moz-border-radius: 5px;
  203. border-radius: 5px;
  204. border: 1px solid #8EBDD1;
  205. }
  206.  
  207. ::selection {
  208. background: #BFE3F3;
  209. color: #fff;
  210. }
  211.  
  212. ::-moz-selection {
  213. background: #E0FFFF;
  214. color: #fff;
  215. }
  216.  
  217. a.navi{
  218. display:inline-block;
  219. -webkit-transition:All 0.8s ease ;
  220. -moz-transition:All 0.84s ease ;
  221. -o-transition:All 0.8s ease ;
  222. padding:5px;
  223. width:70px;
  224. text-decoration:none;
  225. font-family:tahoma;
  226. font-size:10px;
  227. text-transform:uppercase;
  228. color: #fff;
  229. background: #B0E0E6;
  230. text-align:center;
  231. cursor:url(http://media.tumblr.com/tumblr_lqs4it9hbQ1qfoi4t.png),auto;
  232. }
  233.  
  234. a.navi:hover{
  235. -moz-box-shadow:inset -100px 0px -200px -0.5px #F0FAFC;
  236. -webkit-box-shadow:inset -100px 0px -200px -0.5px #F0FAFC;
  237. box-shadow:inset -100px 0px 0px -0.5px #F0FAFC;
  238. color: #F0FAFC;
  239. border-bottom:0px;
  240. }
  241.  
  242. a.tablo{
  243. margin-bottom:10px;
  244. background:#fff;
  245. width:45px;
  246. text-decoration:none;
  247. border:1px dotted #B0E0E6;
  248. border-radius:33px;
  249. color:#555;
  250. display:inline-block;
  251. text-align:center;
  252. }
  253.  
  254. .h1 {
  255. background:url(http://pastelpatterns.com/small/smallpattern-4.png);
  256. padding:2px;
  257. text-transform:uppercase;
  258. color:#000;
  259. -webkit-transition: 1.0s;
  260. -moz-transition: 1.0s;
  261. margin-bottom:5px;
  262. margin:10px;
  263. font-family: 'Rum Raisin', sans-serif;
  264. font-size:12px;
  265. line-height:18px;
  266. text-align:center;
  267. }
  268.  
  269. a.chan {
  270. background:url(http://i205.photobucket.com/albums/bb186/mhilkas/favoicons/icco5.gif);
  271. background-repeat:no-repeat;
  272. background-size:13px;
  273. padding-left:25px;
  274. color:#666;
  275. display:inline-block;
  276. font:11px arial;
  277. -webkit-transition: all 0.5s ease;
  278. -moz-transition: all 0.5s ease;
  279. -o-transition: all 0.5s ease;
  280. width:305px;
  281. line-height:18px;
  282. }
  283.  
  284. a.chan:hover{
  285. background:url(http://i205.photobucket.com/albums/bb186/mhilkas/favoicons/1009254cq7evun01h.gif);
  286. background-repeat:no-repeat;
  287. background-size:13px;
  288. color: #B0E0E6;
  289. }
  290.  
  291. .sidenav2 a:link, .sidenav2 a:active, .sidenav2 a:visited
  292. {
  293. width: 93px;
  294. background: #8EBDD1;
  295. color: #FFFFFF;
  296. display: inline-block;
  297. text-decoration: none;
  298. text-transform: lowercase;
  299. text-align: center;
  300. font:12px century gothic;
  301. padding: 1px;
  302. margin-top: 2px;
  303. -webkit-transition-property: color, text;
  304. -webkit-transition-duration: .2s;
  305. -moz-transition-duration: .2s;
  306. -webkit-transition-timing-function: linear, ease-in;
  307. }
  308.  
  309. .sidenav2 a:hover
  310. {
  311. letter-spacing: 2px;
  312. -webkit-transition-duration: .2s;
  313. -moz-transition-duration: .2s;
  314. background:#fff;
  315. color:#000;
  316. }
  317.  
  318. </style>
  319.  
  320.  
  321.  
  322. <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);
  323. -moz-box-shadow: 0 1px 5px rgba(191,191,191,0.88);
  324. box-shadow: 0 1px 5px rgba(191,191,191,0.88); >
  325. <tbody>
  326. <tr>
  327.  
  328. <td valign="top">
  329. <div class="sidebar">
  330. <div class="title">Welcome</div>
  331. <div class="comment">to my precious blog.</div>
  332.  
  333. <center>
  334. <div style="background:url(http://37.media.tumblr.com/df649b19489b2954788d8856188cdd18/tumblr_movcawwYsM1ru3nbdo1_250.png) repeat; border:1px dashed #C3E5FB;padding:5px;width:200px;">
  335.  
  336. <img style="width:200px;height:140px;" src="http://i.imgur.com/Anp0alF.png"><br>
  337.  
  338. <table>
  339.  
  340. <td><div class="sidenav2">
  341. <a href="http://www.blogger.com/follow-blog.g?blogID=224954534691562404" title="Follow me :)">Follow</a></td>
  342. <td><div class="sidenav2"><a href="http://blogger.com/home" title="home blog!">dashboard</a></div></td>
  343. </table>
  344. </center>
  345.  
  346. <center>
  347. Morbi rhoncus ante nec velit accumsan, at eleifend augue dapibus. Integer tincidunt nibh eu mi sagittis, rutrum sodales erat porttitor.
  348. <br/>
  349. </center><div></div>
  350. </div>
  351.  
  352. <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;">
  353. </div>
  354.  
  355. <div class="sidebar">
  356. <div class="title">Archives</div>
  357. <div class="comment">find more...</div>
  358.  
  359. <center>
  360.  
  361. <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;">
  362. <option value=''>History:</option>
  363. <BloggerPreviousItems>
  364. <option value="<$BlogItemPermalinkURL$>"> <$BlogPreviousItemTitle$></option>
  365. </BloggerPreviousItems></select></center><br/>
  366.  
  367. <script type='text/javascript'> window.setTimeout(function() { document.body.className = document.body.className.replace(&#39;loading&#39;, &#39;&#39;); }, 10); </script> <center>© copyright by <a href="http://precioussebook.blogspot.com/">licca</a>.</center>
  368.  
  369.  
  370. </div></div></br>
  371.  
  372. <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">
  373.  
  374. <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$>
  375. </blogger>
  376. </div><br><br>
  377. </table>
  378.  
  379.  
  380. <style type="text/css">
  381.  
  382. @font-face{font-family:pixel;src:url(http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf)}
  383. a.link2 {
  384. cursor: url(http://media.tumblr.com/tumblr_lqs4it9hbQ1qfoi4t.png), progress;
  385. background:#fff;
  386. border:1px solid #B0E0E6;
  387. display:inline-block;
  388. padding:2px;
  389. width:70px;
  390. margin:2px;
  391. color:#000;
  392. font-family: pixel;
  393. font-size:8px;
  394. text-transform:uppercase;
  395. letter-spacing:1px;
  396. text-align:center;
  397. box-shadow:inset 0px 0px 0px #B0E0E6,inset 0px 0px 0px #B0E0E6;
  398. -webkit-transition: 0.5s;
  399. -moz-transition: 0.5s;
  400. }
  401.  
  402. a.link2:hover {
  403. padding:2px;
  404. width:70px;
  405. margin:2px;
  406. color:#000;
  407. display:inline-block;
  408. box-shadow:inset 0px 14px 0px #B0E0E6,inset 0px -14px 0px #B0E0E6;
  409. }
  410. a.linkies {
  411. font-size: 11px;
  412. font-family: Trebuchet Ms;
  413. display:inline-block;
  414. text-align:center;
  415. width: 70px;
  416. color: #fff;
  417. background:#D2E3FF;
  418. padding:3px;
  419. margin:2px;
  420. text-decoration: none;
  421. -webkit-transition-duration:1200ms;
  422. }
  423.  
  424. a.linkies:hover{
  425. display:inline-block;
  426. text-align:center;
  427. width: 70px;
  428. color: #000;
  429. background:#fff;
  430. -webkit-transition-duration:1200ms;
  431. }
  432.  
  433. </style>
  434.  
  435.  
  436. <div id="entry" style="display:none;">
  437.  
  438. <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$>
  439. </blogger>
  440.  
  441. </div><br><br>
  442. </table>
  443.  
  444. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement