File size: 1,152 Bytes
03769d0
 
 
0879a03
03769d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0879a03
03769d0
 
0879a03
03769d0
 
0879a03
03769d0
 
 
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
.skeleton-loader {
    position: relative;
    width: 150px;
    height: 250px;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .image-container {
    width: 100%;
    height: 80%;
    border-radius: 8px 8px 0 0;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .movie-info {
    width: 100%;
    height: 20%;
    padding: 10px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .skeleton-title, .skeleton-year {
    border-radius: 4px;
    margin: 0 auto;
    animation: pulse 1.5s infinite ease-in-out;
  }
  
  .skeleton-title {
    height: 20px;
    width: 80%;
  }
  
  .skeleton-year {
    height: 16px;
    width: 60%;
    margin-top: 5px;
  }
  
  @keyframes pulse {
    0% {
      background-color: #1b1c24;
    }
    50% {
      background-color: #323443;
    }
    100% {
      background-color: #1b1c24;
    }
  }