movieChart.module.scss 553 Bytes
Newer Older
Jiwon Yoon's avatar
Jiwon Yoon committed
1
2
.layer{
    position: relative;
Jiwon Yoon's avatar
Jiwon Yoon committed
3
}
Jiwon Yoon's avatar
Jiwon Yoon committed
4
5
// .poster{
//     opacity: 1;
Jiwon Yoon's avatar
Jiwon Yoon committed
6
//     &:hover{
Jiwon Yoon's avatar
Jiwon Yoon committed
7
//         opacity: 0.3;
Jiwon Yoon's avatar
Jiwon Yoon committed
8
//     }
Jiwon Yoon's avatar
Jiwon Yoon committed
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
// }
.description{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color:rgba(0, 0, 0, 0.6);
    text-align: center;
    color:white;
    //ellipsis
    text-overflow: ellipsis;
    white-space: pre-line;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    &:hover{
        opacity: 1;
    }
}
.title{
    
}