File size: 1,420 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
.collection-item {
  position: relative;

  &:hover &__text {
    visibility: visible;
    transition: opacity 0.62s, ease 1s;
    opacity: 1;
  }

  &:hover &__addtolist {
    visibility: visible;
    transition: opacity 0.62s, ease 1s;
    opacity: 1;
  }

  &:hover &__movie-image {
    transition: opacity 0.62s, ease 1s;
    opacity: 0.5;
  }

  &__movie-image {
    width: 300px;
    z-index: 1;

    @media screen and (max-width: 800px) {
      width: 230px;
    }
  }

  &__text {
    position: absolute;
    bottom: 24%;
    left: 2%;
    right: 1%;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.62s, ease 1s;
    font-size: 10px;
    text-shadow: 3px 3px 4px black;

    @media screen and (max-width: 800px) {
      display: none;
    }
  }

  &__title {
    color: white;
    font-size: 0.9rem;

    @media screen and (max-width: 800px) {
      font-size: 0.6rem;
    }
  }

  &__overview {
    color: white;

    @media screen and (max-width: 800px) {
      font-size: 0.6rem;
    }
  }

  &__addtolist {
    position: absolute;
    bottom: 5%;
    left: 1.7%;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    font-size: 10px;
    text-shadow: 3px 3px 4px black;
    transition: opacity 0.62s, ease 1s;

    @media screen and (max-width: 800px) {
      display: none;
    }
  }
}