-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
152 lines (128 loc) · 2.8 KB
/
styles.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
/* Estilos para el encabezado */
header {
background-color: #333;
color: #424040;
padding: 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
/* Estilos para el logo en el encabezado */
.logo {
max-height: 150px; /* Ajusta la altura máxima del logo */
margin-right: 30px; /* Espacio entre el logo y el título */
}
/* Estilos para los enlaces de redes sociales */
.redes-sociales {
display: flex;
align-items: center;
}
.redes-sociales a {
color: white;
margin-left: 10px;
}
/* Estilos para el contenedor de audio */
#audio-container {
flex-grow: 1;
text-align: center;
}
.audio-player {
display: flex;
align-items: center;
justify-content: center;
background-color: #f8f9fa;
border-radius: 8px;
padding: 10px;
margin: 20px 0;
}
.play-button {
margin-right: 10px;
}
.progress-bar {
flex-grow: 1;
margin: 0 10px;
cursor: pointer;
}
#currentTime, #duration {
font-size: 14px;
}
/* Estilos generales */
body {
background-color: #0B0140;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
section#reseña {
position: relative;
background: url('img/onda.png') no-repeat center center;
background-size: cover;
height: 400px;
max-height: 400px;
text-align: center;
color: white;
}
section #reseña .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5); /* Fondo oscuro semi-transparente */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/* Estilos para el pie de página */
footer {
background-color: #333;
color: #fff;
padding: 20px;
margin-top: 20px;
}
footer a {
text-decoration: none; /* Elimina el subrayado de los enlaces */
}
footer .redes-sociales {
display: flex;
justify-content: center;
margin-top: 10px;
}
footer .redes-sociales a {
margin: 0 10px; /* Espacio entre los íconos */
}
footer .social-icon {
width: 34px; /* Ajusta el tamaño del ícono */
height: 34px; /* Ajusta el tamaño del ícono */
transition: opacity 0.3s; /* Transición para el hover */
}
footer .social-icon:hover {
opacity: 0.8; /* Efecto de opacidad al pasar el mouse */
}
/* Estilos para las tarjetas de noticias */
.card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
/* Estilos para dispositivos móviles */
@media only screen and (max-width: 768px) {
header {
flex-direction: column;
}
#reseña {
text-align: center;
}
.boton-flotante {
display: block;
margin: 20px auto;
}
}