-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (69 loc) · 1.28 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
73
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-transform: uppercase;
}
body {
font-family: 'Roboto Condensed', sans-serif;
background: #e5ecf4;
color: #1d1d1d;
}
.title {
bottom: 0;
background: #2660a4;
width: 100%;
display: flex;
justify-content: center;
padding: 15px;
}
.title p {
font-size: 22px;
color: #fff;
font-weight: 600;
}
.categorias {
bottom: 0;
width: 100%;
display: flex;
justify-content: center;
padding: 15px;
gap: 10px;
}
.categorias button {
cursor: pointer;
border: none;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
height: 40px;
width: 200px;
background: #406e8e;
color: #fff;
border-radius: 20px;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 600;
transition: background-color .3s;
}
.categorias button:hover {
background-color: #729fc0;
}
.contenedor {
width: 90%;
max-width: 1000px;
margin: 20px auto 25px auto;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
}
.contenedor .pelicula .poster {
width: 100%;
margin-bottom: 10px;
border-radius: 15px;
transition: box-shadow .3s;
}
.contenedor .pelicula .poster:hover{
box-shadow: 0 0 25px rgba(33, 33, 33, .4);
}