aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass/player/stats.scss
blob: c6388ed133be62a455e98a69193552bde10fe61a (plain) (blame)
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
@import './_player-variables';

$stats-width: 420px;
$contextmenu-background-color: rgba(0, 0, 0, 0.6);

.video-js {

  .vjs-stats-content {
    @include transition(opacity 0.1s);

    position: absolute;
    background-color: $contextmenu-background-color;
    padding: 5px 0;
    border-radius: 4px;
    width: $stats-width;
    min-width: 27em;
    max-width: calc(100vw - 20px);
    left: 10px;
    top: 10px;
    z-index: 64;
    font-size: 12px;
    line-height: 1.2;
  }

  .vjs-stats-close {
    cursor: pointer;
    position: absolute;
    right: 3px;
    top: 3px;
    padding: 0;
  }

  .vjs-stats-list > div > div {
    display: inline-block;
    font-weight: 600;
    padding: 0 .5em;
    text-align: end;
    width: 11.5em;
    white-space: nowrap;
  }
}