blob: 4fbbbe1cf7267be0ea587f8d68fc8695d793558a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<!DOCTYPE html>
<html><head>
<style>
body {
font-size: 60px;
position: absolute;
margin: 0px;
padding: 0px;
}
div {
position: absolute;
margin: 0px;
padding: 0px;
}
#shadow1 {
top: -30px;
left: -60px;
}
#shadow2 {
top: 100px;
left: -60px;
}
#shadow3 {
top: -30px;
left: 100px;
}
#shadow4 {
top: 200px;
left: -60px;
}
#shadow5 {
top: -30px;
left: 250px;
}
#shadow1-ref {
top: 20px;
left: 20px;
}
#shadow2-ref {
color: transparent;
text-shadow: 0px 0px 10px black;
top: 150px;
left: 20px;
}
#shadow3-ref {
color: transparent;
text-shadow: 0px 0px 10px black;
top: 20px;
left: 180px;
}
#shadow4-ref {
color: transparent;
top: 205px;
left: -40px;
text-shadow: 0px 0px 10px black;
}
#shadow5-ref {
color: transparent;
top: -25px;
left: 270px;
text-shadow: 0px 0px 10px black;
}
</style>
</head><body>
<div id="shadow1-ref">hello</div>
<div id="shadow2-ref">hello</div>
<div id="shadow3-ref">hello</div>
<div id="shadow4-ref">hello</div>
<div id="shadow5-ref">hello</div>
<div id="shadow1">hello</div>
<div id="shadow2">hello</div>
<div id="shadow3">hello</div>
<div id="shadow4">hello </div>
<div id="shadow5">hello </div>
</body></html>
|