-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
149 lines (109 loc) · 2.66 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
main{
height: 100%;
min-height: 100vh;
}
.listaMiniCv{
list-style-type: none;
padding: 0;
}
.fotoOculta{
z-index: 10000;
position: absolute;
width: auto;
left: 50%;
top:20%;
transform: translate(-50%, -20%);
visibility:hidden;
box-shadow: 5px 5px 5px black;
margin: 0;
margin-bottom: 10px;
padding: 0;
}
.mr-2 {
margin-right: .5rem !important;
}
.imageCarousel{
width: auto;
height: 350px;
max-height: 350px;
margin: auto;
display: block;
}
.imageCarouselCard{
width: auto;
height: 150px;
max-height: 150px;
margin: auto;
display: block;
}
/* para que se pueda hacer zoom in cuando estoy viendo el carrusel */
.carousel.pointer-event {
touch-action: pan-y pinch-zoom;
}
/* los siguientes 4 (hasta .imgCar) son para que el carrusel seleccionado se maximice */
/* en la pantalla, que tenga un fondo semi transparente */
/* y que las fotos se expandan a lo máximo posible respetando su relación de tamaño */
/* hay que agregarlas por js al hacer click en algún carrusel en sus respectivas clases*/
/* hay que sacar mt-2 de la div que tiene la clase "carousel", que es la primera div dentro de la clase "card"*/
/* sumarlo al elemento que tien ´carousel´, que también ese elemento tiene el id del carrusel */
.contGralCar{
z-index: 5000;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height:100%;
width: 100%;
background-color: rgba(34, 33, 33, 0.9);
max-width: 100%;
max-height: 100%;
display:block;
}
/* sumarlo al elemento que ya tiene la clase ´carousel-inner´ */
.innerCar{
height: 100%;
width: 100%;
}
/* sumarlo al elemento que ya tiene la clase ´carousel-item´ */
.itemCar{
/* border:indianred solid 6px; */
height: 100%;
}
/* sumar esta clase al elemento que tiene el tag img (dentro del carrusel, no a todos) */
.imgCar{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 100%;
max-height: 100%;
display:block;
border: whitesmoke solid 5px;
border-radius: 2%;
}
.clickedImg{
z-index: 10;
}
a {
color: grey;
}
.tabla{
text-align: center;
height: 225px;
width: 225px;
margin:auto;
border: 5px solid red;
}
tr{
height: 75px;
border: 1px solid white;
}
td{
background-color: black;
color: white;
border: 1px solid white;
font-size: 25pt;
font-family: Georgia;
text-align: center;
width: 75px;
}