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
.video-canvas {
  width: max-content;
  height: max-content;
  position: relative;
 
  canvas {
    display: block;
  }
 
  &__view canvas {
    width: 100%;
    height: 100%;
  }
 
  &__toolbar {
    display: flex;
    justify-content: space-between;
  }
 
  &__loading {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background-color: var(--color-neutral-surface);
  }
 
  &__buffering {
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    font-size: 12px;
    position: absolute;
    padding: 2px 7px;
    text-align: center;
    background-color: var(--color-neutral-background);
    background-image: repeating-linear-gradient(90deg, var(--color-primary-content) 0, var(--color-primary-content-subtle) 120px, var(--color-primary-content) 240px);
    animation: buffering 1.2s linear infinite;
  }
}
 
.spinner {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid var(--persimmon_400);
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: spin 1.2s linear infinite;
}
 
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
 
  100% {
    transform: rotate(360deg);
  }
}
 
@keyframes buffering {
  0% {
    background-position: 0 0;
  }
 
  100% {
    background-position: 240px 0;
  }
}