aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/video-watch-playlist.component.scss
blob: 5da55c2f8ddfa3d8947059afa8f3e4c085c8e537 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@import '_variables';
@import '_mixins';
@import '_bootstrap-variables';
@import '_miniature';

.playlist {
  min-width: 200px;
  max-width: 470px;
  height: 66vh;
  background-color: var(--mainBackgroundColor);
  overflow-y: auto;
  border-bottom: 1px solid $separator-border-color;

  .playlist-info {
    padding: 5px 30px;
    background-color: #e4e4e4;

    .playlist-display-name {
      font-size: 18px;
      font-weight: $font-semibold;
      margin-bottom: 5px;
    }

    .playlist-by-index {
      color: $grey-foreground-color;
      display: flex;

      .playlist-by {
        margin-right: 5px;
      }

      .playlist-index span:first-child::after {
        content: '/';
        margin: 0 3px;
      }
    }
  }

  my-video-playlist-element-miniature {
    /deep/ {
      .video {
        .position {
          margin-right: 0;
        }

        .video-info {
          .video-info-name {
            font-size: 15px;
          }
        }
      }

      my-video-thumbnail {
        @include thumbnail-size-component(90px, 50px);
      }
    }
  }
}