Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
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
.timeline-frames {
  --frame-size: 10px;
  --view-size: 0;
  --view-height: 64px;
 
  width: 100%;
  min-height: var(--view-height);
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
  background: var(--color-neutral-surface);
 
  &__controls {
    height: 0;
    width: 100%;
  }
 
  &__labels-bg {
    top: 0;
    left: 0;
    height: 100%;
    z-index: 3;
    background-color: var(--color-neutral-surface);
    position: absolute;
    box-shadow: -1px 0 0 rgb(var(--color-neutral-shadow-raw) / 5%);
  }
 
  &__filler {
    min-width: 100%;
    min-height: 100%;
    height: min-content;
    white-space: nowrap;
    width: calc(var(--view-size) + var(--offset));
  }
 
  &__background {
    inset: 0 0 0 var(--offset);
    z-index: 1;
    position: absolute;
    background-color: rgb(var(--color-neutral-shadow-raw) / 5%);
  }
 
  &__scroll {
    z-index: 3;
    width: 100%;
    height: var(--view-height);
    overflow: hidden;
    position: relative;
    box-sizing: content-box;
    padding-top: 24px;
    border-top: 1px solid var(--color-neutral-border);
    background-image: repeating-linear-gradient(90deg, var(--color-neutral-background),
        var(--color-neutral-background) var(--frame-width),
        transparent var(--frame-width),
        transparent calc(var(--frame-width) + 1)),
      linear-gradient(0deg, var(--sand_100), transparent 50%);
  }
 
  &__indicator {
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    position: absolute;
    width: var(--frame-size);
    box-shadow: inset 0 1px var(--color-neutral-border), inset 0 -1px var(--color-neutral-border);
    background: linear-gradient(0deg, rgb(var(--color-neutral-shadow-raw) / 5%), rgb(var(--color-neutral-shadow-raw) / 5%)), var(--color-neutral-background);
 
    &::before {
      inset: -5px;
      content: "";
      display: block;
      cursor: col-resize;
      position: absolute;
    }
 
    &::after {
      top: 100%;
      left: 0;
      content: "";
      width: 100%;
      height: var(--view-height);
      display: block;
      position: absolute;
      pointer-events: none;
      background: linear-gradient(180deg, rgb(var(--color-neutral-shadow-raw) / 15%) -1.28%, rgb(var(--color-neutral-shadow-raw) / 15%) 69.21%, rgb(var(--color-neutral-shadow-raw) / 0%) 100%), rgb(var(--color-neutral-shadow-raw) / 5%);
    }
  }
 
  &__hover {
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: var(--frame-size);
    position: absolute;
    pointer-events: none;
    background: linear-gradient(0deg, rgb(var(--color-neutral-shadow-raw) / 5%), rgb(var(--color-neutral-shadow-raw) / 5%)), var(--color-neutral-surface);
 
    &::before {
      top: 0;
      left: 50%;
      height: 12px;
      color: var(--color-neutral-content-subtler);
      display: flex;
      padding: 0 4px;
      min-width: 100%;
      font-size: 10px;
      align-items: center;
      justify-content: center;
      width: min-content;
      position: absolute;
      content: attr(data-frame);
      transform: translateX(-50%);
      background-color: var(--color-neutral-surface-inset);
    }
  }
 
  &__keyframes {
    width: var(--view-size);
  }
 
  &__keypoints {
    position: relative;
  }
}