@icvdeveloper/common-module 0.0.91 → 0.0.92

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.
Files changed (93) hide show
  1. package/README.md +6 -6
  2. package/dist/module.json +1 -1
  3. package/dist/runtime/assets/scss/index.css +705 -0
  4. package/dist/runtime/assets/svg/answer.svg +14 -14
  5. package/dist/runtime/assets/svg/avatar.svg +1 -1
  6. package/dist/runtime/assets/svg/bell-icon.svg +3 -3
  7. package/dist/runtime/assets/svg/checkmark-icon.svg +1 -1
  8. package/dist/runtime/assets/svg/close-icon.svg +1 -1
  9. package/dist/runtime/assets/svg/icon-avatar.svg +1 -1
  10. package/dist/runtime/assets/svg/icon-chevron.svg +4 -4
  11. package/dist/runtime/assets/svg/icon-circle-plus.svg +1 -1
  12. package/dist/runtime/assets/svg/icon-close.svg +1 -1
  13. package/dist/runtime/assets/svg/icon-info.svg +2 -2
  14. package/dist/runtime/assets/svg/icon-new-window.svg +11 -11
  15. package/dist/runtime/assets/svg/icon-offline.svg +3 -3
  16. package/dist/runtime/assets/svg/icon-online.svg +3 -3
  17. package/dist/runtime/assets/svg/icon-person.svg +2 -2
  18. package/dist/runtime/assets/svg/icon-play.svg +2 -2
  19. package/dist/runtime/assets/svg/icon-star-filled.svg +29 -29
  20. package/dist/runtime/assets/svg/icon-star.svg +24 -24
  21. package/dist/runtime/assets/svg/icon-video-chat.svg +14 -14
  22. package/dist/runtime/assets/svg/icon-website.svg +2 -2
  23. package/dist/runtime/assets/svg/icon-zoom.svg +10 -10
  24. package/dist/runtime/assets/svg/notification-icon.svg +32 -32
  25. package/dist/runtime/assets/svg/offline-icon.svg +1 -1
  26. package/dist/runtime/assets/svg/online-icon.svg +3 -3
  27. package/dist/runtime/assets/svg/peer2peer.svg +3 -3
  28. package/dist/runtime/assets/svg/phone.svg +1 -1
  29. package/dist/runtime/assets/svg/plus-icon.svg +1 -1
  30. package/dist/runtime/assets/svg/red-icon.svg +3 -3
  31. package/dist/runtime/assets/svg/reject.svg +14 -14
  32. package/dist/runtime/assets/svg/search-icon.svg +3 -3
  33. package/dist/runtime/components/affiliates/AffiliatePage.vue +17 -17
  34. package/dist/runtime/components/agenda/AgendaList.vue +243 -243
  35. package/dist/runtime/components/agenda/AgendaTabbed.vue +309 -309
  36. package/dist/runtime/components/agenda/components/AgendaListAccordion.vue +53 -53
  37. package/dist/runtime/components/agenda/components/Calendar.vue +89 -89
  38. package/dist/runtime/components/agenda/components/InfoLink.vue +56 -56
  39. package/dist/runtime/components/agenda/components/PlayIcon.vue +49 -49
  40. package/dist/runtime/components/agenda/components/PresentationLink.vue +137 -137
  41. package/dist/runtime/components/agenda/components/Sponsor.vue +132 -132
  42. package/dist/runtime/components/auth/LoginFullWidth.vue +78 -78
  43. package/dist/runtime/components/auth/PasswordReset.vue +60 -60
  44. package/dist/runtime/components/auth/Registration.vue +27 -27
  45. package/dist/runtime/components/auth/Ucc.vue +81 -81
  46. package/dist/runtime/components/core/Accordion.vue +97 -97
  47. package/dist/runtime/components/core/CountdownTimer.vue +357 -357
  48. package/dist/runtime/components/core/DynamicHtml.vue +1 -1
  49. package/dist/runtime/components/core/Modal.vue +111 -111
  50. package/dist/runtime/components/core/Navbar.vue +154 -154
  51. package/dist/runtime/components/core/SvgIcon.vue +151 -151
  52. package/dist/runtime/components/core/ZoomModal.vue +37 -37
  53. package/dist/runtime/components/events/EventHeader.vue +133 -133
  54. package/dist/runtime/components/events/ListEvents.vue +531 -531
  55. package/dist/runtime/components/forms/AlertBox.vue +21 -21
  56. package/dist/runtime/components/forms/ErrorField.vue +17 -17
  57. package/dist/runtime/components/forms/Message.vue +27 -27
  58. package/dist/runtime/components/forms/SearchInput.vue +38 -38
  59. package/dist/runtime/components/forms/SupportForm.vue +112 -112
  60. package/dist/runtime/components/forms/SwitchInput.vue +42 -42
  61. package/dist/runtime/components/forms/TextArea.vue +26 -26
  62. package/dist/runtime/components/forms/TextInput.vue +28 -28
  63. package/dist/runtime/components/layouts/Accordion.vue +78 -78
  64. package/dist/runtime/components/media/PlayerAndContentContainer.vue +175 -175
  65. package/dist/runtime/components/media/WebcastVideoPlayer.vue +167 -167
  66. package/dist/runtime/components/media/components/AgendaPanel.vue +43 -43
  67. package/dist/runtime/components/media/components/CeCreditNotification.vue +95 -95
  68. package/dist/runtime/components/media/components/ContentAccordion.vue +63 -63
  69. package/dist/runtime/components/media/components/ContentAccordion.vue.d.ts +1 -3
  70. package/dist/runtime/components/media/components/ContentArea.vue +158 -158
  71. package/dist/runtime/components/media/components/ContentTabs.vue +231 -231
  72. package/dist/runtime/components/media/components/DocumentsPanel.vue +31 -31
  73. package/dist/runtime/components/media/components/JsonApi.vue +31 -31
  74. package/dist/runtime/components/media/components/MediaContainer.vue +63 -63
  75. package/dist/runtime/components/media/components/OverviewPanel.vue +52 -52
  76. package/dist/runtime/components/media/components/PresentersPanel.vue +52 -52
  77. package/dist/runtime/components/media/components/SessionReporting.vue +93 -93
  78. package/dist/runtime/components/media/components/SponsorsPanel.vue +71 -71
  79. package/dist/runtime/components/media/components/WindowContent.vue +92 -92
  80. package/dist/runtime/components/media/components/WindowSlide.vue +72 -72
  81. package/dist/runtime/components/presenters/PresenterListing.vue +164 -164
  82. package/dist/runtime/components/presenters/PresenterModal.vue +223 -223
  83. package/dist/runtime/components/profile/Profile.vue +149 -149
  84. package/dist/runtime/components/profile/components/Sidebar.vue +27 -27
  85. package/dist/runtime/components/profile/components/SidebarNavItem.vue +39 -39
  86. package/dist/runtime/components/profile/tabs/Favorites.vue +21 -21
  87. package/dist/runtime/components/profile/tabs/GeneralInformation.vue +122 -122
  88. package/dist/runtime/components/profile/tabs/ProfileImage.vue +75 -75
  89. package/dist/runtime/components/support/FAQAccordion.vue +140 -140
  90. package/dist/runtime/composables/useUcc.d.ts +6 -2
  91. package/dist/runtime/composables/useUcc.mjs +37 -42
  92. package/dist/runtime/store/conferences.mjs +1 -1
  93. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # Nuxt Module
