-
Notifications
You must be signed in to change notification settings - Fork 0
/
timer.css
executable file
·169 lines (147 loc) · 2.62 KB
/
timer.css
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
@charset "UTF-8";
/* CSS Document */
#timer {
position: fixed;
left: 2em; right: 2em;
bottom: 2em;
height: 150px;
margin:auto;
-min-width: 980px;
max-width: 1200px;
z-index: 2;
background-color: #86A0B1;
-border: 2px outset #839CAE;
border-radius: 150px;
padding: 10px;
-moz-box-shadow: 0px 5px 20px #000000;
-webkit-box-shadow: 0px 5px 20px #000000;
box-shadow:
inset 0px -3px 0px rgba(0,0,0,0.25),
inset 0px 2px 1px rgba(255,255,255,1),
0px 5px 10px #000000;
}
#leftPad {
position: absolute;
left: 6px;
top: 6px;
width: 35%;
bottom: 6px;
z-index: 2;
background-color: #3A3134;
-border: 2px outset #647682;
border-radius: 100px 8px 8px 100px;
text-align:center;
cursor: pointer;
}
#rightPad {
position: absolute;
right: 6px;
top: 6px;
width: 35%;
bottom: 6px;
z-index: 3;
background-color: #3A3134;
border-radius: 8px 100px 100px 8px;
text-align: center;
cursor: pointer;
}
#centerTimer {
position: absolute;
left: 36%;
top: 6px;
width: 28%;
bottom: 6px;
z-index: 8;
background-color: #C1BFB4;
border-radius: 4px;
box-shadow: 0px -2px 0px rgba(255,255,255,0.25),
0px 1px 3px black,
inset 0px 0px 1px rgba(0,0,0,0.5),
inset 0px 2px 0px rgba(255,255,255,0.25);
border:2px solid #86A0B1;
text-align:center;
}
#save {
position: absolute;
left: 64px;
top: 44px;
width: 17px;
height: 19px;
z-index: 10;
background-color: #494743;
}
#redLed {
position: absolute;
left: 50px;
top: 0px;
}
#greenLed {
position: absolute;
left: 51px;
top: 22px;
}
#down {
position: absolute;
left: 35px;
top: 45px;
width: 18px;
height: 18px;
z-index: 13;
background-color: #494743;
}
#power {
position: absolute;
left: 7px;
top: 11px;
width: 32px;
height: 29px;
z-index: 8;
background-color: #494743;
}
#reset {
position: absolute;
left: 79px;
top: 11px;
width: 29px;
height: 30px;
z-index: 9;
background-color: #494743;
}
#leftPad svg, #rightPad svg{
height: 120px;
margin: auto;
margin-top: 30px;
}
.lcd {
position: relative;
display: inline-block;
width: 104px; height: 49px;
margin: 10px 5px 0 10px;
background-color: #87877C;
border: 2px inset #615F59;
padding: 2px;
-moz-box-shadow: inset 0px 2px 5px #000000;
-webkit-box-shadow: inset 0px 2px 5px #000000;
box-shadow: inset 0px 2px 5px #000000;
text-align: right;
font-size: 26px;
font-family: LCD2U, Arial, Helvetica, sans-serif;
}
.lcd div{
background-color: #87877C;
}
.lcd div div{
position:absolute;
right: 0.1em;
left: 0;
text-align:right;
line-height: 100%;
background-color:transparent;
}
.lcd div :first-child{
color: black;
opacity: 0.1;
}
.lcd div :last-child{
color: black;
}