oraculo-ui 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/OraculoSeccionBonoBienvenida-EDS6UQVL.mjs +9 -0
- package/dist/OraculoSeccionBonoBienvenida-MGMLDCRG.css +220 -0
- package/dist/OraculoSeccionCasino-GXRRODCJ.mjs +11 -0
- package/dist/OraculoSeccionCasino-Q2VV44XD.css +216 -0
- package/dist/OraculoSeccionCasinoEnVivo-ISYMJSUN.mjs +8 -0
- package/dist/OraculoSeccionCasinoEnVivo-MMXETHJA.css +156 -0
- package/dist/OraculoSeccionClubOlimpo-APZYPQ5V.css +116 -0
- package/dist/OraculoSeccionClubOlimpo-MYTRV5IN.css +273 -0
- package/dist/OraculoSeccionClubOlimpo-TV3LABJ5.mjs +9 -0
- package/dist/OraculoSeccionClubOlimpo-XGB4KUKX.mjs +7 -0
- package/dist/OraculoSeccionDestacados-QU6BT2NM.mjs +18 -0
- package/dist/OraculoSeccionDestacados-WQX2GQNY.css +397 -0
- package/dist/OraculoSeccionTopJuegos-3AR4L7SZ.css +59 -0
- package/dist/OraculoSeccionTopJuegos-FZUYQEMC.mjs +8 -0
- package/dist/OraculoSeccionVirtuales-MGW5X23B.mjs +11 -0
- package/dist/OraculoSeccionVirtuales-OP2CSKUP.css +216 -0
- package/dist/chunk-2D7ZJMJV.mjs +118 -0
- package/dist/chunk-5GTDKE3I.mjs +30 -0
- package/dist/chunk-AFPCFXMZ.mjs +174 -0
- package/dist/chunk-AIT7B2J3.mjs +192 -0
- package/dist/chunk-DKP3HTEP.mjs +183 -0
- package/dist/chunk-IJQLK4NO.mjs +73 -0
- package/dist/chunk-PVY5Z3JS.mjs +249 -0
- package/dist/chunk-PXIOKT7L.mjs +39177 -0
- package/dist/chunk-PZJSZNXJ.mjs +6 -0
- package/dist/chunk-VHW77D2M.mjs +91 -0
- package/dist/chunk-VIPLL6XT.mjs +43 -0
- package/dist/chunk-WPLILXPP.mjs +389 -0
- package/dist/chunk-YY5T37WR.mjs +175 -0
- package/dist/index.d.mts +45 -2
- package/dist/index.d.ts +45 -2
- package/dist/index.js +39897 -1277
- package/dist/index.mjs +41 -1812
- package/package.json +1 -1
|
@@ -0,0 +1,397 @@
|
|
|
1
|
+
/* src/atoms/OraculoButton/OraculoButton.css */
|
|
2
|
+
.orc-btn {
|
|
3
|
+
--nl-green: #9EE86E;
|
|
4
|
+
--nl-hover-hex: #D9F6C6;
|
|
5
|
+
--nl-hover-alpha: .22;
|
|
6
|
+
--nl-press: #254B0C;
|
|
7
|
+
--nl-disabled-border: #4a5542;
|
|
8
|
+
--nl-disabled-fg: #4a5542;
|
|
9
|
+
--stroke-w: 1.5px;
|
|
10
|
+
--h: 32px;
|
|
11
|
+
--pad-x: 12px;
|
|
12
|
+
--pad-y: 8px;
|
|
13
|
+
--radius: 12px;
|
|
14
|
+
box-sizing: border-box;
|
|
15
|
+
height: var(--h);
|
|
16
|
+
font-family: var(--clmc-font);
|
|
17
|
+
display: inline-flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
gap: 8px;
|
|
21
|
+
cursor: pointer;
|
|
22
|
+
text-decoration: none;
|
|
23
|
+
border-radius: var(--radius);
|
|
24
|
+
outline: none;
|
|
25
|
+
position: relative;
|
|
26
|
+
padding: var(--pad-y) var(--pad-x);
|
|
27
|
+
border: 0;
|
|
28
|
+
}
|
|
29
|
+
.orc-btn__label {
|
|
30
|
+
color: currentColor;
|
|
31
|
+
font-size: 14px;
|
|
32
|
+
}
|
|
33
|
+
.orc-btn__icon {
|
|
34
|
+
color: currentColor;
|
|
35
|
+
display: inline-flex;
|
|
36
|
+
line-height: 0;
|
|
37
|
+
font-size: 18px;
|
|
38
|
+
}
|
|
39
|
+
.orc-btn--primary {
|
|
40
|
+
background: var(--nl-green);
|
|
41
|
+
color: #1C1C1C;
|
|
42
|
+
box-shadow: inset 0 0 0 var(--stroke-w) transparent;
|
|
43
|
+
}
|
|
44
|
+
.orc-btn--primary:hover {
|
|
45
|
+
background: var(--nl-hover-hex);
|
|
46
|
+
color: #1C1C1C;
|
|
47
|
+
}
|
|
48
|
+
.orc-btn--primary:active {
|
|
49
|
+
background: var(--nl-press);
|
|
50
|
+
color: #FFFFFF;
|
|
51
|
+
transform: translateY(1px);
|
|
52
|
+
}
|
|
53
|
+
.orc-btn--primary:disabled,
|
|
54
|
+
.orc-btn--primary[aria-disabled=true] {
|
|
55
|
+
background: transparent;
|
|
56
|
+
color: var(--nl-disabled-fg);
|
|
57
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-disabled-border);
|
|
58
|
+
cursor: not-allowed;
|
|
59
|
+
transform: none;
|
|
60
|
+
opacity: 1;
|
|
61
|
+
}
|
|
62
|
+
.orc-btn--secondary {
|
|
63
|
+
background: transparent;
|
|
64
|
+
color: var(--nl-green);
|
|
65
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-green);
|
|
66
|
+
}
|
|
67
|
+
.orc-btn--secondary:hover {
|
|
68
|
+
background: rgba(229, 244, 219, var(--nl-hover-alpha)) !important;
|
|
69
|
+
color: var(--nl-hover-hex);
|
|
70
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-hover-hex);
|
|
71
|
+
}
|
|
72
|
+
.orc-btn--secondary:active {
|
|
73
|
+
transform: translateY(1px);
|
|
74
|
+
color: var(--nl-press);
|
|
75
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-press);
|
|
76
|
+
background: rgba(37, 75, 12, 0.10);
|
|
77
|
+
}
|
|
78
|
+
.orc-btn--secondary:focus-visible {
|
|
79
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-green), 0 0 0 3px rgba(197, 228, 177, .45);
|
|
80
|
+
}
|
|
81
|
+
.orc-btn--secondary:disabled,
|
|
82
|
+
.orc-btn--secondary[aria-disabled=true] {
|
|
83
|
+
background: transparent;
|
|
84
|
+
color: var(--nl-disabled-fg);
|
|
85
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-disabled-border);
|
|
86
|
+
cursor: not-allowed;
|
|
87
|
+
}
|
|
88
|
+
.orc-btn--tertiary {
|
|
89
|
+
background: transparent;
|
|
90
|
+
color: var(--nl-green);
|
|
91
|
+
box-shadow: none;
|
|
92
|
+
}
|
|
93
|
+
.orc-btn--tertiary:hover {
|
|
94
|
+
color: var(--nl-hover-hex);
|
|
95
|
+
}
|
|
96
|
+
.orc-btn--tertiary:active {
|
|
97
|
+
color: var(--nl-press);
|
|
98
|
+
background: rgba(37, 75, 12, 0.08);
|
|
99
|
+
transform: translateY(1px);
|
|
100
|
+
}
|
|
101
|
+
.orc-btn--tertiary:focus-visible {
|
|
102
|
+
box-shadow: 0 0 0 3px rgba(197, 228, 177, .45);
|
|
103
|
+
}
|
|
104
|
+
.orc-btn--tertiary:disabled,
|
|
105
|
+
.orc-btn--tertiary[aria-disabled=true] {
|
|
106
|
+
color: var(--nl-disabled-fg);
|
|
107
|
+
background: transparent;
|
|
108
|
+
box-shadow: none;
|
|
109
|
+
cursor: not-allowed;
|
|
110
|
+
}
|
|
111
|
+
.orc-btn--sm {
|
|
112
|
+
--h: 32px;
|
|
113
|
+
--pad-y: 8px;
|
|
114
|
+
--pad-x: 12px;
|
|
115
|
+
--radius: 12px;
|
|
116
|
+
}
|
|
117
|
+
.orc-btn--md {
|
|
118
|
+
--h: 40px;
|
|
119
|
+
--pad-y: 10px;
|
|
120
|
+
--pad-x: 16px;
|
|
121
|
+
--radius: 12px;
|
|
122
|
+
}
|
|
123
|
+
.orc-btn--lg {
|
|
124
|
+
--h: 48px;
|
|
125
|
+
--pad-y: 12px;
|
|
126
|
+
--pad-x: 20px;
|
|
127
|
+
--radius: 16px;
|
|
128
|
+
}
|
|
129
|
+
.orc-btn--sm .orc-btn__label,
|
|
130
|
+
.orc-btn--md .orc-btn__label,
|
|
131
|
+
.orc-btn--lg .orc-btn__label {
|
|
132
|
+
font-size: 14px !important;
|
|
133
|
+
}
|
|
134
|
+
.orc-btn--iconOnly {
|
|
135
|
+
width: 40px;
|
|
136
|
+
min-width: 40px;
|
|
137
|
+
padding: 0;
|
|
138
|
+
}
|
|
139
|
+
.orc-btn--sm.orc-btn--iconOnly {
|
|
140
|
+
width: 32px;
|
|
141
|
+
min-width: 32px;
|
|
142
|
+
}
|
|
143
|
+
.orc-btn--md.orc-btn--iconOnly {
|
|
144
|
+
width: 40px;
|
|
145
|
+
min-width: 40px;
|
|
146
|
+
}
|
|
147
|
+
.orc-btn--lg.orc-btn--iconOnly {
|
|
148
|
+
width: 48px;
|
|
149
|
+
min-width: 48px;
|
|
150
|
+
}
|
|
151
|
+
.orc-btn--full {
|
|
152
|
+
width: 100%;
|
|
153
|
+
}
|
|
154
|
+
.orc-btn--fullHeight {
|
|
155
|
+
height: 100%;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/* src/atoms/OraculoSectionTitle/OraculoSectionTitle.css */
|
|
159
|
+
.orc-section-title {
|
|
160
|
+
display: flex;
|
|
161
|
+
align-items: center;
|
|
162
|
+
gap: 8px;
|
|
163
|
+
}
|
|
164
|
+
.orc-section-title__icon {
|
|
165
|
+
width: 40px;
|
|
166
|
+
height: 40px;
|
|
167
|
+
object-fit: none;
|
|
168
|
+
}
|
|
169
|
+
.orc-section-title__title {
|
|
170
|
+
margin: 0;
|
|
171
|
+
font-weight: 700;
|
|
172
|
+
letter-spacing: 0;
|
|
173
|
+
color: #ffffff;
|
|
174
|
+
}
|
|
175
|
+
.orc-section-title--xs .orc-section-title__title {
|
|
176
|
+
font-size: 14px;
|
|
177
|
+
line-height: 18px;
|
|
178
|
+
}
|
|
179
|
+
.orc-section-title--sm .orc-section-title__title {
|
|
180
|
+
font-size: 18px;
|
|
181
|
+
line-height: 24px;
|
|
182
|
+
}
|
|
183
|
+
.orc-section-title--md .orc-section-title__title {
|
|
184
|
+
font-size: 32px;
|
|
185
|
+
line-height: 48px;
|
|
186
|
+
}
|
|
187
|
+
.orc-section-title--lg .orc-section-title__title {
|
|
188
|
+
font-size: 22px;
|
|
189
|
+
line-height: 30px;
|
|
190
|
+
}
|
|
191
|
+
.orc-section-title--xs .orc-section-title__icon {
|
|
192
|
+
width: 24px;
|
|
193
|
+
height: 24px;
|
|
194
|
+
}
|
|
195
|
+
@media (max-width: 768px) {
|
|
196
|
+
.orc-section-title__icon {
|
|
197
|
+
width: 24px;
|
|
198
|
+
height: 24px;
|
|
199
|
+
}
|
|
200
|
+
.orc-section-title--xs .orc-section-title__title {
|
|
201
|
+
font-size: 14px;
|
|
202
|
+
line-height: 18px;
|
|
203
|
+
}
|
|
204
|
+
.orc-section-title--sm .orc-section-title__title {
|
|
205
|
+
font-size: 16px;
|
|
206
|
+
line-height: 22px;
|
|
207
|
+
}
|
|
208
|
+
.orc-section-title--md .orc-section-title__title {
|
|
209
|
+
font-size: 18px;
|
|
210
|
+
line-height: 24px;
|
|
211
|
+
}
|
|
212
|
+
.orc-section-title--lg .orc-section-title__title {
|
|
213
|
+
font-size: 20px;
|
|
214
|
+
line-height: 26px;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
/* src/atoms/OraculoCarouselDots/OraculoCarouselDots.css */
|
|
219
|
+
.orc-dots {
|
|
220
|
+
--dot-size: 8px;
|
|
221
|
+
--dot-cell: 20px;
|
|
222
|
+
--dot-active-h: 8px;
|
|
223
|
+
--dot-active-w: 20px;
|
|
224
|
+
--dot-bg: #ffffff;
|
|
225
|
+
--dot-surface: #ffffff;
|
|
226
|
+
--dot-accent: #9EE86E;
|
|
227
|
+
display: flex;
|
|
228
|
+
gap: 0px;
|
|
229
|
+
justify-content: center;
|
|
230
|
+
margin-top: 10px;
|
|
231
|
+
}
|
|
232
|
+
.orc-dots__cell {
|
|
233
|
+
width: var(--dot-cell);
|
|
234
|
+
display: inline-flex;
|
|
235
|
+
justify-content: center;
|
|
236
|
+
}
|
|
237
|
+
.orc-dots__dot {
|
|
238
|
+
width: var(--dot-size);
|
|
239
|
+
height: var(--dot-size);
|
|
240
|
+
border-radius: 9999px;
|
|
241
|
+
background: var(--dot-bg);
|
|
242
|
+
border: 0;
|
|
243
|
+
padding: 0;
|
|
244
|
+
cursor: pointer;
|
|
245
|
+
position: relative;
|
|
246
|
+
transition:
|
|
247
|
+
transform .15s ease,
|
|
248
|
+
background .15s ease,
|
|
249
|
+
width .2s ease,
|
|
250
|
+
height .2s ease;
|
|
251
|
+
}
|
|
252
|
+
.orc-dots__dot:hover {
|
|
253
|
+
transform: scale(1.06);
|
|
254
|
+
}
|
|
255
|
+
.orc-dots__dot--active {
|
|
256
|
+
width: var(--dot-active-w);
|
|
257
|
+
height: var(--dot-active-h);
|
|
258
|
+
border-radius: 9999px;
|
|
259
|
+
background: #fff;
|
|
260
|
+
position: relative;
|
|
261
|
+
overflow: hidden;
|
|
262
|
+
}
|
|
263
|
+
.orc-dots__dot--active::after {
|
|
264
|
+
content: "";
|
|
265
|
+
position: absolute;
|
|
266
|
+
top: 0;
|
|
267
|
+
bottom: 0;
|
|
268
|
+
left: 0;
|
|
269
|
+
width: 40%;
|
|
270
|
+
background: var(--dot-accent);
|
|
271
|
+
border-radius: inherit;
|
|
272
|
+
}
|
|
273
|
+
.orc-dots__dot--active {
|
|
274
|
+
outline: 0;
|
|
275
|
+
outline-offset: 0;
|
|
276
|
+
}
|
|
277
|
+
.orc-dots__dot:focus-visible {
|
|
278
|
+
outline: 2px solid var(--dot-accent);
|
|
279
|
+
outline-offset: 2px;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
/* src/organisms/OraculoSeccionClubOlimpo/OraculoSeccionClubOlimpo.css */
|
|
283
|
+
.orc-co-wrap {
|
|
284
|
+
--orc-co-art-w: 887px;
|
|
285
|
+
--orc-co-art-h: 510px;
|
|
286
|
+
--orc-co-text: #ffffff;
|
|
287
|
+
--orc-co-art-left: clamp(120px, 18vw, 280px);
|
|
288
|
+
--orc-co-art-top: 20px;
|
|
289
|
+
--orc-co-logo-left: 163px;
|
|
290
|
+
--orc-co-logo-top: 120px;
|
|
291
|
+
--orc-co-logo-w: 220px;
|
|
292
|
+
--orc-co-content-left: 120px;
|
|
293
|
+
--orc-co-content-top: 290px;
|
|
294
|
+
min-height: var(--orc-co-minH, 520px);
|
|
295
|
+
position: relative;
|
|
296
|
+
}
|
|
297
|
+
.orc-co-fullBleed {
|
|
298
|
+
width: 100vw;
|
|
299
|
+
margin-left: 50%;
|
|
300
|
+
transform: translateX(-50%);
|
|
301
|
+
}
|
|
302
|
+
.orc-co-bottom {
|
|
303
|
+
position: absolute;
|
|
304
|
+
left: 50%;
|
|
305
|
+
transform: translateX(-50%);
|
|
306
|
+
bottom: 20px;
|
|
307
|
+
z-index: 2;
|
|
308
|
+
display: grid;
|
|
309
|
+
justify-items: center;
|
|
310
|
+
gap: 12px;
|
|
311
|
+
border-radius: 12px;
|
|
312
|
+
}
|
|
313
|
+
.orc-co-caption {
|
|
314
|
+
color: var(--orc-co-text);
|
|
315
|
+
font-size: 14px;
|
|
316
|
+
text-align: center;
|
|
317
|
+
font-weight: 400;
|
|
318
|
+
text-wrap: balance;
|
|
319
|
+
line-height: 1.4;
|
|
320
|
+
}
|
|
321
|
+
.orc-co-bgMobile {
|
|
322
|
+
position: relative;
|
|
323
|
+
width: 100%;
|
|
324
|
+
min-height: 360px;
|
|
325
|
+
overflow: hidden;
|
|
326
|
+
}
|
|
327
|
+
.orc-co-bgMobileImg {
|
|
328
|
+
width: 100%;
|
|
329
|
+
height: 100%;
|
|
330
|
+
object-fit: cover;
|
|
331
|
+
}
|
|
332
|
+
.orc-co-bgDesktop,
|
|
333
|
+
.orc-co-logo,
|
|
334
|
+
.orc-co-desktopContent {
|
|
335
|
+
display: none;
|
|
336
|
+
}
|
|
337
|
+
@media (min-width: 1024px) {
|
|
338
|
+
.orc-co-bgMobile {
|
|
339
|
+
display: none;
|
|
340
|
+
}
|
|
341
|
+
.orc-co-bottom {
|
|
342
|
+
display: none;
|
|
343
|
+
}
|
|
344
|
+
.orc-co-bgDesktop {
|
|
345
|
+
position: absolute;
|
|
346
|
+
inset: 0;
|
|
347
|
+
z-index: 0;
|
|
348
|
+
display: block;
|
|
349
|
+
}
|
|
350
|
+
.orc-co-bgDesktop > .orc-co-fillHost {
|
|
351
|
+
position: absolute;
|
|
352
|
+
width: var(--orc-co-art-w);
|
|
353
|
+
height: var(--orc-co-art-h);
|
|
354
|
+
top: var(--orc-co-art-top);
|
|
355
|
+
left: var(--orc-co-art-left);
|
|
356
|
+
}
|
|
357
|
+
.orc-co-bgDesktopImg {
|
|
358
|
+
width: 100%;
|
|
359
|
+
height: 100%;
|
|
360
|
+
object-fit: cover;
|
|
361
|
+
display: block;
|
|
362
|
+
}
|
|
363
|
+
.orc-co-logo {
|
|
364
|
+
display: block;
|
|
365
|
+
position: absolute;
|
|
366
|
+
left: var(--orc-co-logo-left);
|
|
367
|
+
top: var(--orc-co-logo-top);
|
|
368
|
+
width: var(--orc-co-logo-w);
|
|
369
|
+
aspect-ratio: 3 / 2;
|
|
370
|
+
z-index: 2;
|
|
371
|
+
}
|
|
372
|
+
.orc-co-logoImg {
|
|
373
|
+
width: 100%;
|
|
374
|
+
height: 100%;
|
|
375
|
+
object-fit: contain;
|
|
376
|
+
display: block;
|
|
377
|
+
}
|
|
378
|
+
.orc-co-desktopContent {
|
|
379
|
+
display: grid;
|
|
380
|
+
position: absolute;
|
|
381
|
+
left: var(--orc-co-content-left);
|
|
382
|
+
top: var(--orc-co-content-top);
|
|
383
|
+
gap: 16px;
|
|
384
|
+
justify-items: center;
|
|
385
|
+
text-align: center;
|
|
386
|
+
z-index: 2;
|
|
387
|
+
}
|
|
388
|
+
.orc-co-captionDesktop {
|
|
389
|
+
margin: 0;
|
|
390
|
+
color: var(--orc-co-text);
|
|
391
|
+
font-family: var(--clmc-font, inherit);
|
|
392
|
+
font-weight: 400;
|
|
393
|
+
font-size: clamp(14px, 1.5vw, 18px);
|
|
394
|
+
max-width: 28ch;
|
|
395
|
+
text-wrap: balance;
|
|
396
|
+
}
|
|
397
|
+
}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/* src/atoms/OraculoSectionTitle/OraculoSectionTitle.css */
|
|
2
|
+
.orc-section-title {
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
gap: 8px;
|
|
6
|
+
}
|
|
7
|
+
.orc-section-title__icon {
|
|
8
|
+
width: 40px;
|
|
9
|
+
height: 40px;
|
|
10
|
+
object-fit: none;
|
|
11
|
+
}
|
|
12
|
+
.orc-section-title__title {
|
|
13
|
+
margin: 0;
|
|
14
|
+
font-weight: 700;
|
|
15
|
+
letter-spacing: 0;
|
|
16
|
+
color: #ffffff;
|
|
17
|
+
}
|
|
18
|
+
.orc-section-title--xs .orc-section-title__title {
|
|
19
|
+
font-size: 14px;
|
|
20
|
+
line-height: 18px;
|
|
21
|
+
}
|
|
22
|
+
.orc-section-title--sm .orc-section-title__title {
|
|
23
|
+
font-size: 18px;
|
|
24
|
+
line-height: 24px;
|
|
25
|
+
}
|
|
26
|
+
.orc-section-title--md .orc-section-title__title {
|
|
27
|
+
font-size: 32px;
|
|
28
|
+
line-height: 48px;
|
|
29
|
+
}
|
|
30
|
+
.orc-section-title--lg .orc-section-title__title {
|
|
31
|
+
font-size: 22px;
|
|
32
|
+
line-height: 30px;
|
|
33
|
+
}
|
|
34
|
+
.orc-section-title--xs .orc-section-title__icon {
|
|
35
|
+
width: 24px;
|
|
36
|
+
height: 24px;
|
|
37
|
+
}
|
|
38
|
+
@media (max-width: 768px) {
|
|
39
|
+
.orc-section-title__icon {
|
|
40
|
+
width: 24px;
|
|
41
|
+
height: 24px;
|
|
42
|
+
}
|
|
43
|
+
.orc-section-title--xs .orc-section-title__title {
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
line-height: 18px;
|
|
46
|
+
}
|
|
47
|
+
.orc-section-title--sm .orc-section-title__title {
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
line-height: 22px;
|
|
50
|
+
}
|
|
51
|
+
.orc-section-title--md .orc-section-title__title {
|
|
52
|
+
font-size: 18px;
|
|
53
|
+
line-height: 24px;
|
|
54
|
+
}
|
|
55
|
+
.orc-section-title--lg .orc-section-title__title {
|
|
56
|
+
font-size: 20px;
|
|
57
|
+
line-height: 26px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import {
|
|
2
|
+
OraculoSeccionVirtuales_default
|
|
3
|
+
} from "./chunk-YY5T37WR.mjs";
|
|
4
|
+
import "./chunk-AIT7B2J3.mjs";
|
|
5
|
+
import "./chunk-5GTDKE3I.mjs";
|
|
6
|
+
import "./chunk-VHW77D2M.mjs";
|
|
7
|
+
import "./chunk-IJQLK4NO.mjs";
|
|
8
|
+
import "./chunk-VIPLL6XT.mjs";
|
|
9
|
+
export {
|
|
10
|
+
OraculoSeccionVirtuales_default as default
|
|
11
|
+
};
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
/* src/atoms/OraculoSectionTitle/OraculoSectionTitle.css */
|
|
2
|
+
.orc-section-title {
|
|
3
|
+
display: flex;
|
|
4
|
+
align-items: center;
|
|
5
|
+
gap: 8px;
|
|
6
|
+
}
|
|
7
|
+
.orc-section-title__icon {
|
|
8
|
+
width: 40px;
|
|
9
|
+
height: 40px;
|
|
10
|
+
object-fit: none;
|
|
11
|
+
}
|
|
12
|
+
.orc-section-title__title {
|
|
13
|
+
margin: 0;
|
|
14
|
+
font-weight: 700;
|
|
15
|
+
letter-spacing: 0;
|
|
16
|
+
color: #ffffff;
|
|
17
|
+
}
|
|
18
|
+
.orc-section-title--xs .orc-section-title__title {
|
|
19
|
+
font-size: 14px;
|
|
20
|
+
line-height: 18px;
|
|
21
|
+
}
|
|
22
|
+
.orc-section-title--sm .orc-section-title__title {
|
|
23
|
+
font-size: 18px;
|
|
24
|
+
line-height: 24px;
|
|
25
|
+
}
|
|
26
|
+
.orc-section-title--md .orc-section-title__title {
|
|
27
|
+
font-size: 32px;
|
|
28
|
+
line-height: 48px;
|
|
29
|
+
}
|
|
30
|
+
.orc-section-title--lg .orc-section-title__title {
|
|
31
|
+
font-size: 22px;
|
|
32
|
+
line-height: 30px;
|
|
33
|
+
}
|
|
34
|
+
.orc-section-title--xs .orc-section-title__icon {
|
|
35
|
+
width: 24px;
|
|
36
|
+
height: 24px;
|
|
37
|
+
}
|
|
38
|
+
@media (max-width: 768px) {
|
|
39
|
+
.orc-section-title__icon {
|
|
40
|
+
width: 24px;
|
|
41
|
+
height: 24px;
|
|
42
|
+
}
|
|
43
|
+
.orc-section-title--xs .orc-section-title__title {
|
|
44
|
+
font-size: 14px;
|
|
45
|
+
line-height: 18px;
|
|
46
|
+
}
|
|
47
|
+
.orc-section-title--sm .orc-section-title__title {
|
|
48
|
+
font-size: 16px;
|
|
49
|
+
line-height: 22px;
|
|
50
|
+
}
|
|
51
|
+
.orc-section-title--md .orc-section-title__title {
|
|
52
|
+
font-size: 18px;
|
|
53
|
+
line-height: 24px;
|
|
54
|
+
}
|
|
55
|
+
.orc-section-title--lg .orc-section-title__title {
|
|
56
|
+
font-size: 20px;
|
|
57
|
+
line-height: 26px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/* src/atoms/OraculoButton/OraculoButton.css */
|
|
62
|
+
.orc-btn {
|
|
63
|
+
--nl-green: #9EE86E;
|
|
64
|
+
--nl-hover-hex: #D9F6C6;
|
|
65
|
+
--nl-hover-alpha: .22;
|
|
66
|
+
--nl-press: #254B0C;
|
|
67
|
+
--nl-disabled-border: #4a5542;
|
|
68
|
+
--nl-disabled-fg: #4a5542;
|
|
69
|
+
--stroke-w: 1.5px;
|
|
70
|
+
--h: 32px;
|
|
71
|
+
--pad-x: 12px;
|
|
72
|
+
--pad-y: 8px;
|
|
73
|
+
--radius: 12px;
|
|
74
|
+
box-sizing: border-box;
|
|
75
|
+
height: var(--h);
|
|
76
|
+
font-family: var(--clmc-font);
|
|
77
|
+
display: inline-flex;
|
|
78
|
+
align-items: center;
|
|
79
|
+
justify-content: center;
|
|
80
|
+
gap: 8px;
|
|
81
|
+
cursor: pointer;
|
|
82
|
+
text-decoration: none;
|
|
83
|
+
border-radius: var(--radius);
|
|
84
|
+
outline: none;
|
|
85
|
+
position: relative;
|
|
86
|
+
padding: var(--pad-y) var(--pad-x);
|
|
87
|
+
border: 0;
|
|
88
|
+
}
|
|
89
|
+
.orc-btn__label {
|
|
90
|
+
color: currentColor;
|
|
91
|
+
font-size: 14px;
|
|
92
|
+
}
|
|
93
|
+
.orc-btn__icon {
|
|
94
|
+
color: currentColor;
|
|
95
|
+
display: inline-flex;
|
|
96
|
+
line-height: 0;
|
|
97
|
+
font-size: 18px;
|
|
98
|
+
}
|
|
99
|
+
.orc-btn--primary {
|
|
100
|
+
background: var(--nl-green);
|
|
101
|
+
color: #1C1C1C;
|
|
102
|
+
box-shadow: inset 0 0 0 var(--stroke-w) transparent;
|
|
103
|
+
}
|
|
104
|
+
.orc-btn--primary:hover {
|
|
105
|
+
background: var(--nl-hover-hex);
|
|
106
|
+
color: #1C1C1C;
|
|
107
|
+
}
|
|
108
|
+
.orc-btn--primary:active {
|
|
109
|
+
background: var(--nl-press);
|
|
110
|
+
color: #FFFFFF;
|
|
111
|
+
transform: translateY(1px);
|
|
112
|
+
}
|
|
113
|
+
.orc-btn--primary:disabled,
|
|
114
|
+
.orc-btn--primary[aria-disabled=true] {
|
|
115
|
+
background: transparent;
|
|
116
|
+
color: var(--nl-disabled-fg);
|
|
117
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-disabled-border);
|
|
118
|
+
cursor: not-allowed;
|
|
119
|
+
transform: none;
|
|
120
|
+
opacity: 1;
|
|
121
|
+
}
|
|
122
|
+
.orc-btn--secondary {
|
|
123
|
+
background: transparent;
|
|
124
|
+
color: var(--nl-green);
|
|
125
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-green);
|
|
126
|
+
}
|
|
127
|
+
.orc-btn--secondary:hover {
|
|
128
|
+
background: rgba(229, 244, 219, var(--nl-hover-alpha)) !important;
|
|
129
|
+
color: var(--nl-hover-hex);
|
|
130
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-hover-hex);
|
|
131
|
+
}
|
|
132
|
+
.orc-btn--secondary:active {
|
|
133
|
+
transform: translateY(1px);
|
|
134
|
+
color: var(--nl-press);
|
|
135
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-press);
|
|
136
|
+
background: rgba(37, 75, 12, 0.10);
|
|
137
|
+
}
|
|
138
|
+
.orc-btn--secondary:focus-visible {
|
|
139
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-green), 0 0 0 3px rgba(197, 228, 177, .45);
|
|
140
|
+
}
|
|
141
|
+
.orc-btn--secondary:disabled,
|
|
142
|
+
.orc-btn--secondary[aria-disabled=true] {
|
|
143
|
+
background: transparent;
|
|
144
|
+
color: var(--nl-disabled-fg);
|
|
145
|
+
box-shadow: inset 0 0 0 var(--stroke-w) var(--nl-disabled-border);
|
|
146
|
+
cursor: not-allowed;
|
|
147
|
+
}
|
|
148
|
+
.orc-btn--tertiary {
|
|
149
|
+
background: transparent;
|
|
150
|
+
color: var(--nl-green);
|
|
151
|
+
box-shadow: none;
|
|
152
|
+
}
|
|
153
|
+
.orc-btn--tertiary:hover {
|
|
154
|
+
color: var(--nl-hover-hex);
|
|
155
|
+
}
|
|
156
|
+
.orc-btn--tertiary:active {
|
|
157
|
+
color: var(--nl-press);
|
|
158
|
+
background: rgba(37, 75, 12, 0.08);
|
|
159
|
+
transform: translateY(1px);
|
|
160
|
+
}
|
|
161
|
+
.orc-btn--tertiary:focus-visible {
|
|
162
|
+
box-shadow: 0 0 0 3px rgba(197, 228, 177, .45);
|
|
163
|
+
}
|
|
164
|
+
.orc-btn--tertiary:disabled,
|
|
165
|
+
.orc-btn--tertiary[aria-disabled=true] {
|
|
166
|
+
color: var(--nl-disabled-fg);
|
|
167
|
+
background: transparent;
|
|
168
|
+
box-shadow: none;
|
|
169
|
+
cursor: not-allowed;
|
|
170
|
+
}
|
|
171
|
+
.orc-btn--sm {
|
|
172
|
+
--h: 32px;
|
|
173
|
+
--pad-y: 8px;
|
|
174
|
+
--pad-x: 12px;
|
|
175
|
+
--radius: 12px;
|
|
176
|
+
}
|
|
177
|
+
.orc-btn--md {
|
|
178
|
+
--h: 40px;
|
|
179
|
+
--pad-y: 10px;
|
|
180
|
+
--pad-x: 16px;
|
|
181
|
+
--radius: 12px;
|
|
182
|
+
}
|
|
183
|
+
.orc-btn--lg {
|
|
184
|
+
--h: 48px;
|
|
185
|
+
--pad-y: 12px;
|
|
186
|
+
--pad-x: 20px;
|
|
187
|
+
--radius: 16px;
|
|
188
|
+
}
|
|
189
|
+
.orc-btn--sm .orc-btn__label,
|
|
190
|
+
.orc-btn--md .orc-btn__label,
|
|
191
|
+
.orc-btn--lg .orc-btn__label {
|
|
192
|
+
font-size: 14px !important;
|
|
193
|
+
}
|
|
194
|
+
.orc-btn--iconOnly {
|
|
195
|
+
width: 40px;
|
|
196
|
+
min-width: 40px;
|
|
197
|
+
padding: 0;
|
|
198
|
+
}
|
|
199
|
+
.orc-btn--sm.orc-btn--iconOnly {
|
|
200
|
+
width: 32px;
|
|
201
|
+
min-width: 32px;
|
|
202
|
+
}
|
|
203
|
+
.orc-btn--md.orc-btn--iconOnly {
|
|
204
|
+
width: 40px;
|
|
205
|
+
min-width: 40px;
|
|
206
|
+
}
|
|
207
|
+
.orc-btn--lg.orc-btn--iconOnly {
|
|
208
|
+
width: 48px;
|
|
209
|
+
min-width: 48px;
|
|
210
|
+
}
|
|
211
|
+
.orc-btn--full {
|
|
212
|
+
width: 100%;
|
|
213
|
+
}
|
|
214
|
+
.orc-btn--fullHeight {
|
|
215
|
+
height: 100%;
|
|
216
|
+
}
|