-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
190 lines (150 loc) · 3.2 KB
/
index.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
*{
font-family: 'Lato', sans-serif;
text-decoration: none;
list-style: none;
box-sizing: border-box;
padding: 0;
margin: 0
}
/* Header */
header {
width: 100%;
position: fixed;
margin: 0;
background-color: #fbfcfcf4;
}
/* Nav*/
nav {
height: 100px;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
width: 140px;
margin-left: 20px;
}
.bar-btn {
font-size: 25px;
color: #268aa3;
margin-right: 20px;
cursor: pointer;
}
.nav-menu {
position: fixed;
width: 100%;
height: 0;
top: 100px;
background: rgba(17, 151, 160, 0.321);
text-align: center;
transition: all 0.5s;
}
.nav-menu li {
display: none;
line-height: 30px;
margin: 50px 0;
transition: all 0.5s;
}
.nav-menu li a {
color: #0989c9;
font-size: 16px;
text-transform: uppercase;
font-weight: 600;
}
.nav-menu li a:hover {
color: rgb(165, 32, 11);
transform: scale(1.2);
transition: 0.3s;
}
/* Ocultamos el checkbox */
#check {
display: none;
}
#check:checked ~ nav .nav-menu {
height: 100vh;
}
/* Responsivo en dispositivos */
@media screen and (min-width: 800px) {
.logo {
margin-left: 50px;
}
nav {
height: 100px;
}
.bar-btn {
display: none;
}
.nav-menu {
position: relative;
height: auto;
top: 0;
background: none;
transition: none;
text-align: right;
margin-right: 50px;
}
.nav-menu li {
display: inline-block;
line-height: 100px;
margin: 0 20px;
transition: none;
}
.nav-menu li a {
font-size: 12px;
}
}
/*footer*/
footer {
background-color: #268aa3;
color: #fff;
font-family: 'Lato', sans-serif;
padding: 10px 0;
text-align: center;
}
footer section {
padding: 0;
}
#mapa{
width: 200px;
height: 150px;
}
#pie_pagina {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
#pie_pagina section {
width: 30%; /* Cada sección ocupa el 20% del ancho del contenedor */
padding: 20px 0;
box-sizing: border-box;
}
#suscripcion article {
margin-bottom: 100px; /*separacion de los h3*/
}
#contacto h3, #contacto iframe, #contacto p {
margin-bottom: 10px;
}
#logodefooter {
flex-basis: 30%; /* El logotipo ocupa el 30% del ancho del contenedor */
text-align: center;
}
#redes_sociales {
width: 100%;
text-align: center;
}
#redes_sociales a {
font-size: 38px; /* Ajusta el tamaño de fuente */
margin-right: 24px; /* Agrega un margen derecho entre los iconos */
color: #fbfcfc; /* Cambia el color a blnco */
}
#redes_sociales a i:hover {
color: rgb(204, 0, 255); /* Cambia el color al pasar el mouse por encima */
transform: scale(1.2); /* Aumenta el tamaño del icono al 120% al pasar el mouse por encima */
}
@media (max-width: 700px) {
#pie_pagina section {
width: 100%; /* En pantallas menores a 700px, cada sección ocupa el 100% del ancho del contenedor */
}
}
/* fin del footer */