-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (52 loc) · 833 Bytes
/
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
html, body {
padding: 0;
margin: 0;
background: black;
color: white;
font-family: sans-serif;
}
#main_svg {
width: 100%;
height: calc(100vh - 155px - 20px);
object-fit: contain;
}
#control {
margin: 10px;
}
#row0 {
display: grid;
grid-template-rows: auto;
grid-template-columns: 1fr 1fr;
align-items: end;
justify-items: start;
}
#play {
width: 6em;
}
#heading {
font-variant: small-caps;
font-size: x-large;
}
.label_slider {
margin-top: 10px;
}
#position_display_precise {
display: none;
}
#speed_display {
width: 4em;
text-align: center;
}
#position_display_slider {
width: 2em;
text-align: center;
}
#caption {
display: grid;
grid-template-rows: auto;
grid-template-columns: auto;
align-items: stretch;
justify-items: center;
font-variant: small-caps;
height: 20px;
}