-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRespaldo
54 lines (52 loc) · 963 Bytes
/
Respaldo
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
.content-movies{
display: grid;
/* grid-column: repeat(5, 250px); */
/* grid-gap: 20px; */
height: 141px;
width: 250px;
position: relative;
/* height: 100%; */
/* grid-template-rows: ; */
}
.movie-item{
}
.movie-image{
margin: 0;
}
.m-image{
height: 100%;
width: 100%;
}
.movie-description{
background: rgba(252, 100, 99, .6);
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: none;
color: white;
/* text-align: justify; */
padding: 10px;
font-size: 10px;
}
.movie-item:hover .movie-description{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: flex-end;
}
.movie-title, .description{
width: 100%;
margin: auto;
/* font-weight: 600; */
display: inline-block;
justify-content: center;
font-size: 12px;
}
.movie-title{
text-align: center;
}
.movie-description{
text-align: justify;
}