-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.html
More file actions
executable file
·97 lines (75 loc) · 1.5 KB
/
display.html
File metadata and controls
executable file
·97 lines (75 loc) · 1.5 KB
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
<style type="text/css">
#apDiv1 {
position: absolute;
left: 50px;
top: 383px;
width: 573px;
height: 236px;
z-index: 5;
}
@font-face{
font-family: "LCD2U";
src: url('http://fontsforweb.com/public/fonts/525/LCD2U.eot');
src: local("LCD2 Ultra"), url('http://fontsforweb.com/public/fonts/525/LCD2U.ttf') format("truetype");
}
#display{
position: absolute;
top: 21px;
width: 600px;
height: 280px;
padding: 16px;
font-family: LCD2U;
text-align: right;
font-size: 120px;
line-height: 280px;
background-color: #7992AA;
border-radius: 50%;
box-shadow: inset 0px 3px 1px white,
inset 0px -3px 1px black,
-3px -4px -0px #7992AA;
}
#displayBg{
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background-color: #000;
box-shadow: 0px -3px 1px black,
0px 3px 1px white;
}
#displayShadow{
position:absolute;
margin-right: 0.5em;
right:0;
color: #200;
text-shadow: 0px 0px 0.1em #200;
}
#displayText{
position:absolute;
margin-right: 0.5em;
right:0;
color: #F00;
text-shadow: 0px 0px 0.1em red;
}
</style>
</head>
<body>
<div id="display">
<div id="displayBg">
<div id="displayShadow">8:88.888</div>
<div id="displayText">0.000</div>
</div>
</div>
<div id="apDiv1"><img src="untitled-3_3.jpg" width="779" height="640"></div>
<script type="text/javascript">
/* JAVASCRIPT GOES HERE */
window.onload=function(){
};
</script>
</body>
</html>