forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hbb.html
75 lines (73 loc) · 1.4 KB
/
hbb.html
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 type="text/css">
html{
background-color:black;
}
#shadow{
position: relative;
top:60px;
margin:auto;
width:700px;
height: 750px;
background-image: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(255, 255, 255, 0.43) 4%, rgb(0, 0, 0) 55%);
background-image: -moz-radial-gradient(center, ellipse farthest-corner, rgba(255, 255, 255, 0.43) 4%, rgb(0, 0, 0) 55%);
background-image: radial-gradient(center, ellipse farthest-corner, rgba(255, 255, 255, 0.43) 4%, rgb(0, 0, 0) 55%);
z-index: -5;
}
#face{
background: url('images/hbb/hbb.gif');
background-color:white;
width:350px;
height:500px;
margin: 150px auto;
border: 10px rgb(228, 92, 92) outset;
/*top: 210px;
position:relative;*/
z-index:-1;
box-shadow: 1px 1px 10px grey radial;
}
.top{
background-image: url('images/hbb/cur-top-short.png');
width:100%;
height:212px;
position:absolute;
top:0px;
left: 0;
z-index: 1;
}
.left{
background-image: url('images/hbb/cur-left.png');
float:left;
}
.right{
background-image: url('images/hbb/cur-right.png');
float:right;
}
.side{
z-index: 0;
position:relative;
top:-180px;
width:250px;
height:1000px;
}
</style>
<title>...</title>
</head>
<body>
<audio src="audios/loop.mp3" autoplay loop>
</audio>
<div class="curtains top">
</div>
<div class="curtains left side">
</div>
<div class="curtains right side">
</div>
<div id="shadow">
<div id="face">
</div>
</div>
</div>
</body>
</html>