-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilos.css
168 lines (138 loc) · 2.87 KB
/
estilos.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
:root{
--primary-color: #22254b;
--secondary-color: #373b69;
}
*{
box-sizing: border-box;
}
body{
background-color: var(--primary-color);
font-family: 'Poppins', sans-serif;
margin: 0;
}
header{
padding: 1rem;
display: flex;
justify-content: flex-end;
background-color: var(--secondary-color);
}
#main_title{
color: #fff;
margin-left: 15px;
font-size: 0.8em;
text-align: center;
padding-top: 10px;
}
/* buscador de peliculas */
.search{
background-color: transparent;
border: 2px solid var(--primary-color);
border-radius: 50px;
font-family: inherit;
padding: 0.5rem 1rem;
color: #fff;
}
.search::placeholder{
color: #7378c5;
}
.search:focus{
outline: none;
background-color: var(--primary-color);
}
/* container global de peliculas */
main{
display: flex;
flex-wrap: wrap;
}
/* container pelicula */
.movie{
width: 300px;
margin: 1rem;
background-color: var(--secondary-color);
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
border-radius: 3px;
}
/* imagen pelicula*/
.movie img{
width: 100%;
}
.movie-info{
color: #eee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem 1rem;
letter-spacing: 0.5px;
}
/*titulo pelicula*/
.movie-info h3{
margin-top: 0;
}
/*puntaje*/
.movie-info span{
background-color: var(--primary-color);
padding: 0.25rem 0.5rem;
border-radius: 3px;
font-weight: bold;
}
.movie-info span.green{
color: lightgreen;
}
.movie-info span.orange{
color: orange;
}
.movie-info span.red{
color: red;
}
/* overview, reseña */
/* cubrimos el 101% de la carta de la pelicula con position y despues con transform la bajamos a un 101%*/
.overview{
background-color: #fff;
padding: 1rem;
font-size: 0.9em;
position: absolute;
left: 0;
right: 0;
bottom: 0;
max-height: 100%;
filter: opacity(0.9);
transform: translateY(101%);
/* agregamos el efecto de la transicion a la propiedad transform*/
transition: transform 0.3s ease;
}
/* cuando pasamos el mouse por arriba, volvemos a cubrir la carta de la pelicula con la reseña mediante transform*/
.movie:hover .overview{
transform: translateY(0);
}
footer{
color: #fff;
font-size: 18px;
text-align: center;
margin-bottom: 10px;
}
/* media queries */
/* iphone PLUSES*/
@media screen and (max-width: 768px) {
#main_title{
font-size: .9rem;
}
.movie{
width: 40%;
}
.movie-info{
font-size: 10px;;
}
.movie-info span{
font-size: 10px;
transform: translateX(10px);
}
.overview{
font-size: 0.6rem;
}
footer{
font-size: 1em;
}
}