-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
436 lines (366 loc) · 7.74 KB
/
styles.css
File metadata and controls
436 lines (366 loc) · 7.74 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
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
html {
font-family: 'Jost', sans-serif;
}
body {
margin: 0;
}
.blanco {
color: #ffffff;
}
.amarillo {
color: #ffca41;
}
.seccion--titulo {
text-align: center;
margin: 30px 0 40px;
font-weight: 800;
font-size: 32px;
}
/* Header */
.encabezado {
position: sticky;
top: 0;
z-index: 2;
width: 100%;
height: min(10vw, 80px);
background-color: #14213D;
display: flex;
}
nav {
width: 100%;
height: min(10vw, 80px);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 50px 0 20px;
}
.logo {
height: min(10vw, 80px);
}
.menu {
text-decoration: none;
font-size: min(3vw, 24px);
/* Ajusta el tamaño de la letra */
}
/* Cambiar el color al pasar el ratón */
.menu:hover {
color: #ffca41;
/* Puedes cambiar esto al color que desees */
}
/* Agregar bordes al pasar el ratón */
.menu:hover {
border-bottom: 2px solid #ffca41;
/* Puedes cambiar esto al color y ancho que desees */
}
/* Inicio */
.inicio {
background-image: url(imagenes/fondo.jpg);
width: 100%;
height: min(85vh, 50vw);
background-position: center 20%;
background-size: cover;
padding: 1vw 0;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.inicio--titulo {
margin-top: 0;
text-align: center;
font-size: 7vw;
font-weight: 700;
}
.inicio--subtitulo {
font-size: 3vw;
font-weight: 400;
margin-left: 8vw;
margin-bottom: 10vh;
text-align: left;
}
/* Nosotros */
.Nosotros {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 20px;
}
.gotech,
.titulo--caracteristicas,
.titulo-equipo,
.contenido--somos {
margin-bottom: 15px;
font-size: 22px;
font-weight: bold;
}
.Developers {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
background-color: #14213D;
}
.foto {
position: relative;
overflow: hidden;
margin: 10px;
padding: 20px;
max-width: 300px;
/* Ajusta según tus necesidades */
}
.nosotros--foto {
display: block;
max-width: 150px;
height: auto;
text-align: center;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: black;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
padding: 5px;
font-size: 12px;
}
.foto:hover .overlay {
opacity: 1;
}
.texto {
max-width: 80%;
/* Ajusta según tus necesidades */
text-align: center;
margin: 0 auto;
z-index: 1;
/* Asegura que el texto esté por encima de la imagen */
}
.Developers--nombre {
margin: 10px 0;
color: #ffca41;
font-size: 14px;
text-align: center;
z-index: 2;
/* Asegura que el nombre y la función estén por encima del texto */
}
.Developers--Funcion {
margin: 10px 0;
font-size: 14px;
color: white;
text-align: center;
z-index: 2;
/* Asegura que el nombre y la función estén por encima del texto */
}
/*Servicios*/
.servicios--div {
display: flex;
justify-content: space-around;
margin: 1%;
}
.servicios--contenedor {
position: relative;
border-radius: 20px;
border: 8px solid #14213D;
justify-content: center;
align-items: center;
display: flex;
overflow: hidden;
cursor: pointer;
margin: 1%;
width: 33%;
}
.servicios--img {
height: 400px;
}
.servicios--capa {
position: absolute;
width: 100%;
height: 100%;
background: rgba(4, 69, 80, 0.9);
transition: all 500ms ease-out;
opacity: 0;
visibility: hidden;
text-align: center;
align-self: center;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
}
.servicios--contenedor:hover>.servicios--capa {
opacity: 1;
visibility: visible;
}
.servicios--contenedor:hover>.servicios--title {
margin-top: 70px;
margin-bottom: 15px;
}
.servicios--contenedor:hover>.servicios--img {
transform: scale(1.3);
}
.servicios--p {
color: #ffffff;
font-size: 18px;
line-height: 1.5;
width: 100%;
}
.servicios--title {
text-align: center;
font-size: 24px;
font-weight: 500;
line-height: 46px;
color: #ffffff;
}
/* Contacto */
.contacto--div {
display: flex;
justify-content: space-around;
align-items: center;
}
.imagencontacto {
width: 50%;
/* ancho de la imagen de dos personas */
}
.form {
/* formulario */
padding: 3em;
border: 0.5px solid #ccc;
border-radius: 1em;
margin-left: 0em;
margin-right: 0em;
text-align: center;
}
.form--titulo {
font-size: 24px;
text-align: center;
}
.form--datos {
list-style: none;
text-align: center;
}
.form--datospersonales {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
}
/* selecciona todos los elementos list item (li) que siguen directamente a otro elemento li dentro de un formulario y les aplicará un margen superior de 1em, para espaciar entre elementos de lista consecutivos */
form li+li {
margin-top: 10px;
}
label {
/* Tamaño y alineación uniforme */
display: inline-block;
}
input,
textarea {
/* Para asegurarse de que todos los campos de texto tienen la misma configuración de letra
Por defecto, las áreas de texto tienen un tipo de letra monoespaciada */
font: 1em;
/* Tamaño uniforme del campo de texto */
width: 100%;
box-sizing: border-box;
/* Hacer coincidir los bordes del campo del formulario */
border: 1px solid #999;
}
input:focus,
textarea:focus {
/* Destacado adicional para elementos que tienen el cursor */
border-color: #000;
}
textarea {
/* Alinear los campos de texto multilínea con sus etiquetas */
vertical-align: top;
/* Proporcionar espacio para escribir texto */
height: 5em;
}
.inline {
width: unset;
display: inline;
vertical-align: middle;
}
/* Footer */
footer {
position: sticky;
bottom: 0;
z-index: 2;
background-color: #14213D;
padding: 0 0.5vw;
display: flex;
justify-content: space-between;
align-items: center;
}
.footer--texto {
margin: auto 10px;
font-size: min(1.5vw, 16px);
}
.footer--redes {
display: flex;
}
.footer--logo {
margin: 10px;
width: min(2.5vw, 30px);
height: auto;
/* Mantiene la proporción de aspecto */
}
/* media query for smaller screens */
@media screen and (max-width: 1000px) {
.Nosotros {
padding: 10px;
}
.servicios--div {
display: flex;
flex-direction: column;
/* Cambia la dirección a columna en pantallas pequeñas */
height: 800px;
}
.servicios--contenedor {
width: unset;
}
.contacto--div {
width: 100%;
}
.form {
width: 100%;
margin-left: auto;
/* Center the form horizontally */
margin-right: auto;
}
label {
width: auto;
/* Allow labels to take full width on smaller screens */
text-align: left;
/* Adjust label alignment */
}
.button-container {
text-align: center;
/* Centrar el botón dentro de este contenedor */
}
/* media query para ocultar al imagen de dos personas .imagencontacto en pantallas de menos de 768px */
.imagencontacto {
display: none;
}
.inicio--subtitulo {
margin-bottom: 8%;
}
}
/* media query for smaller screens */
@media screen and (max-width: 768px) {
.footer--texto {
font-size: 11px;
margin: auto 10px;
}
.footer--logo {
width: 20px;
}
.inicio--subtitulo {
margin-bottom: 8%;
}
}