View difference between Paste ID: naL9hURK and SkVLQhMr
SHOW: | | - or go back to the newest paste.
1
<html>
2
<!-- Eternity theme by sweetcandyskittles.tumblr.com Please do not redistribute the codes or even claim this theme as yours. Thanks. Hope you like this theme. :) -->
3
4
<head>
5
<title>{Title}</title>
6
7
<meta name="image:BG" content="http://28.media.tumblr.com/tumblr_lxs4cc0cs81r77gqoo1_400.gif">
8
<META name="text:titleofblog" content="" />
9
10
<link href='http://fonts.googleapis.com/css?family=The+Girl+Next+Door|Dawning+of+a+New+Day|La+Belle+Aurore|Rochester|Reenie+Beanie' rel='stylesheet' type='text/css'>
11
12
<link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300,700' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Open+Sans:300,400,400italic,800' rel='stylesheet' type='text/css'>
13
14
<link rel="shortcut icon" href="{Favicon}">
15
<link rel="alternate" type="application/rss+xml" href="{RSS}">
16
{block:Description}<meta name="description" content="{MetaDescription}">{/block:Description}
17
18
<script type="text/javascript"
19
20
src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
21
22
<script type='text/javascript'> 
23
24
//<![CDATA[ 
25
26
var rate = 20; 
27
28
if (document.getElementById) 
29
30
window.onerror=new Function("return true") 
31
32
var objActive; // The object which event occured in 
33
34
var act = 0; // Flag during the action 
35
36
var elmH = 0; // Hue 
37
38
var elmS = 128; // Saturation 
39
40
var elmV = 255; // Value 
41
42
var clrOrg; // A color before the change 
43
44
var TimerID; // Timer ID 
45
46
if (document.all) { 
47
48
document.onmouseover = doRainbowAnchor; 
49
50
document.onmouseout = stopRainbowAnchor; 
51
52
} 
53
54
else if (document.getElementById) { 
55
56
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT); 
57
58
document.onmouseover = Mozilla_doRainbowAnchor; 
59
60
document.onmouseout = Mozilla_stopRainbowAnchor; 
61
62
} 
63
64
function doRainbow(obj) 
65
66
{ 
67
68
if (act == 0) { 
69
70
act = 1; 
71
72
if (obj) 
73
74
objActive = obj; 
75
76
else 
77
78
objActive = event.srcElement; 
79
80
clrOrg = objActive.style.color; 
81
82
TimerID = setInterval("ChangeColor()",100); 
83
84
} 
85
86
} 
87
88
89
90
function stopRainbow() 
91
92
{ 
93
94
if (act) { 
95
96
objActive.style.color = clrOrg; 
97
98
clearInterval(TimerID); 
99
100
act = 0; 
101
102
} 
103
104
} 
105
106
107
108
function doRainbowAnchor() 
109
110
{ 
111
112
if (act == 0) { 
113
114
var obj = event.srcElement; 
115
116
while (obj.tagName != 'A' && obj.tagName != 'BODY') { 
117
118
obj = obj.parentElement; 
119
120
if (obj.tagName == 'A' || obj.tagName == 'BODY') 
121
122
break; 
123
124
} 
125
126
if (obj.tagName == 'A' && obj.href != '') { 
127
128
objActive = obj; 
129
130
act = 1; 
131
132
clrOrg = objActive.style.color; 
133
134
TimerID = setInterval("ChangeColor()",100); 
135
136
} 
137
138
} 
139
140
} 
141
142
143
144
function stopRainbowAnchor() 
145
146
{ 
147
148
if (act) { 
149
150
if (objActive.tagName == 'A') { 
151
152
objActive.style.color = clrOrg; 
153
154
clearInterval(TimerID); 
155
156
act = 0; 
157
158
} 
159
160
} 
161
162
} 
163
164
165
166
function Mozilla_doRainbowAnchor(e) 
167
168
{ 
169
170
if (act == 0) { 
171
172
obj = e.target; 
173
174
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') { 
175
176
obj = obj.parentNode; 
177
178
if (obj.nodeName == 'A' || obj.nodeName == 'BODY') 
179
180
break; 
181
182
} 
183
184
if (obj.nodeName == 'A' && obj.href != '') { 
185
186
objActive = obj; 
187
188
act = 1; 
189
190
clrOrg = obj.style.color; 
191
192
TimerID = setInterval("ChangeColor()",100); 
193
194
} 
195
196
} 
197
198
} 
199
200
201
202
function Mozilla_stopRainbowAnchor(e) 
203
204
{ 
205
206
if (act) { 
207
208
if (objActive.nodeName == 'A') { 
209
210
objActive.style.color = clrOrg; 
211
212
clearInterval(TimerID); 
213
214
act = 0; 
215
216
} 
217
218
} 
219
220
} 
221
222
223
224
function ChangeColor() 
225
226
{ 
227
228
objActive.style.color = makeColor(); 
229
230
} 
231
232
233
234
function makeColor() 
235
236
{ 
237
238
// Don't you think Color Gamut to look like Rainbow? 
239
240
// HSVtoRGB 
241
242
if (elmS == 0) { 
243
244
elmR = elmV; elmG = elmV; elmB = elmV; 
245
246
} 
247
248
else { 
249
250
t1 = elmV; 
251
252
t2 = (255 - elmS) * elmV / 255; 
253
254
t3 = elmH % 60; 
255
256
t3 = (t1 - t2) * t3 / 60; 
257
258
if (elmH < 60) { 
259
260
elmR = t1; elmB = t2; elmG = t2 + t3; 
261
262
} 
263
264
else if (elmH < 120) { 
265
266
elmG = t1; elmB = t2; elmR = t1 - t3; 
267
268
} 
269
270
else if (elmH < 180) { 
271
272
elmG = t1; elmR = t2; elmB = t2 + t3; 
273
274
} 
275
276
else if (elmH < 240) { 
277
278
elmB = t1; elmR = t2; elmG = t1 - t3; 
279
280
} 
281
282
else if (elmH < 300) { 
283
284
elmB = t1; elmG = t2; elmR = t2 + t3; 
285
286
} 
287
288
else if (elmH < 360) { 
289
290
elmR = t1; elmG = t2; elmB = t1 - t3; 
291
292
} 
293
294
else { 
295
296
elmR = 0; elmG = 0; elmB = 0; 
297
298
} 
299
300
} 
301
302
elmR = Math.floor(elmR).toString(16); 
303
304
elmG = Math.floor(elmG).toString(16); 
305
306
elmB = Math.floor(elmB).toString(16); 
307
308
if (elmR.length == 1) elmR = "0" + elmR; 
309
310
if (elmG.length == 1) elmG = "0" + elmG; 
311
312
if (elmB.length == 1) elmB = "0" + elmB; 
313
314
elmH = elmH + rate; 
315
316
if (elmH >= 360) 
317
318
elmH = 0; 
319
320
return '#' + elmR + elmG + elmB; 
321
322
} 
323
324
//]]> 
325
326
</script>
327
328
329
330
<script type="text/javascript">
331
// <![CDATA[
332
var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
333
var sparkles=50;
334
335
336
337
/****************************
338
* Tinkerbell Magic Sparkle *
339
*(c)2005-11 mf2fm web-design*
340
* http://www.mf2fm.com/rv *
341
* DON'T EDIT BELOW THIS BOX *
342
****************************/
343
344
var x=ox=400;
345
var y=oy=300;
346
var swide=800;
347
var shigh=600;
348
var sleft=sdown=0;
349
var tiny=new Array();
350
var star=new Array();
351
var starv=new Array();
352
var starx=new Array();
353
var stary=new Array();
354
var tinyx=new Array();
355
var tinyy=new Array();
356
var tinyv=new Array();
357
358
window.onload=function() { if (document.getElementById) {
359
var i, rats, rlef, rdow;
360
for (var i=0; i<sparkles; i++) {
361
var rats=createDiv(3, 3);
362
rats.style.visibility="hidden";
363
document.body.appendChild(tiny[i]=rats);
364
starv[i]=0;
365
tinyv[i]=0;
366
var rats=createDiv(5, 5);
367
rats.style.backgroundColor="transparent";
368
rats.style.visibility="hidden";
369
var rlef=createDiv(1, 5);
370
var rdow=createDiv(5, 1);
371
rats.appendChild(rlef);
372
rats.appendChild(rdow);
373
rlef.style.top="2px";
374
rlef.style.left="0px";
375
rdow.style.top="0px";
376
rdow.style.left="2px";
377
document.body.appendChild(star[i]=rats);
378
}
379
380
set_width();
381
sparkle();
382
}}
383
384
function sparkle() {
385
var c;
386
if (x!=ox || y!=oy) {
387
ox=x;
388
oy=y;
389
for (c=0; c<sparkles; c++) if (!starv[c]) {
390
star[c].style.left=(starx[c]=x)+"px";
391
star[c].style.top=(stary[c]=y)+"px";
392
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
393
star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
394
395
star[c].style.visibility="visible";
396
starv[c]=50;
397
break;
398
}
399
}
400
for (c=0; c<sparkles; c++) {
401
if (starv[c]) update_star(c);
402
if (tinyv[c]) update_tiny(c);
403
}
404
setTimeout("sparkle()", 40);
405
}
406
407
408
409
function update_star(i) {
410
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
411
if (starv[i]) {
412
stary[i]+=1+Math.random()*3;
413
if (stary[i]<shigh+sdown && starx[i]>0) {
414
star[i].style.top=stary[i]+"px";
415
starx[i]+=(i%5-2)/5;
416
star[i].style.left=starx[i]+"px";
417
}
418
else {
419
star[i].style.visibility="hidden";
420
starv[i]=0;
421
return;
422
}
423
}
424
425
else {
426
tinyv[i]=50;
427
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
428
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
429
tiny[i].style.width="2px";
430
tiny[i].style.height="2px";
431
tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
432
star[i].style.visibility="hidden";
433
tiny[i].style.visibility="visible"
434
}
435
}
436
437
function update_tiny(i) {
438
if (--tinyv[i]==25) {
439
tiny[i].style.width="1px";
440
tiny[i].style.height="1px";
441
}
442
443
if (tinyv[i]) {
444
tinyy[i]+=1+Math.random()*3;
445
if (tinyy[i]<shigh+sdown && tinyx[i]>0) {
446
tiny[i].style.top=tinyy[i]+"px";
447
tinyx[i]+=(i%5-2)/5;
448
tiny[i].style.left=tinyx[i]+"px";
449
}
450
451
else {
452
tiny[i].style.visibility="hidden";
453
tinyv[i]=0;
454
return;
455
}
456
}
457
else tiny[i].style.visibility="hidden";
458
}
459
460
document.onmousemove=mouse;
461
function mouse(e) {
462
set_scroll();
463
y=(e)?e.pageY:event.y+sdown;
464
x=(e)?e.pageX:event.x+sleft;
465
}
466
467
function set_scroll() {
468
if (typeof(self.pageYOffset)=="number") {
469
sdown=self.pageYOffset;
470
sleft=self.pageXOffset;
471
}
472
else if (document.body.scrollTop || document.body.scrollLeft) {
473
sdown=document.body.scrollTop;
474
sleft=document.body.scrollLeft;
475
}
476
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
477
sleft=document.documentElement.scrollLeft;
478
sdown=document.documentElement.scrollTop;
479
}
480
else {
481
sdown=0;
482
sleft=0;
483
}
484
}
485
486
window.onresize=set_width;
487
function set_width() {
488
if (typeof(self.innerWidth)=="number") {
489
swide=self.innerWidth;
490
shigh=self.innerHeight;
491
}
492
493
else if (document.documentElement && document.documentElement.clientWidth) {
494
swide=document.documentElement.clientWidth;
495
shigh=document.documentElement.clientHeight;
496
}
497
498
else if (document.body.clientWidth) {
499
swide=document.body.clientWidth;
500
shigh=document.body.clientHeight;
501
}
502
}
503
504
function createDiv(height, width) {
505
var div=document.createElement("div");
506
div.style.position="absolute";
507
div.style.height=height+"px";
508
div.style.width=width+"px";
509
div.style.overflow="hidden";
510
return (div);
511
}
512
513
function newColour() {
514
var c=new Array();
515
c[0]=255;
516
c[1]=Math.floor(Math.random()*256);
517
c[2]=Math.floor(Math.random()*(256-c[1]/2));
518
c.sort(function(){return (0.5 - Math.random());});
519
return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
520
}
521
522
// ]]>
523
</script>
524
525
<script language=JavaScript>
526
<!--
527
//Disable right click script III- By Renigade ([email protected])
528
//For full source code, visit http://www.dynamicdrive.com
529
var message="";
530
///////////////////////////////////
531
function clickIE() {if (document.all) {(message);return false;}}
532
function clickNS(e) {if 
533
(document.layers||(document.getElementById&&!document.all)) {
534
if (e.which==2||e.which==3) {(message);return false;}}}
535
if (document.layers) 
536
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
537
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
538
document.oncontextmenu=new Function("return false")
539
// --> 
540
</script>
541
542
543
<style type="text/css">
544
545
body {
546
background-color:#fff;
547
background-image:url({image:BG});
548
background-attachment:fixed;
549
background-repeat:repeat;
550
color: #Ae4567;
551
font-family:trebuchet MS;
552
font-size:10px;
553
line-height:14px;
554
}
555
556
a, a:link, a:visited, a:active {
557
color: #000; 
558
text-shadow: 1px 1px 1px;
559
text-decoration: none;
560
-webkit-transition-timing-function: ease-out;
561
-webkit-transition-duration: 0.5s;
562
-moz-transition-timing-function: ease-out;
563
-moz-transition-duration: 0.5s;
564
}
565
566
a:hover {
567
color: #000;
568
background-color: transparent;
569
-webkit-transition-timing-function: ease-out;
570
-webkit-transition-duration: 0.5s;
571
-moz-transition-timing-function: ease-out;
572
-moz-transition-duration: 0.5s;
573
text-decoration:none;
574
border:none;
575
}
576
577
#content {
578
width:400px;
579
padding:5px;
580
background-color:#fff;
581
margin-bottom:5px;
582
position: absolute;
583
top: 9px;
584
left: 560px;
585
}
586
587
.permalink {
588
background-color: #FCDFFF;
589
line-height:10px;
590
display:block;
591
text-align:center;
592
font-family: 'rochester';
593
font-size:12px;
594
text-transform:lowercase;
595
margin-bottom:3px;
596
padding:1px;
597
}
598
599
.text {
600
font-family: 'La belle Aurore', cursive;
601
font-size:24px;
602
line-height:24px;
603
}
604
605
.link {
606
font-size:25px;
607
font-family: 'Reenie Beanie', cursive;
608
font-style:italic;
609
line-height:28px;
610
}
611
612
.titlebar
613
{
614
top:100px;
615
left: 266px;
616
position: fixed;
617
width: 210px;
618
height: 40px;
619
text-align: center;
620
font-family:  'The Girl Next Door', cursive;
621
line-height: 43px;
622
font-size:20px;
623
background: #fff;
624
-moz-border-radius: 15px; 
625
border-radius: 15px;
626
border: 10px solid;
627
border-color: #000;
628
}
629
630
.sidebar
631
{
632
top: 84px;
633
left: 192px;
634
position: fixed;
635
}
636
637
.sidebar2
638
{
639
top: 155px;
640
left: 240px;
641
position: fixed;
642
}
643
644
.navigatebar
645
{
646
margin-top:0px;
647
margin-left:195px;
648
padding:5px;
649
top: 360px;
650
left: 68px;
651
position: fixed;
652
width: 210px;
653
height: 47px;
654
text-align: center;
655
font-family:  Trebuchet Ms;
656
font-size:9px;
657
background: #fff;
658
-moz-border-radius: 15px; 
659
border-radius: 15px;
660
border: 10px solid;
661
border-color: #000;
662
}
663
664
::-webkit-scrollbar {
665
width: 10px; 
666
height: 4px; 
667
background: #ffffff; 
668
background-repeat: repeat-y;
669
 background-attachment: fixed;
670
}
671
672
::-webkit-scrollbar-thumb {
673
background-image:url('http://1.bp.blogspot.com/-LjoSccgnxQc/TmeAxXtuQVI/AAAAAAAAHzw/VhrXJVaPER8/s1600/medium-black-theme.jpg');
674
 -webkit-border-radius: 2ex; }
