aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/video-thumbnail.component.scss
blob: 1dd8e5338042a397ff97ef5269825f6777312ecd (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
@import '_variables';
@import '_mixins';

.video-thumbnail {
  display: inline-block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: $video-thumbnail-width;
  height: $video-thumbnail-height;
  background-color: #ececec;

  &:hover {
    text-decoration: none !important;
  }

  @include disable-outline;
  &.focus-visible {
    box-shadow: 0 0 0 2px var(--mainColor);
  }

  img {
    width: $video-thumbnail-width;
    height: $video-thumbnail-height;

    &.blur-filter {
      filter: blur(5px);
      transform : scale(1.03);
    }
  }

  .video-thumbnail-overlay {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: $font-bold;
    border-radius: 3px;
    padding: 0 5px;
  }
}