-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 938 Bytes
/
style.css
File metadata and controls
55 lines (48 loc) · 938 Bytes
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
body{
background-color: aqua;
}
.contenedor{
width: 90%;
margin: 40px auto 100px auto;
display: grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}
.contenedor .pelicula{
text-align: center;
}
.contenedor .pelicula .titulo{
font-size: 1.2rem;
font-weight: 600;
}
.contenedor .pelicula .poster{
width: 100%;
margin-bottom: 10px;
border-radius: 1rem;
}
.paginacion{
/* position: ; */
bottom: 0;
/* background-color:white; */
display: flex;
justify-content: center;
gap: 2rem;
padding: 1rem 0;
width: 100%;
}
.paginacion button{
cursor: pointer;
border: none;
display:flex;
align-items: center;
justify-content: center;
text-align: center;
width: 200px;
height: 50px;
background-color: black;
border-radius: 2rem;
color: white;
/* font-family: ; */
font-weight:600;
transition: .3s ease all;
}