2
-
3
- ## Development
4
-
5
- - Run `npm run dev:prepare` to generate type stubs.
6
- - Use `npm run dev` to start [playground](./playground) in development mode.
1
+ # Nuxt Module
2
+
3
+ ## Development
4
+
5
+ - Run `npm run dev:prepare` to generate type stubs.
6
+ - Use `npm run dev` to start [playground](./playground) in development mode.
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "0.0.91"
4
+ "version": "0.0.92"
5
5
  }
@@ -0,0 +1,705 @@
1
+ @charset "UTF-8";
2
+ .bg-color-white {
3
+ background-color: #fff;
4
+ }
5
+
6
+ .bg-color-white-darker {
7
+ background-color: #f7f7f7;
8
+ }
9
+
10
+ .bg-color-1 {
11
+ background-color: #fbfbfb;
12
+ }
13
+
14
+ .bg-color-2 {
15
+ background-color: #fbfbfb;
16
+ }
17
+
18
+ .bg-color-3 {
19
+ background-color: #333333;
20
+ }
21
+
22
+ .bg-color-4 {
23
+ background-color: #333333;
24
+ }
25
+
26
+ .bg-color-5 {
27
+ background-color: #333333;
28
+ }
29
+
30
+ .bg-color-6 {
31
+ background-color: #333333;
32
+ }
33
+
34
+ .bg-color-link {
35
+ background-color: #7b8fd8;
36
+ }
37
+
38
+ .bg-color-1-darker {
39
+ background-color: #e2e2e2;
40
+ }
41
+
42
+ .bg-color-2-darker {
43
+ background-color: #e2e2e2;
44
+ }
45
+
46
+ .bg-color-3-darker {
47
+ background-color: #1a1a1a;
48
+ }
49
+
50
+ .bg-color-4-darker {
51
+ background-color: #1a1a1a;
52
+ }
53
+
54
+ .bg-color-5-darker {
55
+ background-color: #1a1a1a;
56
+ }
57
+
58
+ .bg-color-6-darker {
59
+ background-color: #1a1a1a;
60
+ }
61
+
62
+ .heading-color-1 {
63
+ color: #fbfbfb;
64
+ }
65
+
66
+ .heading-color-2 {
67
+ color: #fbfbfb;
68
+ }
69
+
70
+ .heading-color-3 {
71
+ color: #000000;
72
+ }
73
+
74
+ .heading-color-4 {
75
+ color: #000000;
76
+ }
77
+
78
+ .heading-color-5 {
79
+ color: #000000;
80
+ }
81
+
82
+ .heading-color-6 {
83
+ color: #000000;
84
+ }
85
+
86
+ .body-color-1 {
87
+ color: #000000;
88
+ }
89
+
90
+ .body-color-2 {
91
+ color: teal;
92
+ }
93
+
94
+ .body-color-3 {
95
+ color: #000000;
96
+ }
97
+
98
+ .body-color-4 {
99
+ color: #7b8fd8;
100
+ }
101
+
102
+ .body-color-5 {
103
+ color: #febb01;
104
+ }
105
+
106
+ .body-color-6 {
107
+ color: #febb01;
108
+ }
109
+
110
+ .paragraph-color-1 {
111
+ color: #000000;
112
+ }
113
+
114
+ .paragraph-color-2 {
115
+ color: #000000;
116
+ }
117
+
118
+ .nav-color-1 {
119
+ color: #fbfbfb;
120
+ }
121
+
122
+ .nav-color-2 {
123
+ color: #febb01;
124
+ }
125
+
126
+ .nav-color-3 {
127
+ color: #fbfbfb;
128
+ }
129
+
130
+ .nav-color-4 {
131
+ color: #e2e2e2;
132
+ }
133
+
134
+ .nav-color-5 {
135
+ color: #000000;
136
+ }
137
+
138
+ .button-color-1 {
139
+ background-color: #febb01;
140
+ }
141
+
142
+ .button-color-1-darker {
143
+ background-color: #cb9601;
144
+ }
145
+
146
+ .button-color-2 {
147
+ background-color: #7b8fd8;
148
+ }
149
+
150
+ .button-color-2-darker {
151
+ background-color: #546ecc;
152
+ }
153
+
154
+ .button-color-3 {
155
+ background-color: #7b8fd8;
156
+ }
157
+
158
+ .button-color-3-darker {
159
+ background-color: #546ecc;
160
+ }
161
+
162
+ .accent-color-1 {
163
+ color: #febb01;
164
+ }
165
+
166
+ .accent-color-2 {
167
+ color: #febb01;
168
+ }
169
+
170
+ .accent-color-3 {
171
+ color: #000000;
172
+ }
173
+
174
+ .border-color-1 {
175
+ border-color: #fbfbfb;
176
+ }
177
+
178
+ .border-color-2 {
179
+ border-color: #fbfbfb;
180
+ }
181
+
182
+ .border-color-3 {
183
+ border-color: #333333;
184
+ }
185
+
186
+ .border-color-4 {
187
+ border-color: #333333;
188
+ }
189
+
190
+ .border-color-5 {
191
+ border-color: #333333;
192
+ }
193
+
194
+ .border-color-accent-1 {
195
+ border-color: #febb01;
196
+ }
197
+
198
+ .border-color-accent-2 {
199
+ border-color: #febb01;
200
+ }
201
+
202
+ .border-color-accent-3 {
203
+ border-color: #000000;
204
+ }
205
+
206
+ .border-color-link {
207
+ border-color: #7b8fd8;
208
+ }
209
+
210
+ html {
211
+ background-color: #fbfbfb;
212
+ color: #000000;
213
+ }
214
+
215
+ body {
216
+ font-family: "Arial", "Helvetica", sans-serif;
217
+ }
218
+
219
+ a {
220
+ color: #7b8fd8;
221
+ }
222
+ a:hover {
223
+ color: #546ecc;
224
+ }
225
+
226
+ h1 {
227
+ font-family: "Arial", "Helvetica", sans-serif;
228
+ }
229
+
230
+ .font-body-1 {
231
+ font-family: "Arial", "Helvetica", sans-serif;
232
+ }
233
+
234
+ .font-body-2 {
235
+ font-family: "Arial", "Helvetica", sans-serif;
236
+ }
237
+
238
+ .font-heading-1 {
239
+ font-family: "Arial", "Helvetica", sans-serif;
240
+ }
241
+
242
+ .font-heading-2 {
243
+ font-family: "Arial", "Helvetica", sans-serif;
244
+ }
245
+
246
+ .grid {
247
+ display: grid;
248
+ }
249
+
250
+ .place-self-center {
251
+ place-self: center;
252
+ }
253
+
254
+ .text-xxs {
255
+ font-size: 0.5rem;
256
+ }
257
+
258
+ .section-header {
259
+ @apply mb-0 uppercase tracking-wide;
260
+ }
261
+
262
+ .section-subheader {
263
+ @apply tracking-wide font-thin;
264
+ }
265
+
266
+ .contrast-border {
267
+ border-color: #e3e1e1;
268
+ }
269
+
270
+ .presenter-icon {
271
+ @apply block mx-1;
272
+ }
273
+ .presenter-icon svg {
274
+ @apply w-6 h-auto;
275
+ }
276
+
277
+ .presenter-icon-small {
278
+ @apply block;
279
+ margin: 0 0.2rem;
280
+ }
281
+ .presenter-icon-small svg {
282
+ @apply w-4 h-auto;
283
+ }
284
+
285
+ .flex-basis-3 {
286
+ flex-basis: 33%;
287
+ }
288
+
289
+ .flex-basis-4 {
290
+ flex-basis: 25%;
291
+ }
292
+
293
+ .flex-basis-5 {
294
+ flex-basis: 20%;
295
+ }
296
+
297
+ .primary-link {
298
+ @apply no-underline uppercase tracking-wide;
299
+ font-size: 0.65rem;
300
+ }
301
+
302
+ .body-copy {
303
+ @apply paragraph-color-1 font-body-1 text-base leading-normal;
304
+ }
305
+
306
+ .heading-primary {
307
+ @apply heading-color-1 font-heading-1 leading-normal tracking-wide;
308
+ }
309
+
310
+ .heading-secondary {
311
+ @apply heading-color-2 font-heading-2 leading-normal tracking-wide;
312
+ }
313
+
314
+ .heading-link {
315
+ color: #000000;
316
+ }
317
+ .heading-link:hover {
318
+ color: #404040;
319
+ }
320
+
321
+ .presenter-name {
322
+ @apply body-color-4 font-body-1;
323
+ }
324
+
325
+ .presenter-title {
326
+ @apply body-color-5 font-body-1;
327
+ }
328
+
329
+ .hr-heading {
330
+ display: grid;
331
+ width: auto;
332
+ align-items: center;
333
+ text-align: center;
334
+ grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
335
+ grid-gap: 0.3em;
336
+ margin-left: 1em;
337
+ margin-right: 1em;
338
+ color: #000000;
339
+ }
340
+
341
+ .hr-heading:before,
342
+ .hr-heading:after {
343
+ content: "";
344
+ border-top: 1px solid;
345
+ border-color: #febb01;
346
+ }
347
+
348
+ .tabs-details {
349
+ max-height: 523px;
350
+ overflow-y: scroll;
351
+ }
352
+ .tabs-details li::before {
353
+ content: "—";
354
+ @apply text-center mr-4 body-color-1;
355
+ padding-bottom: 0.25rem;
356
+ }
357
+
358
+ .conf-name-alignment {
359
+ margin-top: -0.2em;
360
+ }
361
+
362
+ .invert {
363
+ transform: rotate(180deg);
364
+ }
365
+
366
+ .span-no-spacing {
367
+ margin-left: -3px;
368
+ }
369
+
370
+ .jw-text-track-cue {
371
+ font-family: "Arial", "Helvetica", sans-serif !important;
372
+ color: #ffffff !important;
373
+ background-color: rgba(0, 0, 0, 0.5) !important;
374
+ }
375
+
376
+ @keyframes slideInRight {
377
+ 0% {
378
+ opacity: 0;
379
+ transform: translateX(-20px);
380
+ }
381
+ 100% {
382
+ opacity: 1;
383
+ transform: translate(0);
384
+ }
385
+ }
386
+ .page-enter-active, .page-leave-active {
387
+ transition: opacity 250ms;
388
+ }
389
+
390
+ .page-enter, .page-leave-to {
391
+ opacity: 0;
392
+ }
393
+
394
+ .fade-enter-active, .fade-leave-active {
395
+ transition: opacity 0.5s;
396
+ }
397
+
398
+ .fade-enter, .fade-leave-to {
399
+ opacity: 0;
400
+ }
401
+
402
+ .slide-fade-enter-active {
403
+ transition: all 0.3s ease;
404
+ }
405
+
406
+ .slide-fade-leave-active {
407
+ transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
408
+ }
409
+
410
+ .slide-fade-enter, .slide-fade-leave-to {
411
+ transform: translateY(-100px);
412
+ opacity: 0;
413
+ }
414
+
415
+ header {
416
+ /* mobile nav */
417
+ }
418
+ .form-input {
419
+ @apply border rounded w-full py-2 px-3 text-gray-600 leading-tight;
420
+ }
421
+ .form-input:focus {
422
+ @apply outline-none shadow;
423
+ }
424
+
425
+ .select-input {
426
+ @apply border rounded w-full text-gray-600 leading-tight py-1 px-2 h-auto;
427
+ }
428
+ .select-input:focus {
429
+ @apply outline-none;
430
+ }
431
+
432
+ .btn {
433
+ @apply button-color-1 text-white tracking-wide font-bold uppercase py-2 px-4 rounded;
434
+ }
435
+ .btn:hover {
436
+ @apply button-color-1-darker;
437
+ }
438
+ .btn-secondary {
439
+ @apply text-white button-color-2;
440
+ }
441
+ .btn-secondary:hover {
442
+ @apply button-color-2-darker;
443
+ }
444
+
445
+ .container-1\/2 {
446
+ width: 100%;
447
+ }
448
+
449
+ @screen sm {
450
+ .container-1\/2 {
451
+ max-width: 288px;
452
+ }
453
+ }
454
+ @screen md {
455
+ .container-1\/2 {
456
+ max-width: 384px;
457
+ }
458
+ }
459
+ @screen lg {
460
+ .container-1\/2 {
461
+ max-width: 496px;
462
+ }
463
+ }
464
+ @screen xl {
465
+ .container-1\/2 {
466
+ max-width: 600px;
467
+ }
468
+ }
469
+ :root {
470
+ --video-width: 640px;
471
+ }
472
+
473
+ .no-scrollbar {
474
+ scrollbar-width: none; /* Firefox */
475
+ -ms-overflow-style: none; /* IE 10+ */
476
+ }
477
+
478
+ .no-scrollbar::-webkit-scrollbar {
479
+ display: none; /* Chrome Safari */
480
+ }
481
+
482
+ .expand-overlay > a {
483
+ @apply cursor-pointer text-white rounded-sm p-1 bg-gray-500 inline-block;
484
+ }
485
+
486
+ .pop-window {
487
+ border-style: solid;
488
+ border-width: 1px;
489
+ @apply border-gray-500;
490
+ }
491
+
492
+ .pop-window-active {
493
+ border-style: dashed !important;
494
+ border-width: 1px;
495
+ @apply border-gray-600;
496
+ }
497
+
498
+ .flex-ratio-container {
499
+ @apply flex flex-col w-full;
500
+ }
501
+ @screen md {
502
+ .flex-ratio-container {
503
+ @apply relative flex-row;
504
+ padding-top: calc(36.69% + 0.4rem);
505
+ height: 0;
506
+ }
507
+ }
508
+ @screen lg {
509
+ .flex-ratio-container {
510
+ padding-top: calc(36.69% + 1.65rem + 1rem);
511
+ @apply mb-8;
512
+ }
513
+ }
514
+
515
+ .flex-ratio-audio-slide-container {
516
+ @apply flex flex-col w-full;
517
+ }
518
+ @screen xl {
519
+ .flex-ratio-audio-slide-container {
520
+ @apply relative flex-row mb-8;
521
+ padding-top: calc(36.69% + 1.9rem + 1rem);
522
+ height: 0;
523
+ }
524
+ }
525
+
526
+ .flex-ratio-audio-container {
527
+ @apply flex flex-col w-full;
528
+ }
529
+
530
+ .flex-ratio-slide-container {
531
+ @apply flex flex-col w-full;
532
+ }
533
+ @screen xl {
534
+ .flex-ratio-slide-container {
535
+ @apply relative flex-row mb-8;
536
+ padding-top: calc(36.69% + 1.9rem + 1rem);
537
+ height: 0;
538
+ }
539
+ }
540
+
541
+ .player-ratio-outer {
542
+ width: 100%;
543
+ }
544
+ @screen md {
545
+ .player-ratio-outer {
546
+ width: 65%;
547
+ @apply top-0 h-full absolute;
548
+ }
549
+ }
550
+
551
+ .player-ratio-inner {
552
+ @apply block;
553
+ }
554
+
555
+ .player-slide-ratio-outer {
556
+ width: 100%;
557
+ }
558
+ @screen xl {
559
+ .player-slide-ratio-outer {
560
+ width: 80%;
561
+ @apply top-0 h-full absolute;
562
+ }
563
+ }
564
+
565
+ .player-audio-ratio-outer {
566
+ width: 100%;
567
+ }
568
+
569
+ .content-ratio-outer {
570
+ @apply no-scrollbar w-full overflow-y-scroll;
571
+ max-height: 500px;
572
+ }
573
+ @screen md {
574
+ .content-ratio-outer {
575
+ width: 35%;
576
+ @apply top-0 h-full max-h-full absolute;
577
+ }
578
+ }
579
+
580
+ .content-slide-ratio-outer {
581
+ @apply no-scrollbar w-full overflow-y-scroll;
582
+ max-height: 500px;
583
+ }
584
+ @screen xl {
585
+ .content-slide-ratio-outer {
586
+ @apply top-0 h-full max-h-full absolute;
587
+ width: 20%;
588
+ }
589
+ }
590
+
591
+ .content-audio-ratio-outer {
592
+ @apply no-scrollbar w-full overflow-y-scroll;
593
+ max-height: 500px;
594
+ }
595
+
596
+ .content-ratio-inner {
597
+ @apply block h-full pb-2 px-2 no-scrollbar;
598
+ }
599
+ @screen md {
600
+ .content-ratio-inner {
601
+ @apply p-2;
602
+ }
603
+ }
604
+
605
+ .bottom-tab-bar {
606
+ @apply relative pr-8 z-50;
607
+ width: 58%;
608
+ margin-top: -54px;
609
+ }
610
+
611
+ .webcast-sponsor {
612
+ max-height: 3.5rem;
613
+ }
614
+ @screen md {
615
+ .webcast-sponsor {
616
+ max-height: 3rem;
617
+ }
618
+ }
619
+ @screen xl {
620
+ .webcast-sponsor {
621
+ max-height: 5rem;
622
+ }
623
+ }
624
+
625
+ .agenda-tab-bg-color {
626
+ background-color: #0070FF;
627
+ }
628
+
629
+ .agenda-tab-active-bg-color {
630
+ background-color: #EB455A;
631
+ }
632
+
633
+ .agenda-tab-sponsor-bg-color {
634
+ background-color: #DEDEDE;
635
+ }
636
+
637
+ .agenda-tab-color {
638
+ color: #fff;
639
+ }
640
+
641
+ .agenda-track-bg-color {
642
+ background-color: #CADFFC;
643
+ }
644
+
645
+ .agenda-track-group-bg-color {
646
+ background-color: #aaa;
647
+ }
648
+
649
+ .agenda-grouped-track-color-1 {
650
+ background-color: #CADFFC;
651
+ }
652
+
653
+ .agenda-grouped-track-color-2 {
654
+ background-color: #CADFFC;
655
+ }
656
+
657
+ .agenda-grouped-track-color-3 {
658
+ background-color: #CADFFC;
659
+ }
660
+
661
+ .agenda-grouped-track-color-4 {
662
+ background-color: #CADFFC;
663
+ }
664
+
665
+ .agenda-grouped-track-text-color {
666
+ color: #000;
667
+ }
668
+
669
+ .agenda-presenter-color {
670
+ color: #EB455A;
671
+ }
672
+ .agenda-presenter-color:hover {
673
+ color: #e41932;
674
+ }
675
+
676
+ /** START Custom Classes **/
677
+ * {
678
+ margin: 0;
679
+ padding: 0;
680
+ box-sizing: border-box;
681
+ }
682
+
683
+ body {
684
+ font-size: 14px;
685
+ font-weight: 400;
686
+ }
687
+
688
+ p {
689
+ margin-bottom: 1em;
690
+ }
691
+
692
+ h1 {
693
+ margin-bottom: 1em;
694
+ }
695
+
696
+ blockquote {
697
+ display: block;
698
+ margin-top: 1em;
699
+ margin-bottom: 1em;
700
+ margin-left: 40px;
701
+ margin-right: 40px;
702
+ }
703
+
704
+ /** END Custom Classes **/
705
+ @tailwind utilities;