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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.timeline-controls {
  position: relative;
  background: var(--color-neutral-background-bold);
  padding: 4px;
 
  &__buffering {
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    position: absolute;
    background-color: var(--color-primary-content);
    overflow: hidden;
 
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 25%;
      height: 100%;
      will-change: left;
      background-color: var(--color-primary-content-subtle);
      animation: buffering-media 800ms ease-out infinite;
    }
  }
 
  &__counter {
    height: 36px;
    min-width: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-neutral-surface);
    border-radius: var(--corner-radius-smaller);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-neutral-content);
    padding: 0 8px;
 
    span {
      opacity: 0.4;
      padding-left: 5px;
      font-weight: 400;
    }
 
    input {
      width: 100%;
      height: 100%;
      border: none;
      background: none;
      padding: 0;
      margin: 0;
      font-size: 16px;
      line-height: 19px;
      text-align: center;
    }
  }
 
  &__main-controls {
    display: flex;
    max-width: 310px;
    justify-content: space-between;
    gap: var(--spacing-tight)
  }
 
 
  &__group {
    gap: 4px;
  }
 
  .button {
    background: none;
    width: 36px;
    height: 36px;
    color: var(--color-neutral-content);
    border: 1px solid transparent;
    cursor: pointer;
 
    &:hover {
      border: 1px solid var(--color-neutral-border);
    }
 
    &:disabled {
      opacity: 0.3;
    }
  }
 
  &__time {
    height: 36px;
    display: flex;
    font-size: 16px;
    border-radius: 4px;
    color: var(--color-neutral-content-subtler);
    border: 1px solid var(--color-neutral-border);
 
    &-section {
      display: flex;
      height: 100%;
      padding: 0 8px;
      align-items: center;
 
      span {
        opacity: 0.48;
 
        &::before {
          content: ":";
        }
      }
 
      &+& {
        border-left: 1px solid var(--color-neutral-border);
      }
    }
  }
}
 
.timeline-time {
  padding: 0 5px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  color: var(--color-neutral-content-subtler);
 
  span {
    font-size: 11px;
    min-width: 22px;
    border-radius: 2px;
    text-align: center;
    margin-left: 5px;
    display: inline-block;
    color: var(--color-neutral-content-subtle);
    background: var(--color-neutral-surface);
  }
}
 
@keyframes buffering-media {
  0% {
    left: -100%;
  }
 
  100% {
    left: 100%;
  }
}