aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/video-list/video-list.component.scss
blob: 1f491a6c3fc5a4f41b3e64a8ec2f8fc3c789c1f5 (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
.videos-info {

  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1f1f1;
  height: 40px;
  line-height: 40px;
  width: 765px;
  margin-left: 15px;

  my-video-sort {
    padding-right: 0;
  }

  .videos-total-results {
    font-size: 13px;
    padding-left: 0;
  }

  my-loader {
    display: inline-block;
    margin-left: 5px;
  }
}

.videos-miniatures {
  min-height: 650px;

  my-video-miniature {
    transition: all 0.5s ease;

    &.ng-enter {
      opacity: 0;
    }

    &.ng-enter-active {
      opacity: 1;
    }

    &.ng-leave {
      opacity: 0;
    }
  }

  .no-video {
    margin-top: 50px;
    text-align: center;
  }
}

pagination {
  display: block;
  text-align: center;
}