aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/video/abstract-video-list.scss
blob: 913fcfe22320030f7e99060d23fbe4b2e54e375d (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
@import '_mixins';

.videos {
  text-align: center;

  my-video-miniature {
    text-align: left;
  }
}

.title-page.title-page-single {
  margin-right: 5px;
}

my-video-feed {
  display: inline-block;
}

@media screen and (max-width: 500px) {
  .videos {
    text-align: center;

    /deep/ .video-miniature {
      padding-right: 0;
      height: auto;
      width: 100%;
      margin-bottom: 20px;

      .video-miniature-information {
        width: 100% !important;

        span {
          width: 100%;
        }
      }

      /deep/ .video-thumbnail {
        width: 100%;
        height: auto;

        img {
          width: 100%;
          height: auto;
        }
      }
    }
  }
}