675
676
#paging a {
677
display:inline-block;
678
color: #000;
679
background-color: #EBDDE2;
680
-webkit-transition-timing-function: ease-out;
681
-webkit-transition-duration: 0.5s;
682
-moz-transition-timing-function: ease-out;
683
-moz-transition-duration: 0.5s;
684
padding:3px;
685
}
686
687
#paging a:hover {
688
color: #000;
689
background-color: #FCDFFF;
690
-webkit-transition-timing-function: ease-out;
691
-webkit-transition-duration: 0.5s;
692
-moz-transition-timing-function: ease-out;
693
-moz-transition-duration: 0.5s;
694
text-align:center;
695
}
696
697
#paging a span {
698
line-height:10px;
699
}
700
701
702
</style>
703
</head>
704
705
<body>
706
707
<div class="titlebar">{text:titleofblog}</div> 
708
709
<div class="sidebar2"><img src="http://26.media.tumblr.com/tumblr_lxs77fun1Z1r77gqoo1_400.png"></div>
710
<div class="sidebar">
711
<TABLE style="WIDTH: 350px; HEIGHT: 350px" align=center>
712
<TBODY><TR><TD><div align=left><div style="font-family: trebuchet ms; font-size: 10px;position:relative; left:79px;  HEIGHT: 128px; WIDTH: 220px; COLOR: #9e8d80;  SCROLLBAR-FACE-COLOR: #6B8E23; SCROLLBAR-SHADOW-COLOR: #cccccc; SCROLLBAR-HIGHLIGHT-COLOR: #cccccc; OVERFLOW-Y: scroll; FILTER: chroma(color=#6B8E23); OVERFLOW-X: hidden;    SCROLLBAR-3DLIGHT-COLOR: #6b8e23; SCROLLBAR-ARROW-COLOR: #cccccc; SCROLLBAR-TRACK-COLOR: #6b8e23;   SCROLLBAR-DARKSHADOW-COLOR: #6b8e23; SCROLLBAR-BASE-COLOR: #6b8e23;  ">
713
<img src="{PortraitURL-128}" align="left" style="width: 68px; margin-right: 10px;  border: 3px solid #000;">
714
<font color="000" size="1px">{description}</font>
715
</DIV></DIV></TD></TR></TBODY></TABLE></div>
716
717
<div class="navigatebar">
718
<form name="form1">
719
<select style="background-color:#ffffff; border: 2px solid #6C006C; font-size: 10px; width: 190px; height: 20px; font-family: trebuchet MS; color: #DB0058" onchange="location.href=this.options[this.selectedIndex].value;"><option selected value="/">NAVIGATE HERE ♥
720
</option>
721
<option value="/">REFRESH</option>
722
<option value="/archive">ARCHIVE</option>
723
<option value="/ask">MESSAGE/ASK</option>
724
</select></area>
725
</form>
726
    ♥ Eternity theme by <a href="http://sweetcandyskittles.tumblr.com">sweetcandyskittles</a>.
