-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
137 lines (115 loc) · 2.84 KB
/
Copy pathstyle.css
File metadata and controls
137 lines (115 loc) · 2.84 KB
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
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
/* Estilos globales */
body {
font-family: 'Nunito', sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
/* Encabezado */
header {
background-color: #ffffff;
padding: 20px 0;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* Menú interactivo */
nav {
display: flex;
justify-content: center;
align-items: center;
gap: 20px; /* Reduce el espacio entre los elementos */
}
nav a {
text-decoration: none;
color: #000; /* Cambié a negro para un contraste más fuerte */
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
background-color: #ffd4e2; /* Fondo rosa para los enlaces */
transition: background-color 0.3s ease, color 0.3s ease;
}
nav a:hover {
background-color: #ffb3c6; /* Un tono de rosa más oscuro al pasar el mouse */
color: #000;
}
/* Espacio para el ícono */
.nav-icon {
display: flex;
justify-content: center;
align-items: center;
width: 40px; /* Tamaño del contenedor del ícono */
height: 40px;
background-color: #ffd4e2; /* Fondo rosa para el contenedor del ícono */
border-radius: 50%; /* Redondea el fondo */
}
.nav-icon img {
width: 24px; /* Tamaño del ícono */
height: 24px;
}
/* Carrusel */
.carousel-inner img {
width: 100%;
height: auto;
}
/* Presentación debajo del carrusel */
.presentacion {
background-color: #ffffff;
padding: 20px;
}
/* Sección Sinopsis */
#sinopsis {
background-color: #fff;
padding: 40px;
}
#sinopsis img {
width: 100%;
border-radius: 20px;
}
#sinopsis h2 {
font-family: 'Nunito', sans-serif;
font-size: 24px;
font-weight: 600;
margin-bottom: 20px;
color: #ffd4e2; /* Título en rosa */
}
#sinopsis p {
font-family: 'Nunito', sans-serif;
font-size: 16px;
color: #333;
}
/* Sección Personajes */
#personajes {
background-color: #ffd4e2; /* Fondo rosa para toda la sección */
padding: 40px;
text-align: center;
}
#personajes img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
margin-bottom: 10px;
border: 4px solid #fff; /* Borde blanco para resaltar las imágenes */
}
#personajes h3 {
font-family: 'Nunito', sans-serif;
font-size: 20px;
margin-top: 10px;
color: #000; /* Título en negro */
}
#personajes p {
font-family: 'Nunito', sans-serif;
font-size: 16px;
color: #696969;
}
/* Sección OST */
#ost {
background-color: #fff;
padding: 40px;
}
/* Pie de página */
footer {
background-color: #f2f2f2;
padding: 20px 0;
text-align: center; /* Alinea el texto al centro */
}