-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (61 loc) · 1.22 KB
/
style.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
#display_container {
display: inline-flex;
justify-content: center;
align-items: center;
}
#binary_display, #binary_display_opacity {
width: 560px;
height: 60px;
padding: 2px;
background-color: black;
}
#binary_display_opacity {
position: absolute;
opacity: 0.5;
}
#timer_display {
position: absolute;
display: flex;
align-items: baseline;
color: white;
font-size: 50px;
font-family: Arial;
}
#timer_display_ms {
font-size: 30px;
}
#timer_display.timer_display_off {
display: none;
}
#binary_display {
display: grid;
grid-template-columns: repeat(6, 1fr);
}
#binary_display > div {
margin: 2px;
padding: 2px;
background-color: grey;
transition: background-color 300ms ease;
}
#binary_display > div.cell_on {
background-color: white;
transition: background-color 300ms ease;
}
#binary_display.standby_blink > div {
animation: standby_blink 5s infinite;
}
@keyframes standby_blink {
0% {
background-color: grey;
}
50% {
background-color: white;
}
100% {
background-color: grey;
}
}
div.timer_details, div.start_timer_from {
display: grid;
grid-template-columns: repeat(2, 150px);
}