-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
208 lines (175 loc) · 3.81 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
color: #333;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
font-size: 2.5em;
margin: 0;
}
main {
display: flex;
padding: 20px;
gap: 20px;
}
.blog-posts {
flex: 2;
padding-right: 20px;
}
.blog-posts article {
border: 1px solid #ddd;
padding: 20px;
margin-bottom: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease-in-out;
}
.blog-posts article:hover {
transform: translateY(-5px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.blog-posts h3 {
margin-top: 0;
font-size: 1.5em;
}
.blog-posts p {
margin-bottom: 10px;
line-height: 1.6;
}
.blog-posts a {
color: #333;
text-decoration: none;
font-weight: bold;
}
.blog-posts a:hover {
text-decoration: underline;
}
.sidebar {
flex: 1;
background-color: #fff;
padding: 20px;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.sidebar h2 {
margin-top: 0;
font-size: 1.8em;
margin-bottom: 20px;
}
.sidebar ul {
list-style: none;
padding: 0;
}
.sidebar li {
margin-bottom: 20px;
}
.movie-poster {
width: 100%; /* Ancho del contenedor */
height: auto; /* Altura se ajusta automáticamente para mantener la proporción */
border-radius: 10px;
margin-bottom: 10px;
}
.sidebar a {
display: block;
text-align: center;
text-decoration: none;
color: #333;
font-weight: bold;
}
.sidebar a:hover {
text-decoration: underline;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
position: relative; /* Para posicionar el botón dentro del footer */
bottom: 0; /* Para que el footer se mantenga en la parte inferior */
width: 100%; /* Ancho completo del footer */
}
#backToTop {
position: fixed;
bottom: 20px;
right: 20px;
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
display: none; /* Oculto por defecto */
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
transition: transform 0.2s ease-in-out;
}
#backToTop:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* Estilos para la sección de películas */
.sidebar ul li {
border: 1px solid #ddd;
padding: 15px;
border-radius: 10px;
margin-bottom: 15px;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease-in-out;
}
.sidebar ul li:hover {
transform: translateY(-5px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.sidebar ul li h3 {
margin-top: 0;
font-size: 1.2em;
margin-bottom: 10px;
}
.sidebar ul li p {
margin-bottom: 10px;
line-height: 1.5;
}
.movie-section {
display: none; /* Oculto por defecto */
}
.movie-info {
text-align: center;
}
.movie-info img {
width: 300px; /* Ajusta el tamaño de la imagen */
height: auto;
margin-bottom: 10px;
}
.movie-info h3 {
font-size: 2em;
margin-bottom: 10px;
}
.movie-info p {
margin-bottom: 20px;
line-height: 1.5;
}
/* Media Query para dispositivos móviles */
@media (max-width: 768px) {
main {
display: block; /* Mostrar elementos en bloque para dispositivos móviles */
}
.blog-posts {
padding-right: 0; /* Eliminar el padding derecho en dispositivos móviles */
}
.sidebar {
margin-top: 20px; /* Agregar margen superior a la barra lateral en dispositivos móviles */
}
.movie-info img {
width: 90%; /* Ajustar el ancho de la imagen en dispositivos móviles */
}
}