727
</font></font>
728
</DIV></DIV>
729
730
731
<div id="content">
732
733
{block:Posts}
734
735
{block:Text}
736
{block:Title}<div class="text">{Title}</div>{/block:Title}
737
{Body}
738
{/block:Text}
739
740
{block:Photo}
741
{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom:3px;">{LinkCloseTag}
742
{block:Caption}{Caption}{/block:Caption}
743
{/block:Photo}
744
745
{block:Photoset}
746-
{Photoset-400}{block:caption}{caption}{/block:caption}
746+
{Photoset-400}
747-
{/block:photoset}
747+
748
{/block:Photoset}
749
750
{block:Quote}"{Quote}"<br>
751
{block:Source}<b>- {Source}</b>{/block:Source}
752
{/block:Quote}
753
754
{block:Link}
755
<div class="link"><a href="{URL}" target="_blank">{Name} ►</a></div>
756
{block:Description}{Description}{/block:Description}
757
{/block:Link}
758
759
{block:Chat}
760
{block:Title}{Title}{/block:Title}
761
{block:Lines}
762
{block:Label}
763
<b>{Label}</b>
764
{/block:Label}
765
<i>{Line}</i><br>
766
{/block:Lines}
767
{/block:Chat}
768
769
{block:Audio}<center>
770
{AudioPlayerBlack}
771
{block:Caption}{Caption}{/block:Caption}</center>
772
{/block:Audio}
773
774
{block:Video}
775
{VideoURL-500}
776
{block:Caption}{Caption}{/block:Caption}
777
{/block:Video}
778
779
780
{block:IndexPage}<center><div class="permalink"><a href="{Permalink}">{NoteCountWithLabel}</a> |♥| <a href="{ReblogURL}" target="_blank">reblog</a>
781
</center>{/block:IndexPage}
782
783
784
{block:PermalinkPage}
785
{/block:PermalinkPage}
786
{block:PostNotes}
787
{PostNotes}
788
789
{/block:PostNotes}
790
{/block:Posts}
791
792
<div id="paging"><center>
793
{block:PreviousPage}<a href="{PreviousPage}"><span>← PREV</span></a>{/block:PreviousPage}
794
{block:NextPage}<a href="{NextPage}"><span>NEXT →</span></a>{/block:NextPage}
795
</center>
796
797
</div>
798
</div>
799
</body>
800
</html>