-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (125 loc) · 2.87 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Les Paul's 96th Birthday</title>
<link href="http://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
</head>
<body>
<style>
#hplogo:active, #hplogo:focus {
outline:none;
}
#hplogo-g {
background:url(src/guitar11-hp-sprite.png) no-repeat 0 0;
height:175px;
position:relative;
width:474px;
}
#hplogo-click {
background:url(src/guitar11-hp-sprite.png) no-repeat -2000px -2000px;
cursor:pointer;
height:130px;
left:0;
position:absolute;
top:0;
width:474px;
}
#hplogo-lcd {
height:30px;
left:70px;
position:absolute;
top:129px;
width:200px;
}
#hplogo-lcd-icon {
background:url(src/guitar11-hp-sprite.png) no-repeat -580px -162px;
cursor:pointer;
height:0;
position:absolute;
width:0;
}
#hplogo-lcd-text {
background:transparent;
border:0 none;
color:#666;
cursor:text;
font-family:"VT323",arial,sans-serif;
font-size:14px;
left:77px;
position:absolute;
top:134px;
text-decoration:none;
width:182px;
}
#hplogo-lcd-screen {
background:url(src/guitar11-hp-sprite.png) no-repeat -2000px -2000px;
height:20px;
left:52px;
position:absolute;
top:134px;
width:214px;
}
#hplogo-on {
background:url(src/guitar11-hp-sprite.png) no-repeat -809px -39px;
height:37px;
left:272px;
position:absolute;
top:123px;
width:62px;
}
#hplogo-led {
background:url(src/guitar11-hp-sprite.png) no-repeat -2000px -2000px;
height:21px;
left:292px;
position:absolute;
top:133px;
width:21px;
}
.hplogo-str {
background:url(src/guitar11-hp-sprite.png) no-repeat -530px -60px;
height:20px;
position:absolute;
width:255px;
}
#hplogot {
-webkit-box-shadow:5px 5px 10px #ddd;
-moz-box-shadow:5px 5px 10px #ddd;
box-shadow:5px 5px 10px #ddd;
-webkit-transition:opacity 0.5s ease-out;
-moz-transition:opacity 0.5s ease-out;
-o-transition:opacity 0.5s ease-out;
transition:opacity 0.5s ease-out;
-webkit-user-select:none;
-moz-user-select:none;
user-select:none;
background-color:#ffffca;
border:1px solid #b5b5b5;
cursor:pointer;
display:none;
font:normal 9pt arial,sans-serif;
left:128px;
opacity:0;
padding:2px 3px;
position:absolute;
top:16px;
white-space:nowrap;
}
</style>
<div style="font-family:arial,sans-serif;margin:80px auto;text-align:center;width:474px">
<div id=hplogo>
<div id=hplogo-g>
<div id=hplogo-click onclick="google.doodle.go();"></div>
<div id=hplogo-lcd-screen></div>
<div id=hplogo-lcd-icon></div>
<input id=hplogo-lcd-text value="" autocomplete=off onclick="this.focus();this.select()" readonly=readonly>
<div id=hplogo-on></div>
<div id=hplogo-led></div>
<div id=hplogot>Les Paul's 96th Birthday</div>
</div>
<div style="height:0;left:-100px;overflow:hidden;position:absolute;top:-100px;width:0">
<input id=hplogo-i></div>
</div>
<script type="text/javascript" src="src/lespaul.js"></script>
</body>
</html>