-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
1301 lines (1109 loc) · 27.1 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
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Primero se quitan algunos estilos por defecto de los navegadores*/
* {
padding: 0;
margin: 0;
font-family: "Oswald", sans-serif;
font-weight: 600;
color: #fff;
}
/* Se quita el subrayado y color de los links */
a {
text-decoration: none;
}
/* Se utiliza el modelo de flexbox y se pone una imagen de fondo con una suave animación que cambia la posición de la imagen */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
overflow-x: hidden;
background-image: url("images/bogotaBackground.jpg");
background-size: cover;
background-attachment: fixed;
animation: moveBackground 60s infinite;
}
/* Se configuran las barras de desplazamiento de todo el sitio con color, ancho, radio del borde y margen */
::-webkit-scrollbar {
height: 1.2vh;
width: 1.2vh;
}
::-webkit-scrollbar-track-piece {
margin: 0 10vw;
background-color: #afafaf94;
border-radius: 20px;
}
::-webkit-scrollbar-thumb {
background-color: #28454d;
border-radius: 20px;
}
/* A todos los encabezados se les pone un relleno y un color de fondo en gradiente para diferenciar la barra de navegación de los demás elementos */
header {
display: flex;
padding: 1% 5%;
flex: 0 1 max-content;
align-items: center;
background: linear-gradient(
-45deg,
rgba(0, 0, 0, 0.25) 65%,
rgba(0, 0, 0, 0) 70%,
rgba(153, 153, 153, 0)
);
}
/* Para los objetos de la barra de navegación se configura el estilo de la fuente y una sombra para mejorar la legibilidad de los textos. */
header h1 {
font-size: 2.5vw;
text-transform: capitalize;
flex-grow: 1;
}
header h1 a {
font-weight: 800;
text-shadow: 3px 3px 4px #000;
display: flex;
align-items: center;
width: min-content;
}
/* Se aplica un filtro en el logo y se configura la altura */
header h1 a img {
height: 3.5vw;
margin-right: 10px;
filter: invert(100%);
}
/* Se configura la barra de navegación para eliminar las viñetas de la lista de navegación. */
nav {
flex-grow: 2;
display: flex;
align-items: center;
margin: 0;
}
nav ul {
list-style: none;
display: flex;
flex-grow: 1;
justify-content: flex-end;
}
nav ul li {
margin: 0 1vw;
}
nav ul li a {
font-weight: 300;
font-size: 1.3vw;
text-shadow: 1px 1px 2px #000;
padding: 0.1vh 1vw;
}
header .menuIcon,
header #menu {
display: none;
}
/* Cuando la página de la barra de navegación es seleccionada el link cambia de color de fondo */
a#current {
border-radius: 1vw;
background-color: #ffffff;
color: black;
}
/* Todas las secciones expanden su tamaño para que se vea el contenido */
section {
flex-grow: 1;
}
/* Todos los títulos de segundo orden de las paginas se estilizan para que sean iguales. */
h2 {
text-align: center;
font-size: 3vw;
text-shadow: 3px 3px 4px #000;
padding: 3vh 0;
}
/*La sección de clase city utiliza el modelo de caja y se configuran las margenes y el relleno, además de la alineación y la medición de los elementos a partir del tamaño de su contenido los bordes. */
section.city {
display: flex;
align-items: center;
padding: 30px 0;
min-height: 70vh;
box-sizing: border-box;
}
/* La descripción de la ciudad es un flexbox con un ancho minimo de 50vw. */
.cityDesc {
display: flex;
flex-direction: column;
flex: 5 0 50vw;
margin: 0 2vw 0 0;
font-size: 1.5vw;
}
/* Se configura el relleno, margen y color de los textos */
.cityText {
background-color: rgba(0, 0, 0, 0.4);
padding: 5vh 2vw 5vh 6vw;
border-radius: 0 20px 20px 0;
text-shadow: 2px 2px 3px #000;
}
/* El link que lleva a la pagina de Bogotá se estiliza como botón. */
.cityDesc a {
font-size: 1.5vw;
font-style: italic;
padding: 1.2vw;
margin: 2vh auto 2vh 6vw;
width: max-content;
border-radius: 1.5vw;
text-shadow: none;
background-color: #3498db;
box-shadow: 3px 3px #34495e;
}
/* Cuando el link es presionado simula una animación como si fuera un boton eliminado la sombra y trasladandolo pocos pixels. */
.cityDesc a:active {
transform: translate(3px, 3px);
box-shadow: none;
}
/* Se estiliza la galeria de lugares de Bogotá con margenes y ocultando el contenido saliente de la pantalla con una barra de desplazamiento. */
.cityPlaces {
display: flex;
align-items: center;
justify-content: flex-start;
overflow-x: scroll;
margin: 0 6vw 0 2vw;
max-width: 50vw;
}
/* Para cada lugar destacado de la ciudad se estiliza el texto y se configura un ancho minimo. También se agrega una animación inicial de 2s para indicar que el contenido se puede desplazar. Se agrega una transición para suavizar el cambio de tamaño cuando se mantenga el mouse por encima del elemento.*/
.cityPlace {
display: flex;
flex: 1 0 15vw;
margin: 3%;
text-align: right;
border-radius: 1vw;
box-shadow: 3px 3px 4px rgb(0, 0, 0);
flex-direction: column;
height: 50vh;
max-height: 460px;
overflow: hidden;
justify-content: flex-start;
transition: height 0.5s;
animation: movePlaces 2s ease;
}
/* En el último lugar se agrega un margen para que el contenido no se vea cortado cuando se ponga el mouse encima del elemento. */
.cityPlace:last-child {
margin-right: 5vw;
}
/* Cuando se deja el mouse encima del elemento se agrega una animación para que el contenido se haga más grande. */
.cityPlace:hover {
flex: 1 0 18vw;
border-radius: 2vw;
height: 65vh;
}
/* Los textos del lugar se estilizan y se desplazan por fuera del elemento para ocultar el contenido. */
.cityPlace h3 {
font-size: 1.8vw;
padding: 2vh 2vw;
text-shadow: 3px 4px 2px #000;
transform: translateY(36vh);
transition: transform 0.5s;
}
.cityPlace p {
font-size: 1.1vw;
padding: 5vh 2vw;
transform: translateY(36vh);
transition: transform 0.5s;
height: 50vh;
}
/* Cuando se deja el mouse encima se hace visible el contenido y cambia de color para resaltar con el nuevo color de fondo. */
.cityPlace:hover p,
.cityPlace:hover h3 {
background-color: rgba(255, 255, 255, 0.7);
color: rgb(58, 58, 58);
transform: translateY(8vh);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.37);
}
/* Para cada lugar se configura una imagen de fondo */
.candelaria {
background-image: url(images/candelaria.jpg);
background-size: cover;
}
.monserrate {
background-image: url(images/monserrate.png);
background-size: cover;
background-position: bottom;
}
.pSimonBolivar {
background-image: url(images/simonbolivar.jpg);
background-size: cover;
background-position: bottom;
}
.plazaBolivar {
background-image: url(images/plazaBolivar.jpg);
background-size: cover;
background-position: -150px;
}
.BVirgilio {
background-image: url(images/bVirgilio.jpg);
background-size: cover;
background-position: center;
}
.museoOro {
background-image: url(images/museoOro.jpg);
background-size: cover;
background-position: center;
}
.chorroQuevedo {
background-image: url(images/chorroQuevedo.jpg);
background-size: cover;
background-position: center;
}
/* Al igual que otras secciones se utiliza el modelo flexbox para organizar los elementos. */
section.people {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* Los parrafos de la sección de habitantes se estilizan y contrastan con un color de fondo. */
section.people p {
font-size: 1.3vw;
color: rgb(29, 29, 29);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
margin: 0 10%;
padding: 5vh 3vw;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 1vw 1vw 0 0;
text-align: center;
}
/* Un conjunto de imagenes de habitantes de Bogotá se disponen en un contenedor tipo flexbox con saltos de linea(wrap). */
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: center;
background: #ffffffe1;
padding: 0 10%;
}
/* Todas las imagenes de la galeria tienen el mismo alto y se separan un poco con la margen. */
.gallery img {
height: 25vh;
margin: 0.5%;
}
/* Como para otras secciones se utiliza el modelo flexbox para organizar los elementos. */
section.location {
display: flex;
align-items: center;
justify-content: center;
}
/* Se estilizan los textos de la sección de ubicación. */
.location p {
flex: 1 1 30vw;
font-size: 1.4vw;
background-color: rgba(255, 255, 255, 0.7);
padding: 5vh 2vw 5vh 10%;
border-radius: 0 1vw 1vw 0;
color: rgb(29, 29, 29);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
}
/* Se configura una variable de ancho para mantener la relación de aspecto del mapa de Bogotá además de establecer una posición relativa para ubicar cada localidad respecto al mapa. */
.map {
--widthMap: 50vw;
flex: 0 0 var(--widthMap);
height: calc(var(--widthMap) * 1100 / 1600);
max-height: calc(var(--widthMap) * 1100 / 1600);
position: relative;
overflow: visible;
margin: 4vw;
}
/* Todos las localidades se ubican en el mapa de Bogotá con una posición absoluta. */
.map .mapBarrio {
position: absolute;
}
/* Cuando se pone el mouse por encima del elemento la imagen cambia de color con el filtro y se hace más grande. */
.map .mapBarrio img:hover {
transform: scale(1.1);
z-index: 1;
filter: hue-rotate(0deg);
}
/* Cada imagen de la localidad se hace del ancho de su contenedor y se aplica un filtro de color. */
.map .mapBarrio img {
width: 100%;
filter: hue-rotate(190deg);
}
/* Cada localidad se ubica respecto al mapa y su tamaño en pixels. */
#mapaUsaquen {
width: calc(615 / 1600 * 100%);
top: 0;
left: 0;
}
#mapaSuba {
width: calc(515 / 1600 * 100%);
top: 17.2%;
left: 2.5%;
}
#mapaChapinero {
width: calc(326 / 1600 * 100%);
top: 14%;
left: 34.4%;
}
#mapaBarriosUnidos {
width: calc(212 / 1600 * 100%);
top: 25%;
left: 32.7%;
}
#mapaTeusaquillo {
width: calc(271 / 1600 * 100%);
top: 28%;
left: 38.8%;
}
#mapaSantaFe {
width: calc(272 / 1600 * 100%);
top: 23%;
left: 54.2%;
}
#mapaCandelaria {
width: calc(124 / 1600 * 100%);
top: 24%;
left: 60.5%;
}
#mapaMartires {
width: calc(175 / 1600 * 100%);
top: 32%;
left: 55%;
}
#mapaPteAranda {
width: calc(279 / 1600 * 100%);
top: 38.5%;
left: 48.6%;
}
#mapaFontibon {
width: calc(420 / 1600 * 100%);
top: 44%;
left: 25%;
z-index: 3;
}
#mapaEngativa {
width: calc(464 / 1600 * 100%);
top: 36%;
left: 16%;
z-index: 2;
}
#mapaKennedy {
width: calc(343 / 1600 * 100%);
top: 56%;
left: 43.7%;
}
#mapaBosa {
width: calc(247 / 1600 * 100%);
top: 71%;
left: 50.2%;
}
#mapaAntonioNarino {
width: calc(130 / 1600 * 100%);
top: 40%;
left: 62.7%;
}
#mapaRafaelUribe {
width: calc(237 / 1600 * 100%);
top: 44.6%;
left: 67%;
}
#mapaTunjuelito {
width: calc(315 / 1600 * 100%);
top: 56%;
left: 64.5%;
z-index: 2;
}
#mapaCiudadBolivar {
width: calc(381 / 1600 * 100%);
top: 56%;
left: 64.2%;
}
#mapaSanCristobal {
width: calc(381 / 1600 * 100%);
top: 27.5%;
left: 66.6%;
}
#mapaUsme {
width: calc(434 / 1600 * 100%);
top: 34.6%;
left: 76%;
}
#mapaSumapaz {
width: calc(93 / 1600 * 100%);
top: 33%;
left: 97.5%;
}
/* Se pone un color de fondo pra resaltar el texto de la sección y un borde estilizado. */
section.localitiesDesc {
margin: 5vh 10%;
background-color: rgba(255, 255, 255, 0.7);
padding: 0 5vw;
border-radius: 2vw;
}
/* Se estilizan los textos y la lista de localidades. */
section.localitiesDesc ol li {
color: rgb(29, 29, 29);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
margin: 2vh 0;
font-size: 1.8vw;
}
section.localitiesDesc ol li h3 {
font-size: 1.6vw;
color: rgb(19, 19, 19);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
}
section.localitiesDesc ol li p {
font-size: 1.3vw;
font-weight: 400;
color: rgb(49, 49, 49);
text-shadow: none;
text-align: justify;
}
/* Se ubica el boton para volver al inicio en la esquina inferior derecha utilizando una posición fija y estilizando el texto. */
a.buttonUp {
display: flex;
position: fixed;
top: 90vh;
left: 88vw;
align-items: center;
background-color: #fff;
color: rgb(49, 49, 49);
padding: 0.5vh 1vw;
border-radius: 30px;
width: max-content;
}
a.buttonUp span {
color: rgb(49, 49, 49);
font-size: 1.1vw;
}
/* Se configura el tamaño del icono del boton. */
a.buttonUp img {
height: 2em;
margin-left: 2px;
}
/* Se estiliza el texto resumen de las actividades de Bogotá */
section.activitySummary p {
font-size: 1.5vw;
color: rgb(29, 29, 29);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
margin: 0 10% 10vh;
padding: 2vw;
background-color: rgba(255, 255, 255, 0.7);
border-radius: 1vw;
text-align: center;
}
/* Se utiliza el modelo de flexbox para cada actividad. */
article.activity {
display: flex;
}
/* Se estilizan los textos para que ocupen un máximo del 35% del ancho de la ventana. */
article.activity .textActi {
flex: 1 0 35vw;
background-color: rgba(255, 255, 255, 0.9);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-shadow: 1px 1px 2px rgb(73, 73, 73);
}
/* Se configura el relleno la margen y la dirección del flexbox si el elemento es par o impar y se vayan intercalando en la página. */
article.activity:nth-child(odd) {
flex-direction: row;
}
article.activity:nth-child(odd) .textActi {
padding: 2vh 5vw 2vh 10%;
}
article.activity:nth-child(even) {
flex-direction: row-reverse;
}
article.activity:nth-child(even) .textActi {
padding: 2vh 10% 2vh 5vw;
}
/* Se estiliza el texto de cada actividad. */
.textActi h4 {
font-size: 2.5vw;
color: rgb(29, 29, 29);
padding: 1vh 0;
}
.textActi p {
font-size: 1.5vw;
font-weight: 400;
color: rgb(29, 29, 29);
text-align: center;
}
/* La imagen de cada actividad crece para que se vea mejor en la pantalla. */
article.activity img {
flex-grow: 1;
width: 52vw;
}
/* Para hacer un contenido deslizante se utiliza scroll y el modelo flexbox */
section.timeline {
display: flex;
overflow-x: scroll;
overflow-y: hidden;
padding-bottom: 2vh;
}
/* Si se deja el mouse por encima de la sección la animación de las fechas se pausa. */
.timeline:hover .date {
animation: step-end;
}
/* Se configura unas dimensiones minimas y maximas para que el contenido no se desborde de la ventana. También se agrega una animación. */
.timeline .date {
display: flex;
box-sizing: border-box;
min-width: 100vw;
min-height: 60vh;
max-height: 90vh;
padding: 0 10%;
margin: 0;
animation: moveDates 100s;
background-color: rgba(255, 255, 255, 0.9);
}
/* Se estilizan las imagenes para que mantengan un mismo formato. */
.date img {
padding: 2vw;
height: 90%;
border-radius: 7vh;
}
/* La descripción de cada epoca tiene un ancho de 50vw y un sombreado para resaltar. */
.date .timeDesc {
display: flex;
flex: 1 0 50vh;
flex-direction: column;
justify-content: flex-end;
align-items: flex-end;
text-shadow: 1px 1px 2px rgb(73, 73, 73);
margin-right: 2vw;
padding-bottom: 2vh;
}
/* Se estilizan los textos con diferente tamaño de fuente. */
.timeDesc h3 {
font-size: 3vw;
color: rgb(29, 29, 29);
padding: 2vh;
}
.timeDesc p {
font-size: 1.3vw;
font-weight: 400;
color: rgb(88, 88, 88);
text-align: right;
width: 40vw;
padding: 2vh;
}
/* Se agrega un estilo a la sección para dar profundidad al mapa */
section#interactive {
flex-grow: 1;
display: flex;
text-align: center;
position: relative;
margin: 2vh auto;
background: radial-gradient(
circle at center,
#000000e5 0,
#474747c0 50%,
rgba(255, 255, 255, 0.616) 100%
);
border-radius: 1vw;
width: 95vw;
min-height: 790px;
overflow: hidden;
}
/* Para que el mapa no se corte se configura un ancho mínimo */
#interactive svg {
min-width: 432px;
}
/* A cada localidad se agrega un color y cuando se pase el mouse por encima también se cambia el color y el ancho de la línea de borde.*/
#interactiveMap #Localidades path {
fill: #ffd28b;
stroke: #646464;
stroke-width: 0.5;
display: inline;
}
#interactiveMap #Localidades path:hover {
fill: #460000;
stroke-width: 1;
}
/* Se ubica el formulario en una esquina y se agregan estilos a sus texxtos */
#interactive form {
background-color: #ffffffe5;
padding: 1vh;
text-align: left;
border-radius: 1vw;
position: absolute;
top: 5vh;
left: 5vw;
}
#interactive form h3 {
color: rgb(0, 0, 0);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
}
#interactive form label {
color: rgb(29, 29, 29);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
}
/* Se ubican las imágenes con una posición absoluta y se configuran anchos para la imagen */
#interactive figure {
width: min-content;
position: absolute;
left: calc(65vw);
top: 2vh;
background-color: #ffffffe5;
padding: 1vh;
border-radius: 1vw;
display: none;
}
#interactive figure img {
max-width: 400px;
min-width: 200px;
width: 25vw;
}
#interactive figure figcaption {
color: rgb(29, 29, 29);
text-shadow: 1px 1px 2px rgb(73, 73, 73);
}
/* Se centra el contenido de la sección. */
.references {
margin: 0 auto;
}
/* Se agrega un color de fondo, un ancho y un radio de borde. */
.references table {
background-color: #2c3e50;
border-radius: 1vw;
width: 70vw;
}
/* Se estilizan los títulos diferentes de la tabla. */
.references th {
text-align: center;
font-size: 1.8vw;
font-weight: 800;
color: rgb(185, 185, 185);
background-color: #2c3e50;
margin: 0;
}
/* Seleccionando el primer y ultimo hijo de los encabezados se hace compatible el radio del borde de la tabla. */
.references tr:first-child th:first-child {
border-radius: 1vw 0 0 0;
}
.references tr:first-child th:last-child {
border-radius: 0 1vw 0 0;
}
/* Se estilizan los textos de cada celda de la tabla. */
.references td {
text-align: center;
font-size: 1.2vw;
font-weight: 400;
color: rgb(88, 88, 88);
}
/* Los links se estilizan diferente para identificarlos más fácil. */
.references td a {
color: rgb(24, 15, 109);
text-decoration: underline;
}
/* Cada columna se cambia de color de fondo. */
.references table tr {
background-color: rgba(255, 255, 255, 0.9);
border: 2px solid rgb(0, 0, 0);
}
/* Seleccionando el primer y ultimo hijo de las filas se hace compatible el radio del borde de la tabla. */
.references tr:last-child td:first-child {
border-radius: 0 0 0 1vw;
}
.references tr:last-child td:last-child {
border-radius: 0 0 1vw 0;
}
.navMap {
text-align: center;
margin: 0 10% 10vh;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 1vw;
}
.navMap img {
width: 90%;
margin-top: 2vh;
}
.navMap figcaption {
font-size: 2vw;
text-align: center;
color: #000;
text-shadow: 1px 1px 2px rgba(160, 160, 160, 0.945);
}
/* Cada animación se configura con estados declarados en porcentajes. */
/* Esta animación mueve el fondo lentamente. */
@keyframes moveBackground {
0% {
background-position: top;
}
50% {
background-position: bottom;
}
100% {
background-position: top;
}
}
/* Esta animación mueve rapidamente los lugares para indicar contenido deslizante. */
@keyframes movePlaces {
0% {
transform: translateX(0);
}
50% {
transform: translateX(-500%);
}
100% {
transform: translateX(0);
}
}
/* Esta animación mueve lentamente la linea de tiempo para observar cada momento de la historia de Bogotá. */
@keyframes moveDates {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-300%);
}
}
/* Todas las páginas tienen un pie de página indicando el autor y ajustando el contenido al máximo ocupado por los textos. */
footer {
display: flex;
flex: 0 1 max-content;
flex-direction: column;
align-items: flex-end;
justify-content: flex-end;
text-shadow: 1px 1px 2px #000;
padding: 0 0.5vw;
background: #2c3e5000;
}
/* Para pantallas menores a 1200px */
@media only screen and (max-width: 1200px) {
/* Se cambia el tamaño de la fuente y la iamgen del encabezado */
header h1 {
font-size: 4vw;
/* Para diminuir el espacio de la barra de navegación, el titulo se hace más grande. */
width: 60vw;
}
header h1 a img {
height: 6vw;
}
/* Se permite que la barra de navegación tenga salto de linea. */
header nav ul {
flex-wrap: wrap;
}
/* Se cambian las fuentes de la barra de navegación. */
header nav ul li {
margin: 1vw;
}
header nav ul li a {
font-size: 2vw;
}
/* Se cambia el tamaño de la fuente de los textos de la página de inicio. */
.cityDesc {
flex: 2 0 60vw;
font-size: 2.1vw;
}
.cityDesc a {
font-size: 2.1vw;
margin: 2vh auto;
}
/* Los banner de los sitios turisticos se hacen más grandes para llamar la atención y se cambia la fuente. */
.cityPlace {
flex: 1 0 23vw;
height: 70vh;
}
/* También se modifica el desplazamiento para ocultar textos. */
.cityPlace h3 {
font-size: 2.5vw;
transform: translateY(40vh);
}
.cityPlace p {
font-size: 1.5vw;
transform: translateY(40vh);
}
/* Se cambia el tamaño de la fuente de los textos de la ubicación y se hace más graned el mapa. */
section.location p {
padding-left: 5%;
font-size: 1.8vw;
text-align: justify;
}
.map {
--widthMap: 60vw;
}
section.localitiesDesc ol li h3 {
font-size: 2vw;
}
section.localitiesDesc ol li p {
font-size: 1.5vw;
}
/* Se cambia el tamaño de la fuente de los textos de la página de habitantes. */
section.people p {
text-shadow: none;
font-size: 1.7vw;
}
/* Los bordes de la galeria se quitan para poner más imagenes. */
.gallery {
padding: 0%;
}
/* Se cambia el tamaño de la fuente de los textos de la página de referencias y la de historia. */
.references th {
font-size: 2.1vw;
}
.references td {
font-size: 1.6vw;
}
.timeDesc p {
font-size: 1.8vw;
text-shadow: none;
}
#interactive figure {
left: calc(60vw);
}
}
/* Para pantallas de dispositivos móviles */
@media only screen and (max-width: 600px) {
#interactive figure {
width: min-content;
position: absolute;
left: calc(30vw);
}
/* Se cambia el estilo del encabezado para que tenga un fondo completamente translucido. */
header {
background: linear-gradient(
-45deg,
rgba(0, 0, 0, 0.11),
rgba(0, 0, 0, 0.527)
);
}
/* Se cambian las fuentes y el tamaño del icono de inicio. */