-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (62 loc) · 1.03 KB
/
style.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
background: #1d1d1d;
color: #fff;
}
.contenedor {
width: 90%;
max-width: 1000px;
margin: 40px auto 40px auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}
.populares {
color: #fff;
text-align: center;
margin-top: 2rem;
}
.contenedor .pelicula {
text-align: center;
}
.contenedor .pelicula .titulo {
font-size: 16px;
font-weight: 600;
}
.contenedor .pelicula .poster {
width: 100%;
margin-bottom: 10px;
border-radius: 15px;
}
.paginacion {
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
gap: 20px;
padding: 10px;
}
.paginacion button {
cursor: pointer;
border: none;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 50px;
width: 200px;
background: #241744;
color: #fff;
border-radius: 100px;
font-family: 'Montserrat', sans-serif;
font-weight: 600;
transition: .3s ease all;
}
.paginacion button:hover {
background: #137c32;
}