blob: f581547bf98fc8202830044323469aee9ed03d8f (
plain)
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
|
* {
}
.body {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
background: linear-gradient(
0deg,
rgba(0, 0, 64, 0.5),
rgba(64, 64, 128, 0.5)
);
padding: 0;
}
canvas {
display: block;
}
.timeline {
display: flex;
flex-direction: row;
border-left: 1px solid #333;
}
.ticks {
position: relative;
height: 20px;
}
.ticks .tick {
position: absolute;
left: 0;
width: 4px;
height: 1px;
background: #ddd;
}
.ticks .tickLabel {
position: absolute;
left: 6px;
font-size: 12px;
width: 40px;
margin-top: -7px;
}
|