-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
273 lines (233 loc) · 4.88 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
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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.grafico {
position: absolute;
top: 180px;
}
.contenedor-imagen {
border: 5px solid rgba(230, 228, 228, 0.932);
justify-content: center;
/* Centra horizontalmente */
align-items: center;
/* Centra verticalmente */
width: 55px;
/* Ajusta el ancho según tus necesidades */
height: 55px;
/* Ajusta la altura según tus necesidades */
overflow: hidden;
/* Oculta cualquier parte de la imagen que se salga del contenedor */
border-radius: 50%;
/* Crea un borde circular */
/* Añade un borde blanco alrededor del marco circular */
}
.contenedor-imagen img {
width: 100%;
/* Hace que la imagen ocupe todo el ancho del contenedor */
height: auto;
/* Mantiene la proporción de la imagen */
display: block;
/* Elimina el espacio adicional por debajo de la imagen */
}
.parent {
margin-top: 18px;
padding-left: 0px;
padding-right: 40px;
width: 270px;
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(5, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.div1 {
width: 60px;
grid-area: 1 / 1 / 6 / 3;
padding-right: 0px;
margin-right: 0px;
padding-left: 2px;
/* Márgenes internos para centrar */
/* Incluye el padding en el cálculo del tamaño total */
}
.div2 {
padding-top: 10px;
width: 200px;
grid-area: 1 / 3 / 6 / 6;
padding-left: 0px;
margin-left: 0px;
}
.lato-thin {
font-family: "Lato", sans-serif;
font-size: 14px;
font-weight: 100;
font-style: bold;
color: gray;
}
.lato-light {
color: gray;
font-family: "Lato", sans-serif;
font-weight: 300;
font-style: normal;
}
.lato-regular {
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: normal;
margin-bottom: 2px;
}
.lato-bold {
font-family: "Lato", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 16px;
}
.lato-black {
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
}
.lato-thin-italic {
font-family: "Lato", sans-serif;
font-weight: 100;
font-style: italic;
}
.lato-light-italic {
font-family: "Lato", sans-serif;
font-weight: 300;
font-style: italic;
}
.lato-regular-italic {
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: italic;
}
.lato-bold-italic {
font-family: "Lato", sans-serif;
font-weight: 700;
font-style: italic;
}
.lato-black-italic {
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: italic;
}
.imagenCard img {
position: relative;
width: 360px;
/* La imagen ocupa todo el ancho de su contenedor */
display: block;
/* Elimina el espacio adicional por debajo de la imagen */
}
.container {
padding: 20px;
}
.card {
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 360px;
border: none;
border-radius: 10px;
background-color: #f9f9f9;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.poppins-thin {
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: normal;
}
.poppins-extralight {
font-family: "Poppins", sans-serif;
font-weight: 200;
font-style: normal;
}
.poppins-light {
font-family: "Poppins", sans-serif;
font-weight: 300;
font-style: normal;
}
.poppins-regular {
margin-top: 0px;
margin-bottom: 10px;
font-size: 24px;
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
}
.poppins-medium {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: normal;
}
.poppins-semibold {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: normal;
}
.poppins-bold {
font-family: "Poppins", sans-serif;
font-weight: 700;
font-style: normal;
}
.poppins-extrabold {
font-family: "Poppins", sans-serif;
font-weight: 800;
font-style: normal;
}
.poppins-black {
font-family: "Poppins", sans-serif;
font-weight: 900;
font-style: normal;
}
.poppins-thin-italic {
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: italic;
}
.poppins-extralight-italic {
font-family: "Poppins", sans-serif;
font-weight: 200;
font-style: italic;
}
.poppins-light-italic {
font-family: "Poppins", sans-serif;
font-weight: 300;
font-style: italic;
}
.poppins-regular-italic {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: italic;
}
.poppins-medium-italic {
font-family: "Poppins", sans-serif;
font-weight: 500;
font-style: italic;
}
.poppins-semibold-italic {
font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: italic;
}
.poppins-bold-italic {
font-family: "Poppins", sans-serif;
font-weight: 700;
font-style: italic;
}
.poppins-extrabold-italic {
font-family: "Poppins", sans-serif;
font-weight: 800;
font-style: italic;
}
.poppins-black-italic {
font-family: "Poppins", sans-serif;
font-weight: 900;
font-style: italic;
}