@websolutespa/bom-llm 0.0.12 → 0.0.13
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/CHANGELOG.md +8 -0
- package/dist/umd/index.css +165 -138
- package/dist/umd/index.js +569 -158
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
package/dist/umd/index.css
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
|
|
2
|
+
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
|
|
1
3
|
.llm html,
|
|
2
4
|
.llm body,
|
|
3
5
|
.llm p,
|
|
@@ -132,30 +134,6 @@
|
|
|
132
134
|
background-color: transparent;
|
|
133
135
|
}
|
|
134
136
|
|
|
135
|
-
.llm {
|
|
136
|
-
--llm-button-size: 60px;
|
|
137
|
-
--llm-color-ui-1: #003c8c;
|
|
138
|
-
--llm-color-ui-2: #73c3ff;
|
|
139
|
-
--llm-color-ui-3: #96dca0;
|
|
140
|
-
--llm-color-ui-4: #dcdc3c;
|
|
141
|
-
--llm-color-ui-5: #b41e5f;
|
|
142
|
-
--llm-color-ui-6: #aa96f0;
|
|
143
|
-
--llm-color-ui-7: #007378;
|
|
144
|
-
--llm-color-ui-8: #dcdc3c;
|
|
145
|
-
--llm-color-ui-9: #cda582;
|
|
146
|
-
--llm-color-ui-10: #ffe6a0;
|
|
147
|
-
--llm-color-ui-white: #fff;
|
|
148
|
-
--llm-color-ui-black: #000;
|
|
149
|
-
--llm-color-ui-grey-00: #6a6969;
|
|
150
|
-
--llm-color-ui-grey-01: #999;
|
|
151
|
-
--llm-color-ui-grey-02: #cdcdcd;
|
|
152
|
-
--llm-color-ui-grey-03: #e8e8e8;
|
|
153
|
-
--llm-color-ui-grey-04: #f6f6f6;
|
|
154
|
-
--llm-color-ui-grey-05: #fbfbfb;
|
|
155
|
-
--llm-font-primary: "Aeonik";
|
|
156
|
-
--llm-font-secondary: "Capraia";
|
|
157
|
-
}
|
|
158
|
-
|
|
159
137
|
@font-face {
|
|
160
138
|
font-family: "Aeonik";
|
|
161
139
|
src: url("https://design.wslabs.it/llm/fonts/Aeonik-Medium.woff2") format("woff2"), url("https://design.wslabs.it/llm/fonts/Aeonik-Medium.woff2") format("woff");
|
|
@@ -194,6 +172,27 @@
|
|
|
194
172
|
font-display: swap;
|
|
195
173
|
}
|
|
196
174
|
*/
|
|
175
|
+
.llm,
|
|
176
|
+
.llm h1,
|
|
177
|
+
.llm h2,
|
|
178
|
+
.llm h3,
|
|
179
|
+
.llm h4,
|
|
180
|
+
.llm h5,
|
|
181
|
+
.llm h6,
|
|
182
|
+
.llm a,
|
|
183
|
+
.llm b,
|
|
184
|
+
.llm em,
|
|
185
|
+
.llm p,
|
|
186
|
+
.llm strong,
|
|
187
|
+
.llm span,
|
|
188
|
+
.llm ol,
|
|
189
|
+
.llm ul {
|
|
190
|
+
color: inherit;
|
|
191
|
+
font-style: inherit;
|
|
192
|
+
font-weight: inherit;
|
|
193
|
+
font-family: var(--llm-font-primary);
|
|
194
|
+
}
|
|
195
|
+
|
|
197
196
|
.llm html,
|
|
198
197
|
.llm body,
|
|
199
198
|
.llm p,
|
|
@@ -293,6 +292,7 @@ llm-embed {
|
|
|
293
292
|
max-height: 100vh;
|
|
294
293
|
background: transparent;
|
|
295
294
|
overflow: clip;
|
|
295
|
+
border-radius: 10px;
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
.llm {
|
|
@@ -311,7 +311,7 @@ llm-embed {
|
|
|
311
311
|
z-index: 9999;
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
-
.-llm-t-display-1 {
|
|
314
|
+
.llm .-llm-t-display-1 {
|
|
315
315
|
line-height: 1;
|
|
316
316
|
font-family: var(--llm-font-primary);
|
|
317
317
|
font-weight: 500;
|
|
@@ -320,7 +320,7 @@ llm-embed {
|
|
|
320
320
|
font-size: clamp(32px, 32px + (100vw - 375px) / 1545 * (40), 72px);
|
|
321
321
|
}
|
|
322
322
|
|
|
323
|
-
.-llm-t-display-2 {
|
|
323
|
+
.llm .-llm-t-display-2 {
|
|
324
324
|
line-height: 1;
|
|
325
325
|
font-family: var(--llm-font-primary);
|
|
326
326
|
font-weight: 500;
|
|
@@ -329,7 +329,7 @@ llm-embed {
|
|
|
329
329
|
font-size: clamp(32px, 32px + (100vw - 375px) / 1545 * (32), 64px);
|
|
330
330
|
}
|
|
331
331
|
|
|
332
|
-
.-llm-t-display-3 {
|
|
332
|
+
.llm .-llm-t-display-3 {
|
|
333
333
|
line-height: 1;
|
|
334
334
|
font-family: var(--llm-font-primary);
|
|
335
335
|
font-weight: 500;
|
|
@@ -338,7 +338,7 @@ llm-embed {
|
|
|
338
338
|
font-size: clamp(24px, 24px + (100vw - 375px) / 1545 * (32), 56px);
|
|
339
339
|
}
|
|
340
340
|
|
|
341
|
-
.-llm-t-display-4 {
|
|
341
|
+
.llm .-llm-t-display-4 {
|
|
342
342
|
line-height: 1;
|
|
343
343
|
font-family: var(--llm-font-primary);
|
|
344
344
|
font-weight: 500;
|
|
@@ -347,7 +347,7 @@ llm-embed {
|
|
|
347
347
|
font-size: clamp(24px, 24px + (100vw - 375px) / 1545 * (24), 48px);
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
-
.-llm-t-display-5 {
|
|
350
|
+
.llm .-llm-t-display-5 {
|
|
351
351
|
line-height: 1;
|
|
352
352
|
font-family: var(--llm-font-primary);
|
|
353
353
|
font-weight: 500;
|
|
@@ -356,7 +356,7 @@ llm-embed {
|
|
|
356
356
|
font-size: clamp(24px, 24px + (100vw - 375px) / 1545 * (16), 40px);
|
|
357
357
|
}
|
|
358
358
|
|
|
359
|
-
.-llm-t-display-6 {
|
|
359
|
+
.llm .-llm-t-display-6 {
|
|
360
360
|
line-height: 1;
|
|
361
361
|
font-family: var(--llm-font-primary);
|
|
362
362
|
font-weight: 500;
|
|
@@ -365,7 +365,7 @@ llm-embed {
|
|
|
365
365
|
font-size: clamp(16px, 16px + (100vw - 375px) / 1545 * (16), 32px);
|
|
366
366
|
}
|
|
367
367
|
|
|
368
|
-
.-llm-t-heading-1 {
|
|
368
|
+
.llm .-llm-t-heading-1 {
|
|
369
369
|
line-height: 1;
|
|
370
370
|
font-family: var(--llm-font-primary);
|
|
371
371
|
font-weight: 500;
|
|
@@ -374,7 +374,7 @@ llm-embed {
|
|
|
374
374
|
font-size: clamp(18px, 18px + (100vw - 375px) / 1545 * (14), 32px);
|
|
375
375
|
}
|
|
376
376
|
|
|
377
|
-
.-llm-t-heading-2 {
|
|
377
|
+
.llm .-llm-t-heading-2 {
|
|
378
378
|
line-height: 1;
|
|
379
379
|
font-family: var(--llm-font-primary);
|
|
380
380
|
font-weight: 500;
|
|
@@ -383,7 +383,7 @@ llm-embed {
|
|
|
383
383
|
font-size: clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
384
384
|
}
|
|
385
385
|
|
|
386
|
-
.-llm-t-body-1 {
|
|
386
|
+
.llm .-llm-t-body-1 {
|
|
387
387
|
line-height: 1;
|
|
388
388
|
font-family: var(--llm-font-secondary);
|
|
389
389
|
font-weight: normal;
|
|
@@ -391,7 +391,7 @@ llm-embed {
|
|
|
391
391
|
font-size: clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
392
392
|
}
|
|
393
393
|
|
|
394
|
-
.-llm-t-body-2 {
|
|
394
|
+
.llm .-llm-t-body-2 {
|
|
395
395
|
line-height: 1;
|
|
396
396
|
font-family: var(--llm-font-primary);
|
|
397
397
|
font-weight: 500;
|
|
@@ -400,7 +400,7 @@ llm-embed {
|
|
|
400
400
|
font-size: clamp(16px, 16px + (100vw - 375px) / 1545 * (2), 18px);
|
|
401
401
|
}
|
|
402
402
|
|
|
403
|
-
.-llm-t-body-3 {
|
|
403
|
+
.llm .-llm-t-body-3 {
|
|
404
404
|
line-height: 1;
|
|
405
405
|
font-family: var(--llm-font-secondary);
|
|
406
406
|
font-weight: normal;
|
|
@@ -408,7 +408,7 @@ llm-embed {
|
|
|
408
408
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (4), 18px);
|
|
409
409
|
}
|
|
410
410
|
|
|
411
|
-
.-llm-t-body-4 {
|
|
411
|
+
.llm .-llm-t-body-4 {
|
|
412
412
|
line-height: 1;
|
|
413
413
|
font-family: var(--llm-font-primary);
|
|
414
414
|
font-weight: 500;
|
|
@@ -416,7 +416,7 @@ llm-embed {
|
|
|
416
416
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
417
417
|
}
|
|
418
418
|
|
|
419
|
-
.-llm-t-body-5 {
|
|
419
|
+
.llm .-llm-t-body-5 {
|
|
420
420
|
line-height: 1;
|
|
421
421
|
font-family: var(--llm-font-secondary);
|
|
422
422
|
font-weight: normal;
|
|
@@ -424,7 +424,7 @@ llm-embed {
|
|
|
424
424
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
425
425
|
}
|
|
426
426
|
|
|
427
|
-
.-llm-t-label-1 {
|
|
427
|
+
.llm .-llm-t-label-1 {
|
|
428
428
|
line-height: 1;
|
|
429
429
|
font-family: var(--llm-font-primary);
|
|
430
430
|
font-weight: 500;
|
|
@@ -432,7 +432,7 @@ llm-embed {
|
|
|
432
432
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
433
433
|
}
|
|
434
434
|
|
|
435
|
-
.-llm-t-cta-1 {
|
|
435
|
+
.llm .-llm-t-cta-1 {
|
|
436
436
|
line-height: 1;
|
|
437
437
|
font-family: var(--llm-font-primary);
|
|
438
438
|
font-weight: 500;
|
|
@@ -442,7 +442,7 @@ llm-embed {
|
|
|
442
442
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
443
443
|
}
|
|
444
444
|
|
|
445
|
-
.-llm-t-cta-2 {
|
|
445
|
+
.llm .-llm-t-cta-2 {
|
|
446
446
|
line-height: 1;
|
|
447
447
|
font-family: var(--llm-font-primary);
|
|
448
448
|
font-weight: 700;
|
|
@@ -451,7 +451,7 @@ llm-embed {
|
|
|
451
451
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
452
452
|
}
|
|
453
453
|
|
|
454
|
-
.-llm-t-cta-3 {
|
|
454
|
+
.llm .-llm-t-cta-3 {
|
|
455
455
|
line-height: 1;
|
|
456
456
|
font-family: var(--llm-font-primary);
|
|
457
457
|
font-weight: 500;
|
|
@@ -460,7 +460,7 @@ llm-embed {
|
|
|
460
460
|
font-size: clamp(12px, 12px + (100vw - 375px) / 1545 * (2), 14px);
|
|
461
461
|
}
|
|
462
462
|
|
|
463
|
-
.-llm-t-cta-4 {
|
|
463
|
+
.llm .-llm-t-cta-4 {
|
|
464
464
|
line-height: 1;
|
|
465
465
|
font-family: var(--llm-font-secondary);
|
|
466
466
|
font-weight: 300;
|
|
@@ -976,19 +976,20 @@ llm-embed {
|
|
|
976
976
|
pointer-events: auto;
|
|
977
977
|
margin: 24px;
|
|
978
978
|
border-radius: 50%;
|
|
979
|
-
background: var(--llm-trigger-background);
|
|
980
979
|
cursor: pointer;
|
|
981
980
|
position: relative;
|
|
982
981
|
}
|
|
983
982
|
.llm .llm__trigger-btn {
|
|
984
|
-
overflow: hidden;
|
|
985
|
-
border-radius: 50%;
|
|
986
|
-
width: var(--llm-button-size);
|
|
987
|
-
height: var(--llm-button-size);
|
|
988
|
-
background: var(--llm-color-ui-2);
|
|
989
983
|
position: relative;
|
|
984
|
+
width: var(--llm-trigger-size);
|
|
985
|
+
height: var(--llm-trigger-size);
|
|
986
|
+
border-radius: 50%;
|
|
987
|
+
overflow: hidden;
|
|
988
|
+
background: var(--llm-trigger-background);
|
|
989
|
+
color: var(--llm-trigger-foreground);
|
|
990
990
|
will-change: transform;
|
|
991
991
|
transition: 0.4s;
|
|
992
|
+
box-shadow: var(--llm-trigger-box-shadow);
|
|
992
993
|
cursor: pointer;
|
|
993
994
|
}
|
|
994
995
|
.llm .llm__trigger-btn > span {
|
|
@@ -1016,20 +1017,23 @@ llm-embed {
|
|
|
1016
1017
|
}
|
|
1017
1018
|
}
|
|
1018
1019
|
.llm .llm__trigger-welcome > div {
|
|
1019
|
-
position:
|
|
1020
|
-
border-radius: 12px;
|
|
1020
|
+
position: absolute;
|
|
1021
1021
|
padding: clamp(8px, 8px + (100vw - 375px) / 1545 * (8), 16px) clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
1022
1022
|
min-width: 200px;
|
|
1023
|
-
text-align: center;
|
|
1024
|
-
color: white;
|
|
1025
|
-
position: absolute;
|
|
1026
|
-
bottom: calc(100% + clamp(8px, 8px + (100vw - 375px) / 1545 * (0), 8px));
|
|
1027
1023
|
left: 50%;
|
|
1024
|
+
bottom: calc(100% + clamp(8px, 8px + (100vw - 375px) / 1545 * (0), 8px));
|
|
1028
1025
|
translate: -50% 0%;
|
|
1029
|
-
|
|
1026
|
+
border-radius: 12px;
|
|
1027
|
+
text-align: center;
|
|
1028
|
+
background: var(--llm-color-background);
|
|
1029
|
+
color: var(--llm-color-foreground);
|
|
1030
1030
|
transition: 0.4s;
|
|
1031
|
+
pointer-events: none;
|
|
1031
1032
|
overflow: hidden;
|
|
1032
1033
|
}
|
|
1034
|
+
.llm .llm__trigger-welcome > div > span {
|
|
1035
|
+
position: relative;
|
|
1036
|
+
}
|
|
1033
1037
|
.llm .llm__trigger-welcome > div + div {
|
|
1034
1038
|
min-width: 250px;
|
|
1035
1039
|
translate: -50% 10%;
|
|
@@ -1064,7 +1068,7 @@ llm-embed {
|
|
|
1064
1068
|
.llm .llm__background {
|
|
1065
1069
|
pointer-events: none;
|
|
1066
1070
|
position: absolute;
|
|
1067
|
-
background: var(--llm-color-
|
|
1071
|
+
background: var(--llm-color-background);
|
|
1068
1072
|
inset: 0;
|
|
1069
1073
|
z-index: -1;
|
|
1070
1074
|
}
|
|
@@ -1087,14 +1091,14 @@ llm-embed {
|
|
|
1087
1091
|
position: relative;
|
|
1088
1092
|
pointer-events: auto;
|
|
1089
1093
|
inset: 0;
|
|
1090
|
-
background: var(--llm-color-
|
|
1094
|
+
background: var(--llm-color-background);
|
|
1095
|
+
color: var(--llm-color-foreground);
|
|
1091
1096
|
}
|
|
1092
1097
|
.llm .llm__scroller {
|
|
1093
1098
|
position: absolute;
|
|
1094
1099
|
inset: 0;
|
|
1095
1100
|
overflow-x: hidden;
|
|
1096
1101
|
overflow-y: auto;
|
|
1097
|
-
color: var(--llm-color-ui-white);
|
|
1098
1102
|
}
|
|
1099
1103
|
.llm .llm__scroller::-webkit-scrollbar {
|
|
1100
1104
|
width: 6px;
|
|
@@ -1181,10 +1185,10 @@ llm-embed {
|
|
|
1181
1185
|
top: 110px;
|
|
1182
1186
|
right: clamp(24px, 24px + (100vw - 375px) / 1545 * (16), 40px);
|
|
1183
1187
|
z-index: 9;
|
|
1184
|
-
cursor: pointer;
|
|
1185
1188
|
border-radius: 50%;
|
|
1186
|
-
background: var(--llm-
|
|
1187
|
-
color: var(--llm-
|
|
1189
|
+
background: var(--llm-input-background);
|
|
1190
|
+
color: var(--llm-input-accent);
|
|
1191
|
+
cursor: pointer;
|
|
1188
1192
|
}
|
|
1189
1193
|
.llm .llm__toggle-speak svg {
|
|
1190
1194
|
display: block;
|
|
@@ -1286,13 +1290,13 @@ llm-embed {
|
|
|
1286
1290
|
object-fit: contain;
|
|
1287
1291
|
}
|
|
1288
1292
|
.llm .llm__header-back {
|
|
1289
|
-
color: white;
|
|
1290
|
-
text-transform: uppercase;
|
|
1291
|
-
cursor: pointer;
|
|
1292
1293
|
display: inline-flex;
|
|
1293
1294
|
align-items: center;
|
|
1294
1295
|
gap: clamp(8px, 8px + (100vw - 375px) / 1545 * (0), 8px);
|
|
1296
|
+
text-transform: uppercase;
|
|
1295
1297
|
user-select: none;
|
|
1298
|
+
color: var(--llm-color-foreground);
|
|
1299
|
+
cursor: pointer;
|
|
1296
1300
|
}
|
|
1297
1301
|
|
|
1298
1302
|
.llm .llm__intro-blob {
|
|
@@ -1319,64 +1323,75 @@ llm-embed {
|
|
|
1319
1323
|
flex-direction: column;
|
|
1320
1324
|
gap: clamp(24px, 24px + (100vw - 375px) / 1545 * (16), 40px);
|
|
1321
1325
|
}
|
|
1322
|
-
.llm .llm__intro-
|
|
1326
|
+
.llm .llm__intro-hints {
|
|
1323
1327
|
margin-top: clamp(24px, 24px + (100vw - 375px) / 1545 * (16), 40px);
|
|
1324
1328
|
}
|
|
1325
1329
|
@media (min-width: 1024px) {
|
|
1326
|
-
.llm .llm__intro-
|
|
1330
|
+
.llm .llm__intro-hints {
|
|
1327
1331
|
margin-top: 0;
|
|
1328
1332
|
}
|
|
1329
1333
|
}
|
|
1334
|
+
.llm .llm__customIntro {
|
|
1335
|
+
position: fixed;
|
|
1336
|
+
top: 0;
|
|
1337
|
+
left: 0;
|
|
1338
|
+
width: 100%;
|
|
1339
|
+
height: 100vh;
|
|
1340
|
+
border: 0;
|
|
1341
|
+
background: transparent;
|
|
1342
|
+
}
|
|
1330
1343
|
|
|
1331
|
-
.llm .
|
|
1344
|
+
.llm .llm__hints {
|
|
1332
1345
|
margin: 0 calc(clamp(20px, 20px + (100vw - 375px) / 1545 * (90), 110px) * -1);
|
|
1333
1346
|
}
|
|
1334
1347
|
@media (min-width: 768px) {
|
|
1335
|
-
.llm .
|
|
1348
|
+
.llm .llm__hints {
|
|
1336
1349
|
margin: 0;
|
|
1337
1350
|
display: grid;
|
|
1338
1351
|
grid-template-columns: repeat(2, 1fr);
|
|
1339
1352
|
gap: clamp(8px, 8px + (100vw - 375px) / 1545 * (8), 16px);
|
|
1340
1353
|
}
|
|
1341
1354
|
}
|
|
1342
|
-
.llm .
|
|
1355
|
+
.llm .llm__hints .swiper-wrapper {
|
|
1343
1356
|
padding: 1px 0;
|
|
1344
1357
|
}
|
|
1345
|
-
.llm .
|
|
1358
|
+
.llm .llm__hints .swiper-slide {
|
|
1346
1359
|
height: auto;
|
|
1347
1360
|
}
|
|
1348
|
-
.llm .
|
|
1349
|
-
height: 100%;
|
|
1350
|
-
background: linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%);
|
|
1351
|
-
border: 1px solid rgba(237, 237, 237, 0.3);
|
|
1352
|
-
backdrop-filter: blur(20px);
|
|
1353
|
-
border-radius: 12px;
|
|
1354
|
-
padding: clamp(24px, 24px + (100vw - 375px) / 1545 * (8), 32px);
|
|
1361
|
+
.llm .llm__hint {
|
|
1355
1362
|
display: flex;
|
|
1356
1363
|
flex-direction: column;
|
|
1357
1364
|
gap: clamp(8px, 8px + (100vw - 375px) / 1545 * (8), 16px);
|
|
1365
|
+
padding: clamp(24px, 24px + (100vw - 375px) / 1545 * (8), 32px);
|
|
1366
|
+
height: 100%;
|
|
1367
|
+
border-radius: var(--llm-hint-border-radius);
|
|
1368
|
+
background: var(--llm-hint-background);
|
|
1369
|
+
color: var(--llm-hint-foreground);
|
|
1370
|
+
border: var(--llm-hint-border);
|
|
1371
|
+
font-family: var(--llm-hint-font-family);
|
|
1372
|
+
backdrop-filter: blur(20px);
|
|
1358
1373
|
cursor: pointer;
|
|
1359
1374
|
}
|
|
1360
1375
|
@media (min-width: 768px) {
|
|
1361
|
-
.llm .
|
|
1376
|
+
.llm .llm__hint:first-child {
|
|
1362
1377
|
grid-column: span 2;
|
|
1363
1378
|
}
|
|
1364
1379
|
}
|
|
1365
|
-
.llm .
|
|
1380
|
+
.llm .llm__hint-title {
|
|
1366
1381
|
display: flex;
|
|
1367
1382
|
align-items: center;
|
|
1368
1383
|
gap: clamp(8px, 8px + (100vw - 375px) / 1545 * (8), 16px);
|
|
1369
1384
|
text-transform: uppercase;
|
|
1370
1385
|
}
|
|
1371
|
-
.llm .
|
|
1386
|
+
.llm .llm__hint-title i {
|
|
1372
1387
|
display: block;
|
|
1373
1388
|
width: 18px;
|
|
1374
1389
|
height: 18px;
|
|
1375
1390
|
}
|
|
1376
|
-
.llm .
|
|
1391
|
+
.llm .llm__hint-title i svg {
|
|
1377
1392
|
fill: currentColor;
|
|
1378
1393
|
}
|
|
1379
|
-
.llm .
|
|
1394
|
+
.llm .llm__hint-body {
|
|
1380
1395
|
line-height: 140%;
|
|
1381
1396
|
}
|
|
1382
1397
|
|
|
@@ -1391,31 +1406,31 @@ llm-embed {
|
|
|
1391
1406
|
box-shadow: -4px 4px 50px 0px rgba(8, 20, 62, 0.08);
|
|
1392
1407
|
border-radius: 8px;
|
|
1393
1408
|
overflow: hidden;
|
|
1394
|
-
background:
|
|
1409
|
+
background: var(--llm-input-background);
|
|
1395
1410
|
width: 100%;
|
|
1396
1411
|
}
|
|
1397
1412
|
.llm .llm__prompt-textarea {
|
|
1413
|
+
appearance: none;
|
|
1414
|
+
display: block;
|
|
1415
|
+
margin: 0;
|
|
1416
|
+
padding: 10px 40px;
|
|
1417
|
+
width: 100%;
|
|
1418
|
+
max-height: 120px;
|
|
1419
|
+
min-height: 45px;
|
|
1420
|
+
outline: none;
|
|
1421
|
+
border: none;
|
|
1422
|
+
resize: none;
|
|
1423
|
+
border-radius: 0;
|
|
1398
1424
|
line-height: 1;
|
|
1399
1425
|
font-family: var(--llm-font-secondary);
|
|
1400
1426
|
font-weight: normal;
|
|
1401
1427
|
line-height: 1.4;
|
|
1402
1428
|
font-size: clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
1429
|
+
font-family: var(--llm-input-font-family);
|
|
1403
1430
|
font-size: 16px;
|
|
1404
|
-
width: 100%;
|
|
1405
1431
|
line-height: 1.3;
|
|
1406
|
-
-webkit-appearance: none;
|
|
1407
|
-
appearance: none;
|
|
1408
|
-
outline: none;
|
|
1409
|
-
border: none;
|
|
1410
|
-
margin: 0;
|
|
1411
|
-
padding: 10px 40px;
|
|
1412
|
-
resize: none;
|
|
1413
|
-
max-height: 120px;
|
|
1414
|
-
min-height: 45px;
|
|
1415
|
-
border-radius: 0;
|
|
1416
1432
|
background: transparent;
|
|
1417
|
-
|
|
1418
|
-
color: black;
|
|
1433
|
+
color: var(--llm-input-foreground);
|
|
1419
1434
|
}
|
|
1420
1435
|
@media (min-width: 1024px) {
|
|
1421
1436
|
.llm .llm__prompt-textarea {
|
|
@@ -1426,16 +1441,16 @@ llm-embed {
|
|
|
1426
1441
|
}
|
|
1427
1442
|
.llm .llm__prompt-speak, .llm .llm__prompt-microphone {
|
|
1428
1443
|
position: absolute;
|
|
1429
|
-
|
|
1430
|
-
|
|
1444
|
+
display: flex;
|
|
1445
|
+
align-items: center;
|
|
1446
|
+
justify-content: center;
|
|
1431
1447
|
width: 32px;
|
|
1432
1448
|
height: 32px;
|
|
1433
1449
|
top: 50%;
|
|
1434
1450
|
transform: translateY(-50%);
|
|
1435
|
-
display: flex;
|
|
1436
|
-
align-items: center;
|
|
1437
|
-
justify-content: center;
|
|
1438
1451
|
border-radius: 50%;
|
|
1452
|
+
font-size: 16px;
|
|
1453
|
+
color: var(--llm-input-accent);
|
|
1439
1454
|
cursor: pointer;
|
|
1440
1455
|
}
|
|
1441
1456
|
.llm .llm__prompt-speak svg, .llm .llm__prompt-microphone svg {
|
|
@@ -1450,18 +1465,18 @@ llm-embed {
|
|
|
1450
1465
|
outline: 2px solid transparent;
|
|
1451
1466
|
}
|
|
1452
1467
|
.llm .llm__prompt-microphone:active {
|
|
1453
|
-
outline: 2px solid var(--llm-color-
|
|
1468
|
+
outline: 2px solid var(--llm-color-base-100);
|
|
1454
1469
|
}
|
|
1455
1470
|
.llm .llm__prompt-submit, .llm .llm__prompt-stop {
|
|
1456
1471
|
flex-shrink: 0;
|
|
1457
1472
|
width: 45px;
|
|
1458
1473
|
height: 45px;
|
|
1459
|
-
color: var(--llm-color-ui-1);
|
|
1460
1474
|
position: relative;
|
|
1461
1475
|
display: flex;
|
|
1462
1476
|
align-items: center;
|
|
1463
1477
|
justify-content: center;
|
|
1464
|
-
background: var(--llm-
|
|
1478
|
+
background: var(--llm-trigger-background);
|
|
1479
|
+
color: var(--llm-trigger-foreground);
|
|
1465
1480
|
border-radius: 50%;
|
|
1466
1481
|
cursor: pointer;
|
|
1467
1482
|
}
|
|
@@ -1510,7 +1525,7 @@ llm-embed {
|
|
|
1510
1525
|
.llm .llm__prompt-suggestions .swiper-slide {
|
|
1511
1526
|
width: auto;
|
|
1512
1527
|
}
|
|
1513
|
-
.llm .
|
|
1528
|
+
.llm .llm__pill {
|
|
1514
1529
|
line-height: 1;
|
|
1515
1530
|
font-family: var(--llm-font-primary);
|
|
1516
1531
|
font-weight: 700;
|
|
@@ -1518,11 +1533,12 @@ llm-embed {
|
|
|
1518
1533
|
letter-spacing: 0.02em;
|
|
1519
1534
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
1520
1535
|
padding: clamp(8px, 8px + (100vw - 375px) / 1545 * (0), 8px);
|
|
1521
|
-
|
|
1522
|
-
border:
|
|
1523
|
-
|
|
1536
|
+
border-radius: var(--llm-pill-border-radius);
|
|
1537
|
+
border: var(--llm-pill-border);
|
|
1538
|
+
background: var(--llm-pill-background);
|
|
1539
|
+
color: var(--llm-pill-foreground);
|
|
1540
|
+
font-family: var(--llm-pill-font-family);
|
|
1524
1541
|
backdrop-filter: blur(20px);
|
|
1525
|
-
color: white;
|
|
1526
1542
|
cursor: pointer;
|
|
1527
1543
|
}
|
|
1528
1544
|
.llm .llm__prompt-powered-by {
|
|
@@ -1531,11 +1547,11 @@ llm-embed {
|
|
|
1531
1547
|
justify-content: center;
|
|
1532
1548
|
align-items: center;
|
|
1533
1549
|
column-gap: 4px;
|
|
1550
|
+
padding: 6px 0;
|
|
1534
1551
|
right: 0;
|
|
1535
1552
|
left: 0;
|
|
1536
1553
|
font-size: 12px;
|
|
1537
|
-
color:
|
|
1538
|
-
padding: 6px 0;
|
|
1554
|
+
color: var(--llm-color-foreground);
|
|
1539
1555
|
opacity: 0.4;
|
|
1540
1556
|
transition: opacity ease-in-out 250ms;
|
|
1541
1557
|
cursor: pointer;
|
|
@@ -1572,6 +1588,9 @@ llm-embed {
|
|
|
1572
1588
|
letter-spacing: 0.02em;
|
|
1573
1589
|
font-size: clamp(16px, 16px + (100vw - 375px) / 1545 * (16), 32px);
|
|
1574
1590
|
}
|
|
1591
|
+
.llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body {
|
|
1592
|
+
font-family: var(--llm-font-primary);
|
|
1593
|
+
}
|
|
1575
1594
|
.llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body h1 {
|
|
1576
1595
|
line-height: 1;
|
|
1577
1596
|
font-family: var(--llm-font-primary);
|
|
@@ -1617,11 +1636,14 @@ llm-embed {
|
|
|
1617
1636
|
.llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body a {
|
|
1618
1637
|
text-decoration: underline;
|
|
1619
1638
|
}
|
|
1639
|
+
.llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body a:link, .llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body a:active, .llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body a:visited, .llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body a:hover {
|
|
1640
|
+
color: var(--llm-color-neutral-100);
|
|
1641
|
+
}
|
|
1620
1642
|
.llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body img {
|
|
1621
1643
|
max-width: 320px;
|
|
1622
1644
|
padding: 8px;
|
|
1623
1645
|
border-radius: 8px;
|
|
1624
|
-
border:
|
|
1646
|
+
border: var(--llm-pill-border);
|
|
1625
1647
|
}
|
|
1626
1648
|
.llm .llm__message--assistant .llm__inner--string .llm__text .llm__text-body .llm__text-img {
|
|
1627
1649
|
display: block;
|
|
@@ -1747,7 +1769,7 @@ llm-embed {
|
|
|
1747
1769
|
padding-top: clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
1748
1770
|
}
|
|
1749
1771
|
.llm .llm__event-location svg {
|
|
1750
|
-
color: var(--llm-color-
|
|
1772
|
+
color: var(--llm-color-accent-foreground);
|
|
1751
1773
|
width: 20px;
|
|
1752
1774
|
height: 20px;
|
|
1753
1775
|
}
|
|
@@ -1780,10 +1802,11 @@ llm-embed {
|
|
|
1780
1802
|
font-size: clamp(14px, 14px + (100vw - 375px) / 1545 * (2), 16px);
|
|
1781
1803
|
}
|
|
1782
1804
|
.llm .llm__event-time {
|
|
1783
|
-
background: var(--llm-color-
|
|
1805
|
+
background: var(--llm-color-secondary-background);
|
|
1806
|
+
color: var(--llm-color-secondary-foreground);
|
|
1784
1807
|
}
|
|
1785
1808
|
.llm .llm__event-date {
|
|
1786
|
-
background: var(--llm-color-
|
|
1809
|
+
background: var(--llm-color-base-100);
|
|
1787
1810
|
}
|
|
1788
1811
|
.llm .llm__event--event {
|
|
1789
1812
|
margin-top: clamp(32px, 32px + (100vw - 375px) / 1545 * (48), 80px);
|
|
@@ -1866,7 +1889,7 @@ llm-embed {
|
|
|
1866
1889
|
position: absolute;
|
|
1867
1890
|
top: 0;
|
|
1868
1891
|
left: 0;
|
|
1869
|
-
color: var(--llm-color-
|
|
1892
|
+
color: var(--llm-color-foreground);
|
|
1870
1893
|
display: flex;
|
|
1871
1894
|
gap: clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
1872
1895
|
}
|
|
@@ -1903,7 +1926,7 @@ llm-embed {
|
|
|
1903
1926
|
display: inline-flex;
|
|
1904
1927
|
align-items: center;
|
|
1905
1928
|
gap: clamp(8px, 8px + (100vw - 375px) / 1545 * (0), 8px);
|
|
1906
|
-
color: var(--llm-color-
|
|
1929
|
+
color: var(--llm-color-foreground);
|
|
1907
1930
|
overflow: hidden;
|
|
1908
1931
|
white-space: nowrap;
|
|
1909
1932
|
transition: opacity 0.3s;
|
|
@@ -1921,8 +1944,8 @@ llm-embed {
|
|
|
1921
1944
|
line-height: 1;
|
|
1922
1945
|
letter-spacing: 0.06em;
|
|
1923
1946
|
font-size: clamp(12px, 12px + (100vw - 375px) / 1545 * (2), 14px);
|
|
1924
|
-
background: var(--llm-color-
|
|
1925
|
-
color: var(--llm-color-
|
|
1947
|
+
background: var(--llm-color-primary-background);
|
|
1948
|
+
color: var(--llm-color-primary-foreground);
|
|
1926
1949
|
height: 42px;
|
|
1927
1950
|
font-style: normal;
|
|
1928
1951
|
margin: 0;
|
|
@@ -1946,6 +1969,9 @@ llm-embed {
|
|
|
1946
1969
|
z-index: 2;
|
|
1947
1970
|
position: relative;
|
|
1948
1971
|
}
|
|
1972
|
+
.llm .llm__cta--submit {
|
|
1973
|
+
background: var(--llm-color-background);
|
|
1974
|
+
}
|
|
1949
1975
|
.llm .llm__cta--simple {
|
|
1950
1976
|
line-height: 1;
|
|
1951
1977
|
font-family: var(--llm-font-primary);
|
|
@@ -1958,7 +1984,7 @@ llm-embed {
|
|
|
1958
1984
|
background: linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%);
|
|
1959
1985
|
border: 1px solid rgba(237, 237, 237, 0.3);
|
|
1960
1986
|
backdrop-filter: blur(20px);
|
|
1961
|
-
color: var(--llm-color-
|
|
1987
|
+
color: var(--llm-color-foreground);
|
|
1962
1988
|
font-style: normal;
|
|
1963
1989
|
border-radius: 12px;
|
|
1964
1990
|
overflow: hidden;
|
|
@@ -2158,20 +2184,20 @@ llm-embed {
|
|
|
2158
2184
|
width: 100%;
|
|
2159
2185
|
}
|
|
2160
2186
|
.llm .llm__tripadv-inner {
|
|
2161
|
-
|
|
2187
|
+
position: relative;
|
|
2162
2188
|
display: flex;
|
|
2163
2189
|
flex-direction: row;
|
|
2164
2190
|
gap: clamp(16px, 16px + (100vw - 375px) / 1545 * (8), 24px);
|
|
2191
|
+
width: 100%;
|
|
2165
2192
|
padding: clamp(24px, 24px + (100vw - 375px) / 1545 * (8), 32px) 0;
|
|
2166
|
-
border-top:
|
|
2167
|
-
position: relative;
|
|
2193
|
+
border-top: var(--llm-border);
|
|
2168
2194
|
}
|
|
2169
2195
|
.llm .llm__tripadv-media {
|
|
2196
|
+
flex-shrink: 0;
|
|
2197
|
+
position: relative;
|
|
2170
2198
|
width: clamp(60px, 60px + (100vw - 375px) / 1545 * (140), 200px);
|
|
2171
2199
|
height: clamp(60px, 60px + (100vw - 375px) / 1545 * (140), 200px);
|
|
2172
|
-
position: relative;
|
|
2173
2200
|
overflow: hidden;
|
|
2174
|
-
flex-shrink: 0;
|
|
2175
2201
|
}
|
|
2176
2202
|
.llm .llm__tripadv-media img {
|
|
2177
2203
|
display: block;
|
|
@@ -2252,7 +2278,7 @@ llm-embed {
|
|
|
2252
2278
|
gap: clamp(8px, 8px + (100vw - 375px) / 1545 * (0), 8px);
|
|
2253
2279
|
}
|
|
2254
2280
|
.llm .llm__tripadv-location svg {
|
|
2255
|
-
color: var(--llm-color-
|
|
2281
|
+
color: var(--llm-color-accent-foreground);
|
|
2256
2282
|
width: 20px;
|
|
2257
2283
|
height: 20px;
|
|
2258
2284
|
}
|
|
@@ -2281,7 +2307,7 @@ llm-embed {
|
|
|
2281
2307
|
left: 0;
|
|
2282
2308
|
width: 100%;
|
|
2283
2309
|
height: 100%;
|
|
2284
|
-
opacity:
|
|
2310
|
+
opacity: var(--llm-canvas-opacity);
|
|
2285
2311
|
}
|
|
2286
2312
|
|
|
2287
2313
|
.llm .llm__inner--formRequest:not(:first-child) .llm__text-body {
|
|
@@ -2345,14 +2371,15 @@ llm-embed {
|
|
|
2345
2371
|
.llm .llm__subscribe-field input[type=email] {
|
|
2346
2372
|
line-height: 1;
|
|
2347
2373
|
appearance: none;
|
|
2348
|
-
border-radius: 5px;
|
|
2349
|
-
background: var(--llm-color-ui-white);
|
|
2350
2374
|
display: block;
|
|
2375
|
+
width: 100%;
|
|
2351
2376
|
height: 56px;
|
|
2352
2377
|
padding: 0 clamp(24px, 24px + (100vw - 375px) / 1545 * (8), 32px);
|
|
2353
|
-
border:
|
|
2354
|
-
|
|
2355
|
-
|
|
2378
|
+
border-radius: 5px;
|
|
2379
|
+
border: var(--llm-border);
|
|
2380
|
+
font-family: var(--llm-input-font-family);
|
|
2381
|
+
background: var(--llm-input-background);
|
|
2382
|
+
color: var(--llm-input-foreground);
|
|
2356
2383
|
}
|
|
2357
2384
|
.llm .llm__subscribe-field.-privacy {
|
|
2358
2385
|
width: 100%;
|
|
@@ -2380,13 +2407,13 @@ llm-embed {
|
|
|
2380
2407
|
.llm .llm__subscribe-field.-privacy label:before, .llm .llm__subscribe-field.-privacy label:after {
|
|
2381
2408
|
content: "";
|
|
2382
2409
|
display: block;
|
|
2383
|
-
|
|
2384
|
-
border: 2px solid var(--llm-color-ui-white);
|
|
2410
|
+
position: absolute;
|
|
2385
2411
|
width: 16px;
|
|
2386
2412
|
height: 16px;
|
|
2387
|
-
position: absolute;
|
|
2388
|
-
left: 0;
|
|
2389
2413
|
top: 2px;
|
|
2414
|
+
left: 0;
|
|
2415
|
+
border-radius: 2px;
|
|
2416
|
+
border: var(--llm-checkbox-border);
|
|
2390
2417
|
}
|
|
2391
2418
|
.llm .llm__subscribe-field.-privacy label:after {
|
|
2392
2419
|
display: none;
|
|
@@ -2446,7 +2473,7 @@ llm-embed {
|
|
|
2446
2473
|
left: 50%;
|
|
2447
2474
|
display: block;
|
|
2448
2475
|
border-radius: 50%;
|
|
2449
|
-
background: var(--llm-color-
|
|
2476
|
+
background: var(--llm-color-foreground);
|
|
2450
2477
|
transform: translate(-50%, -50%);
|
|
2451
2478
|
z-index: 2;
|
|
2452
2479
|
width: 5px;
|
|
@@ -2463,7 +2490,7 @@ llm-embed {
|
|
|
2463
2490
|
left: 50%;
|
|
2464
2491
|
display: block;
|
|
2465
2492
|
border-radius: 50%;
|
|
2466
|
-
background: var(--llm-color-
|
|
2493
|
+
background: var(--llm-color-foreground);
|
|
2467
2494
|
transform: translate(-50%, -50%);
|
|
2468
2495
|
z-index: 2;
|
|
2469
2496
|
width: 5px;
|