@icvdeveloper/common-module 1.4.14 → 2.0.0

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 (109) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/dist/module.json +1 -1
  3. package/dist/module.mjs +10 -0
  4. package/dist/runtime/@types/components.d.ts +22 -0
  5. package/dist/runtime/@types/configVariables.d.ts +6 -0
  6. package/dist/runtime/analytics.d.ts +1 -1
  7. package/dist/runtime/assets/scss/index.css +0 -705
  8. package/dist/runtime/assets/svg/icon-minus.svg +6 -0
  9. package/dist/runtime/assets/svg/icon-video.svg +6 -0
  10. package/dist/runtime/components/affiliates/AffiliateModal.vue +66 -0
  11. package/dist/runtime/components/affiliates/AffiliatePage.vue +337 -132
  12. package/dist/runtime/components/agenda/AgendaTabbed.vue +43 -34
  13. package/dist/runtime/components/agenda/components/Calendar.vue +8 -3
  14. package/dist/runtime/components/agenda/components/Favorite.vue +44 -0
  15. package/dist/runtime/components/agenda/components/PlayIcon.vue +1 -1
  16. package/dist/runtime/components/agenda/components/PresentationLink.vue +26 -15
  17. package/dist/runtime/components/chat/ChatConversationList.vue +108 -0
  18. package/dist/runtime/components/chat/ChatCreateConversation.vue +205 -0
  19. package/dist/runtime/components/chat/ChatCreateGroupConversation.vue +159 -0
  20. package/dist/runtime/components/chat/ChatHeader.vue +98 -0
  21. package/dist/runtime/components/chat/ChatMessage.vue +40 -0
  22. package/dist/runtime/components/chat/ChatShowConversation.vue +77 -0
  23. package/dist/runtime/components/chat/ChatWidget.vue +65 -0
  24. package/dist/runtime/components/chat/ChatWindow.vue +211 -0
  25. package/dist/runtime/components/chat/ChatWindow.vue.d.ts +6 -0
  26. package/dist/runtime/components/chat/MessageInput.vue +30 -0
  27. package/dist/runtime/components/chat/SearchInput.vue +32 -0
  28. package/dist/runtime/components/core/Accordion.vue +1 -1
  29. package/dist/runtime/components/core/AttendeeList.vue +25 -16
  30. package/dist/runtime/components/core/CountdownTimer.vue +1 -1
  31. package/dist/runtime/components/core/Modal.vue +21 -13
  32. package/dist/runtime/components/core/ModalButton.vue +43 -0
  33. package/dist/runtime/components/core/Navbar.vue +3 -3
  34. package/dist/runtime/components/core/Navigation.vue +293 -0
  35. package/dist/runtime/components/core/SvgIcon.vue +31 -1
  36. package/dist/runtime/components/core/VButton.vue +41 -0
  37. package/dist/runtime/components/core/ZoomModal.vue +1 -1
  38. package/dist/runtime/components/events/ListEvents.vue +3 -4
  39. package/dist/runtime/components/forms/CheckboxGroup.vue +46 -0
  40. package/dist/runtime/components/forms/ErrorField.vue +11 -2
  41. package/dist/runtime/components/forms/RadioGroup.vue +50 -0
  42. package/dist/runtime/components/forms/SelectDropDown.vue +47 -0
  43. package/dist/runtime/components/forms/SupportForm.vue +6 -6
  44. package/dist/runtime/components/layouts/Accordion.vue +2 -2
  45. package/dist/runtime/components/media/ArchivePlayerAndContentContainer.vue +20 -4
  46. package/dist/runtime/components/media/ArchiveVideoPlayer.vue +14 -6
  47. package/dist/runtime/components/media/WebcastVideoPlayer.vue +1 -1
  48. package/dist/runtime/components/media/components/ArchiveMediaContainer.vue +8 -8
  49. package/dist/runtime/components/media/components/CeCreditNotification.vue +2 -2
  50. package/dist/runtime/components/media/components/ContentArea.vue +51 -14
  51. package/dist/runtime/components/media/components/ContentTabs.vue +2 -2
  52. package/dist/runtime/components/media/components/DocumentsPanel.vue +2 -2
  53. package/dist/runtime/components/media/components/MediaContainer.vue +3 -7
  54. package/dist/runtime/components/media/components/PresentersPanel.vue +69 -50
  55. package/dist/runtime/components/media/components/SessionReporting.vue +5 -4
  56. package/dist/runtime/components/media/components/SponsorsPanel.vue +3 -3
  57. package/dist/runtime/components/presenters/PresenterListing.vue +30 -20
  58. package/dist/runtime/components/presenters/PresenterModal.vue +26 -21
  59. package/dist/runtime/components/presenters/Presenters.vue +139 -0
  60. package/dist/runtime/components/profile/Profile.vue +10 -6
  61. package/dist/runtime/components/profile/components/Sidebar.vue +1 -1
  62. package/dist/runtime/components/profile/components/SidebarNavItem.vue +1 -1
  63. package/dist/runtime/components/profile/tabs/Favorites.vue +5 -4
  64. package/dist/runtime/components/profile/tabs/GeneralInformation.vue +26 -16
  65. package/dist/runtime/components/registration/AlreadyRegisteredModal.vue +99 -0
  66. package/dist/runtime/components/registration/PaymentForm.vue +136 -0
  67. package/dist/runtime/components/registration/RegistrationForm.vue +417 -0
  68. package/dist/runtime/components/registration/RegistrationGroupSelect.vue +142 -0
  69. package/dist/runtime/components/registration/StripePaymentForm.vue +141 -0
  70. package/dist/runtime/composables/useAgenda.d.ts +12 -0
  71. package/dist/runtime/composables/useAgenda.mjs +101 -10
  72. package/dist/runtime/composables/useAuth.mjs +1 -1
  73. package/dist/runtime/composables/useConferenceHelpers.d.ts +5 -1
  74. package/dist/runtime/composables/useConferenceHelpers.mjs +15 -1
  75. package/dist/runtime/composables/useEventHooks.d.ts +26 -0
  76. package/dist/runtime/composables/useEventHooks.mjs +21 -0
  77. package/dist/runtime/composables/useEvents.d.ts +17 -1
  78. package/dist/runtime/composables/useEvents.mjs +29 -1
  79. package/dist/runtime/composables/useLogin.mjs +7 -3
  80. package/dist/runtime/composables/usePresentation.mjs +1 -1
  81. package/dist/runtime/composables/usePusher.d.ts +4 -0
  82. package/dist/runtime/composables/usePusher.mjs +38 -26
  83. package/dist/runtime/composables/useStream.mjs +7 -1
  84. package/dist/runtime/enums/general.d.ts +4 -1
  85. package/dist/runtime/enums/general.mjs +4 -1
  86. package/dist/runtime/models/authUser.d.ts +1 -0
  87. package/dist/runtime/models/conference.d.ts +14 -0
  88. package/dist/runtime/models/conversation.d.ts +2 -4
  89. package/dist/runtime/models/globalConfig.d.ts +6 -2
  90. package/dist/runtime/models/group.d.ts +32 -2
  91. package/dist/runtime/models/icons.d.ts +7 -0
  92. package/dist/runtime/models/templateConfig.d.ts +6 -0
  93. package/dist/runtime/models/user.d.ts +1 -0
  94. package/dist/runtime/models/virtualPagesConfig.d.ts +335 -0
  95. package/dist/runtime/models/virtualPagesConfig.mjs +0 -0
  96. package/dist/runtime/plugin.mjs +6 -0
  97. package/dist/runtime/store/affiliates.d.ts +3 -0
  98. package/dist/runtime/store/affiliates.mjs +38 -0
  99. package/dist/runtime/store/auth.mjs +6 -0
  100. package/dist/runtime/store/conferences.d.ts +3 -1
  101. package/dist/runtime/store/conferences.mjs +7 -2
  102. package/dist/runtime/store/conversations.d.ts +4040 -10
  103. package/dist/runtime/store/conversations.mjs +255 -22
  104. package/dist/runtime/store/modalPlayerConfig.d.ts +498 -0
  105. package/dist/runtime/store/modalPlayerConfig.mjs +58 -0
  106. package/dist/runtime/store/templateConfigs.d.ts +3 -2
  107. package/dist/runtime/store/templateConfigs.mjs +2 -1
  108. package/package.json +5 -2
  109. package/dist/runtime/components/media/components/PresentersPanel.vue.d.ts +0 -32
@@ -1,705 +0,0 @@
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;
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" ?>
2
+ <!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
3
+ <!-- License: CC Attribution. Made by FortAwesome: https://github.com/FortAwesome/Font-Awesome -->
4
+ <svg viewBox="-32 0 512 512" xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M416 208H32c-17.67 0-32 14.33-32 32v32c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32v-32c0-17.67-14.33-32-32-32z"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" ?>
2
+ <!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
3
+ <!-- -120 adjusted to vertically align with lowercase text ~1rem -->
4
+ <svg viewBox="0 -120 576 576" xmlns="http://www.w3.org/2000/svg">
5
+ <path d="M336.2 64H47.8C21.4 64 0 85.4 0 111.8v288.4C0 426.6 21.4 448 47.8 448h288.4c26.4 0 47.8-21.4 47.8-47.8V111.8c0-26.4-21.4-47.8-47.8-47.8zm189.4 37.7L416 177.3v157.4l109.6 75.5c21.2 14.6 50.4-.3 50.4-25.8V127.5c0-25.4-29.1-40.4-50.4-25.8z"/>
6
+ </svg>