@icvdeveloper/common-module 0.0.41 → 0.0.43
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/module.json +1 -1
- package/dist/module.mjs +5 -5
- package/dist/runtime/@types/components.d.ts +5 -5
- package/dist/runtime/@types/configVariables.d.ts +11 -11
- package/dist/runtime/analytics.d.ts +1 -1
- package/dist/runtime/assets/scss/index.css +705 -0
- package/dist/runtime/components/agenda/AgendaTabbed.vue +15 -9
- package/dist/runtime/components/agenda/components/Sponsor.vue +14 -21
- package/dist/runtime/components/core/Accordion.vue +10 -7
- package/dist/runtime/components/core/CountdownTimer.vue +44 -41
- package/dist/runtime/components/core/DynamicHtml.vue.d.ts +1 -1
- package/dist/runtime/components/core/Modal.vue +8 -4
- package/dist/runtime/components/events/ListEvents.vue +16 -3
- package/dist/runtime/components/forms/Message.vue +1 -1
- package/dist/runtime/components/forms/SwitchInput.vue +34 -49
- package/dist/runtime/components/presenters/PresenterListing.vue +5 -3
- package/dist/runtime/composables/useAgenda.d.ts +1 -1
- package/dist/runtime/composables/useAnalytics.d.ts +1 -1
- package/dist/runtime/composables/useAuth.d.ts +1 -1
- package/dist/runtime/composables/useClassBinding.d.ts +1 -1
- package/dist/runtime/composables/useConferenceHelpers.d.ts +1 -1
- package/dist/runtime/composables/useDateFormat.d.ts +1 -1
- package/dist/runtime/composables/useEvents.d.ts +1 -1
- package/dist/runtime/composables/useLogin.d.ts +1 -1
- package/dist/runtime/composables/usePresentation.d.ts +1 -1
- package/dist/runtime/composables/usePresenter.d.ts +1 -1
- package/dist/runtime/composables/usePresenters.d.ts +1 -1
- package/dist/runtime/composables/useRegistration.d.ts +1 -1
- package/dist/runtime/models/affiliate.d.ts +1 -1
- package/dist/runtime/models/authUser.d.ts +1 -1
- package/dist/runtime/models/conference.d.ts +8 -8
- package/dist/runtime/models/globalConfig.d.ts +3 -3
- package/dist/runtime/models/group.d.ts +1 -1
- package/dist/runtime/models/icons.d.ts +2 -2
- package/dist/runtime/models/navigationConfig.d.ts +1 -1
- package/dist/runtime/models/pagesConfig.d.ts +12 -12
- package/dist/runtime/models/portal.d.ts +1 -1
- package/dist/runtime/models/templateConfig.d.ts +5 -5
- package/dist/runtime/plugin.mjs +3 -0
- package/dist/runtime/store/affiliates.d.ts +1 -1
- package/dist/runtime/store/auth.d.ts +2 -2
- package/dist/runtime/v3plusCommonPlugin.d.ts +2 -2
- package/dist/types.d.ts +1 -1
- package/package.json +6 -6
- package/dist/runtime/assets/scss/_agenda.scss +0 -47
- package/dist/runtime/assets/scss/_animations.scss +0 -11
- package/dist/runtime/assets/scss/_container_variants.scss +0 -26
- package/dist/runtime/assets/scss/_custom.scss +0 -364
- package/dist/runtime/assets/scss/_footer.scss +0 -20
- package/dist/runtime/assets/scss/_forms.scss +0 -29
- package/dist/runtime/assets/scss/_functions.scss +0 -24
- package/dist/runtime/assets/scss/_header.scss +0 -40
- package/dist/runtime/assets/scss/_index_production.scss +0 -45
- package/dist/runtime/assets/scss/_transitions.scss +0 -24
- package/dist/runtime/assets/scss/_variables.scss +0 -62
- package/dist/runtime/assets/scss/_variables2.scss +0 -0
- package/dist/runtime/assets/scss/_webcast.scss +0 -141
- package/dist/runtime/assets/scss/index.scss +0 -42
|
@@ -1,364 +0,0 @@
|
|
|
1
|
-
// Background Colors
|
|
2
|
-
|
|
3
|
-
.bg-color-white {
|
|
4
|
-
background-color: #fff;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.bg-color-white-darker {
|
|
8
|
-
background-color: darken(#fff, 3);
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.bg-color-1 {
|
|
12
|
-
background-color: $global-color-1;
|
|
13
|
-
}
|
|
14
|
-
.bg-color-2 {
|
|
15
|
-
background-color: $global-color-2;
|
|
16
|
-
}
|
|
17
|
-
.bg-color-3 {
|
|
18
|
-
background-color: $global-color-3;
|
|
19
|
-
}
|
|
20
|
-
.bg-color-4 {
|
|
21
|
-
background-color: $global-color-4;
|
|
22
|
-
}
|
|
23
|
-
.bg-color-5 {
|
|
24
|
-
background-color: $global-color-5;
|
|
25
|
-
}
|
|
26
|
-
.bg-color-6 {
|
|
27
|
-
background-color: $global-color-6;
|
|
28
|
-
}
|
|
29
|
-
.bg-color-link {
|
|
30
|
-
background-color: $link-color;
|
|
31
|
-
}
|
|
32
|
-
.bg-color-1-darker {
|
|
33
|
-
background-color: darken($global-color-1, 10%);
|
|
34
|
-
}
|
|
35
|
-
.bg-color-2-darker {
|
|
36
|
-
background-color: darken($global-color-2, 10%);
|
|
37
|
-
}
|
|
38
|
-
.bg-color-3-darker {
|
|
39
|
-
background-color: darken($global-color-3, 10%);
|
|
40
|
-
}
|
|
41
|
-
.bg-color-4-darker {
|
|
42
|
-
background-color: darken($global-color-4, 10%);
|
|
43
|
-
}
|
|
44
|
-
.bg-color-5-darker {
|
|
45
|
-
background-color: darken($global-color-5, 10%);
|
|
46
|
-
}
|
|
47
|
-
.bg-color-6-darker {
|
|
48
|
-
background-color: darken($global-color-6, 10%);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
// Heading Colors
|
|
52
|
-
|
|
53
|
-
.heading-color-1 {
|
|
54
|
-
color: $heading-color-1;
|
|
55
|
-
}
|
|
56
|
-
.heading-color-2 {
|
|
57
|
-
color: $heading-color-2;
|
|
58
|
-
}
|
|
59
|
-
.heading-color-3 {
|
|
60
|
-
color: $heading-color-3;
|
|
61
|
-
}
|
|
62
|
-
.heading-color-4 {
|
|
63
|
-
color: $heading-color-4;
|
|
64
|
-
}
|
|
65
|
-
.heading-color-5 {
|
|
66
|
-
color: $heading-color-5;
|
|
67
|
-
}
|
|
68
|
-
.heading-color-6 {
|
|
69
|
-
color: $heading-color-6;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
// Body Colors
|
|
73
|
-
|
|
74
|
-
.body-color-1 {
|
|
75
|
-
color: $body-color-1;
|
|
76
|
-
}
|
|
77
|
-
.body-color-2 {
|
|
78
|
-
color: $body-color-2;
|
|
79
|
-
}
|
|
80
|
-
.body-color-3 {
|
|
81
|
-
color: $body-color-3;
|
|
82
|
-
}
|
|
83
|
-
.body-color-4 {
|
|
84
|
-
color: $body-color-4;
|
|
85
|
-
}
|
|
86
|
-
.body-color-5 {
|
|
87
|
-
color: $body-color-5;
|
|
88
|
-
}
|
|
89
|
-
.body-color-6 {
|
|
90
|
-
color: $body-color-6;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// Paragraph Colors
|
|
94
|
-
|
|
95
|
-
.paragraph-color-1 {
|
|
96
|
-
color: $paragraph-color-1;
|
|
97
|
-
}
|
|
98
|
-
.paragraph-color-2 {
|
|
99
|
-
color: $paragraph-color-2;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
// Nav Text Colors
|
|
103
|
-
|
|
104
|
-
.nav-color-1 {
|
|
105
|
-
color: $nav-color-1;
|
|
106
|
-
}
|
|
107
|
-
.nav-color-2 {
|
|
108
|
-
color: $nav-color-2;
|
|
109
|
-
}
|
|
110
|
-
.nav-color-3 {
|
|
111
|
-
color: $nav-color-3;
|
|
112
|
-
}
|
|
113
|
-
.nav-color-4 {
|
|
114
|
-
color: $nav-color-4;
|
|
115
|
-
}
|
|
116
|
-
.nav-color-5 {
|
|
117
|
-
color: $nav-color-5;
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
// Button Colors
|
|
121
|
-
|
|
122
|
-
.button-color-1 {
|
|
123
|
-
background-color: $button-color-1;
|
|
124
|
-
}
|
|
125
|
-
.button-color-1-darker {
|
|
126
|
-
background-color: darken($button-color-1, 10%);
|
|
127
|
-
}
|
|
128
|
-
.button-color-2 {
|
|
129
|
-
background-color: $button-color-2;
|
|
130
|
-
}
|
|
131
|
-
.button-color-2-darker {
|
|
132
|
-
background-color: darken($button-color-2, 10%);
|
|
133
|
-
}
|
|
134
|
-
.button-color-3 {
|
|
135
|
-
background-color: $button-color-3;
|
|
136
|
-
}
|
|
137
|
-
.button-color-3-darker {
|
|
138
|
-
background-color: darken($button-color-3, 10%);
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
// Accent Colors
|
|
142
|
-
|
|
143
|
-
.accent-color-1 {
|
|
144
|
-
color: $accent-color-1;
|
|
145
|
-
}
|
|
146
|
-
.accent-color-2 {
|
|
147
|
-
color: $accent-color-2;
|
|
148
|
-
}
|
|
149
|
-
.accent-color-3 {
|
|
150
|
-
color: $accent-color-3;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
// Border Colors
|
|
154
|
-
|
|
155
|
-
.border-color-1 {
|
|
156
|
-
border-color: $global-color-1;
|
|
157
|
-
}
|
|
158
|
-
.border-color-2 {
|
|
159
|
-
border-color: $global-color-2;
|
|
160
|
-
}
|
|
161
|
-
.border-color-3 {
|
|
162
|
-
border-color: $global-color-3;
|
|
163
|
-
}
|
|
164
|
-
.border-color-4 {
|
|
165
|
-
border-color: $global-color-4;
|
|
166
|
-
}
|
|
167
|
-
.border-color-5 {
|
|
168
|
-
border-color: $global-color-5;
|
|
169
|
-
}
|
|
170
|
-
.border-color-accent-1 {
|
|
171
|
-
border-color: $accent-color-1;
|
|
172
|
-
}
|
|
173
|
-
.border-color-accent-2 {
|
|
174
|
-
border-color: $accent-color-2;
|
|
175
|
-
}
|
|
176
|
-
.border-color-accent-3 {
|
|
177
|
-
border-color: $accent-color-3;
|
|
178
|
-
}
|
|
179
|
-
.border-color-link {
|
|
180
|
-
border-color: $link-color;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
// Element Styling
|
|
184
|
-
|
|
185
|
-
html {
|
|
186
|
-
background-color: $global-color-1;
|
|
187
|
-
color: $paragraph-color-1;
|
|
188
|
-
}
|
|
189
|
-
body {
|
|
190
|
-
font-family: $font-body-1;
|
|
191
|
-
}
|
|
192
|
-
a {
|
|
193
|
-
color: $link-color;
|
|
194
|
-
&:hover {
|
|
195
|
-
color: $link-hover;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
h1 {
|
|
199
|
-
font-family: $font-heading-1;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
// Font Classes
|
|
203
|
-
|
|
204
|
-
.font-body-1 {
|
|
205
|
-
font-family: $font-body-1;
|
|
206
|
-
}
|
|
207
|
-
.font-body-2 {
|
|
208
|
-
font-family: $font-body-2;
|
|
209
|
-
}
|
|
210
|
-
.font-heading-1 {
|
|
211
|
-
font-family: $font-heading-1;
|
|
212
|
-
}
|
|
213
|
-
.font-heading-2 {
|
|
214
|
-
font-family: $font-heading-2;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
// Page-Specific Color/Font Classes
|
|
218
|
-
|
|
219
|
-
// if custom color variable is set, assign to class/element
|
|
220
|
-
|
|
221
|
-
@if variable-exists(presenter-name-color) {
|
|
222
|
-
#page-presenters {
|
|
223
|
-
.presenter-name-color {
|
|
224
|
-
color: $presenter-name-color;
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
@if variable-exists(presenter-title-color) {
|
|
230
|
-
#page-presenters {
|
|
231
|
-
.presenter-title-color {
|
|
232
|
-
color: $presenter-title-color;
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
// Custom Classes
|
|
238
|
-
.grid {
|
|
239
|
-
display: grid;
|
|
240
|
-
}
|
|
241
|
-
.place-self-center {
|
|
242
|
-
place-self: center;
|
|
243
|
-
}
|
|
244
|
-
.text-xxs {
|
|
245
|
-
font-size: 0.5rem;
|
|
246
|
-
}
|
|
247
|
-
.section-header {
|
|
248
|
-
@apply mb-0 uppercase tracking-wide;
|
|
249
|
-
}
|
|
250
|
-
.section-subheader {
|
|
251
|
-
@apply tracking-wide font-thin;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
.contrast-border {
|
|
255
|
-
border-color: saturate(
|
|
256
|
-
mix($global-color-1, desaturate(invert($global-color-1), 100%), 90%),
|
|
257
|
-
5%
|
|
258
|
-
);
|
|
259
|
-
}
|
|
260
|
-
.presenter-icon {
|
|
261
|
-
@apply block mx-1;
|
|
262
|
-
svg {
|
|
263
|
-
@apply w-6 h-auto;
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
.presenter-icon-small {
|
|
267
|
-
@apply block;
|
|
268
|
-
margin: 0 0.2rem;
|
|
269
|
-
svg {
|
|
270
|
-
@apply w-4 h-auto;
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.flex-basis-3 {
|
|
275
|
-
flex-basis: 33%;
|
|
276
|
-
}
|
|
277
|
-
.flex-basis-4 {
|
|
278
|
-
flex-basis: 25%;
|
|
279
|
-
}
|
|
280
|
-
.flex-basis-5 {
|
|
281
|
-
flex-basis: 20%;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
// Text Classes
|
|
285
|
-
|
|
286
|
-
.primary-link {
|
|
287
|
-
@apply no-underline uppercase tracking-wide;
|
|
288
|
-
font-size: 0.65rem;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
.body-copy {
|
|
292
|
-
@apply paragraph-color-1 font-body-1 text-base leading-normal;
|
|
293
|
-
}
|
|
294
|
-
.heading-primary {
|
|
295
|
-
@apply heading-color-1 font-heading-1 leading-normal tracking-wide;
|
|
296
|
-
}
|
|
297
|
-
.heading-secondary {
|
|
298
|
-
@apply heading-color-2 font-heading-2 leading-normal tracking-wide;
|
|
299
|
-
}
|
|
300
|
-
.heading-link {
|
|
301
|
-
color: $body-color-3;
|
|
302
|
-
&:hover {
|
|
303
|
-
color: saturate(
|
|
304
|
-
mix($body-color-3, desaturate(invert($body-color-3), 100%), 75%),
|
|
305
|
-
0%
|
|
306
|
-
);
|
|
307
|
-
}
|
|
308
|
-
}
|
|
309
|
-
.presenter-name {
|
|
310
|
-
@apply body-color-4 font-body-1;
|
|
311
|
-
}
|
|
312
|
-
.presenter-title {
|
|
313
|
-
@apply body-color-5 font-body-1;
|
|
314
|
-
}
|
|
315
|
-
.hr-heading {
|
|
316
|
-
display: grid;
|
|
317
|
-
width: auto;
|
|
318
|
-
align-items: center;
|
|
319
|
-
text-align: center;
|
|
320
|
-
grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
|
|
321
|
-
grid-gap: 0.3em;
|
|
322
|
-
margin-left: 1em;
|
|
323
|
-
margin-right: 1em;
|
|
324
|
-
color: $heading-color-5;
|
|
325
|
-
}
|
|
326
|
-
.hr-heading:before,
|
|
327
|
-
.hr-heading:after {
|
|
328
|
-
content: "";
|
|
329
|
-
border-top: 1px solid;
|
|
330
|
-
border-color: $accent-color-2;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
.tabs-details {
|
|
334
|
-
max-height: 523px;
|
|
335
|
-
overflow-y: scroll;
|
|
336
|
-
li::before {
|
|
337
|
-
content: "—";
|
|
338
|
-
@apply text-center mr-4 body-color-1;
|
|
339
|
-
padding-bottom: 0.25rem;
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.conf-name-alignment {
|
|
344
|
-
margin-top: -0.2em;
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
.invert {
|
|
348
|
-
transform: rotate(180deg);
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
.span-no-spacing {
|
|
352
|
-
margin-left: -3px;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
@if variable-exists(captions-font) and
|
|
356
|
-
variable-exists(captions-text-color) and
|
|
357
|
-
variable-exists(captions-bg-color)
|
|
358
|
-
{
|
|
359
|
-
.jw-text-track-cue {
|
|
360
|
-
font-family: $captions-font !important;
|
|
361
|
-
color: $captions-text-color !important;
|
|
362
|
-
background-color: $captions-bg-color !important;
|
|
363
|
-
}
|
|
364
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
footer {
|
|
2
|
-
// @apply bg-color-5;
|
|
3
|
-
// nav {
|
|
4
|
-
// @apply bg-color-4;
|
|
5
|
-
// ul {
|
|
6
|
-
// @apply list-none p-0 inline-flex justify-start content-center;
|
|
7
|
-
// }
|
|
8
|
-
|
|
9
|
-
// ul li {
|
|
10
|
-
// @apply flex-auto flex-grow my-3 mx-6 self-center;
|
|
11
|
-
// a {
|
|
12
|
-
// @apply no-underline text-white uppercase tracking-wide nav-color-3;
|
|
13
|
-
|
|
14
|
-
// &:hover {
|
|
15
|
-
// @apply nav-color-4;
|
|
16
|
-
// }
|
|
17
|
-
// }
|
|
18
|
-
// }
|
|
19
|
-
// }
|
|
20
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
.form-input {
|
|
2
|
-
@apply border rounded w-full py-2 px-3 text-gray-600 leading-tight;
|
|
3
|
-
&:focus {
|
|
4
|
-
@apply outline-none shadow;
|
|
5
|
-
}
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.select-input {
|
|
9
|
-
@apply border rounded w-full text-gray-600 leading-tight py-1 px-2 h-auto;
|
|
10
|
-
&:focus {
|
|
11
|
-
@apply outline-none;
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.btn {
|
|
16
|
-
@apply button-color-1 text-white tracking-wide font-bold uppercase py-2 px-4 rounded;
|
|
17
|
-
|
|
18
|
-
&:hover {
|
|
19
|
-
@apply button-color-1-darker;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&-secondary {
|
|
23
|
-
@apply text-white button-color-2;
|
|
24
|
-
|
|
25
|
-
&:hover {
|
|
26
|
-
@apply button-color-2-darker;
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
@function get-high-contrast-text-color($color) {
|
|
2
|
-
@if (lightness($color) > 50) {
|
|
3
|
-
@return darken($color, 60%);
|
|
4
|
-
} @else {
|
|
5
|
-
@return lighten($color, 60%);
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@function get-color-value($string) {
|
|
10
|
-
$first: str-slice($string, 1, 1);
|
|
11
|
-
|
|
12
|
-
// Pad <1 values with a leading 0
|
|
13
|
-
@if $first == '.' {
|
|
14
|
-
$string: '0' + $string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
$last: str-slice($string, -1, -1);
|
|
18
|
-
|
|
19
|
-
@return if(
|
|
20
|
-
$last == '%',
|
|
21
|
-
nth(_json-decode--number(str-slice($string, 1, -2), 2), 2) * 1%,
|
|
22
|
-
nth(_json-decode--number($string, 2), 2)
|
|
23
|
-
);
|
|
24
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
header {
|
|
2
|
-
// @apply bg-color-2;
|
|
3
|
-
|
|
4
|
-
nav {
|
|
5
|
-
// @apply bg-color-3;
|
|
6
|
-
// ul {
|
|
7
|
-
// @apply inline-flex flex-1 justify-start content-around text-center;
|
|
8
|
-
// }
|
|
9
|
-
|
|
10
|
-
// ul li {
|
|
11
|
-
// @apply flex-auto flex-grow my-3 self-center text-center;
|
|
12
|
-
// a {
|
|
13
|
-
// @apply primary-link nav-color-1;
|
|
14
|
-
|
|
15
|
-
// &:hover {
|
|
16
|
-
// @apply nav-color-2;
|
|
17
|
-
// }
|
|
18
|
-
|
|
19
|
-
// &.active {
|
|
20
|
-
// @apply nav-color-2;
|
|
21
|
-
// }
|
|
22
|
-
|
|
23
|
-
// }
|
|
24
|
-
// }
|
|
25
|
-
}
|
|
26
|
-
/* mobile nav */
|
|
27
|
-
.mobile-nav {
|
|
28
|
-
// @apply bg-color-3;
|
|
29
|
-
|
|
30
|
-
// button {
|
|
31
|
-
// @apply border rounded nav-color-1;
|
|
32
|
-
// border-color: $nav-color-1;
|
|
33
|
-
|
|
34
|
-
// &:hover {
|
|
35
|
-
// @apply nav-color-2;
|
|
36
|
-
// border-color: $nav-color-2;
|
|
37
|
-
// }
|
|
38
|
-
// }
|
|
39
|
-
}
|
|
40
|
-
}
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
@import "_variables";
|
|
2
|
-
@import "/tmp/sass/_variables2";
|
|
3
|
-
@tailwind preflight;
|
|
4
|
-
@tailwind components;
|
|
5
|
-
@import "_custom";
|
|
6
|
-
@import "_functions";
|
|
7
|
-
@import "_animations";
|
|
8
|
-
@import "_transitions";
|
|
9
|
-
@import "_header";
|
|
10
|
-
@import "_footer";
|
|
11
|
-
@import "_forms";
|
|
12
|
-
@import "_container_variants";
|
|
13
|
-
@import "_webcast";
|
|
14
|
-
@import "agenda";
|
|
15
|
-
|
|
16
|
-
/** START Custom Classes **/
|
|
17
|
-
* {
|
|
18
|
-
margin: 0;
|
|
19
|
-
padding: 0;
|
|
20
|
-
box-sizing: border-box;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
body {
|
|
24
|
-
font-size: 14px;
|
|
25
|
-
font-weight: 400;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
p {
|
|
29
|
-
margin-bottom: 1em;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
h1 {
|
|
33
|
-
margin-bottom: 1em;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
blockquote {
|
|
37
|
-
display: block;
|
|
38
|
-
margin-top: 1em;
|
|
39
|
-
margin-bottom: 1em;
|
|
40
|
-
margin-left: 40px;
|
|
41
|
-
margin-right: 40px;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/** END Custom Classes **/
|
|
45
|
-
@tailwind utilities;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
.page-enter-active, .page-leave-active {
|
|
2
|
-
transition: opacity 250ms;
|
|
3
|
-
}
|
|
4
|
-
.page-enter, .page-leave-to {
|
|
5
|
-
opacity: 0;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.fade-enter-active, .fade-leave-active {
|
|
9
|
-
transition: opacity .5s;
|
|
10
|
-
}
|
|
11
|
-
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
|
|
12
|
-
opacity: 0;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.slide-fade-enter-active {
|
|
16
|
-
transition: all .3s ease;
|
|
17
|
-
}
|
|
18
|
-
.slide-fade-leave-active {
|
|
19
|
-
transition: all .3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
|
|
20
|
-
}
|
|
21
|
-
.slide-fade-enter, .slide-fade-leave-to {
|
|
22
|
-
transform: translateY(-100px);
|
|
23
|
-
opacity: 0;
|
|
24
|
-
}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
$global-color-1: #fbfbfb; // background color
|
|
2
|
-
$global-color-2: #fbfbfb; // header background color
|
|
3
|
-
$global-color-3: #333333; // top nav background color
|
|
4
|
-
$global-color-4: #333333; // bottom nav background color
|
|
5
|
-
$global-color-5: #333333; // footer background color
|
|
6
|
-
$global-color-6: #333333; // tabbed agenda track name background color
|
|
7
|
-
|
|
8
|
-
$heading-color-1: #fbfbfb; // main body title
|
|
9
|
-
$heading-color-2: #fbfbfb; // city/date
|
|
10
|
-
$heading-color-3: #000000; // start time/log in text
|
|
11
|
-
$heading-color-4: #000000; // page titles
|
|
12
|
-
$heading-color-5: #000000; // section titles
|
|
13
|
-
$heading-color-6: #000000; // UNUSED
|
|
14
|
-
|
|
15
|
-
$body-color-1: #000000; // agenda date
|
|
16
|
-
$body-color-2: teal; // track title
|
|
17
|
-
$body-color-3: #000000; // session name
|
|
18
|
-
$body-color-4: #7b8fd8; // presenter name
|
|
19
|
-
$body-color-5: #febb01; // presenter title
|
|
20
|
-
$body-color-6: #febb01; // unused
|
|
21
|
-
|
|
22
|
-
$paragraph-color-1: #000000; // main body copy
|
|
23
|
-
$paragraph-color-2: #000000; // unused
|
|
24
|
-
|
|
25
|
-
$nav-color-1: #fbfbfb; // top nav text
|
|
26
|
-
$nav-color-2: #febb01; // top nav text hover
|
|
27
|
-
$nav-color-3: #fbfbfb; // bottom nav text
|
|
28
|
-
$nav-color-4: darken($nav-color-3, 10%); // bottom nav text hover
|
|
29
|
-
$nav-color-5: #000000; // unused
|
|
30
|
-
|
|
31
|
-
$accent-color-1: #febb01; // countdown timer border
|
|
32
|
-
$accent-color-2: #febb01; // header color bar element
|
|
33
|
-
$accent-color-3: #000000; // countdown timer text
|
|
34
|
-
|
|
35
|
-
$link-color: #7b8fd8;
|
|
36
|
-
$link-hover: darken($link-color, 10%);
|
|
37
|
-
|
|
38
|
-
$button-color-1: #febb01; // button color 1
|
|
39
|
-
$button-color-2: #7b8fd8; // button color 2
|
|
40
|
-
$button-color-3: #7b8fd8; // unused
|
|
41
|
-
|
|
42
|
-
$font-body-1: 'Arial', 'Helvetica', sans-serif; // body
|
|
43
|
-
$font-body-2: 'Arial', 'Helvetica', sans-serif; // header
|
|
44
|
-
$font-heading-1: 'Arial', 'Helvetica', sans-serif; // secondary header
|
|
45
|
-
$font-heading-2: 'Arial', 'Helvetica', sans-serif; // misc
|
|
46
|
-
|
|
47
|
-
$captions-font: 'Arial', 'Helvetica', sans-serif; // captions
|
|
48
|
-
$captions-text-color: #ffffff; // captions
|
|
49
|
-
$captions-bg-color: rgba(0, 0, 0, 0.5); // captions
|
|
50
|
-
|
|
51
|
-
$agenda-tab-bg-color: #0070FF;
|
|
52
|
-
$agenda-tab-active-bg-color: #EB455A;
|
|
53
|
-
$agenda-tab-sponsor-bg-color: #DEDEDE;
|
|
54
|
-
$agenda-tab-color: #fff;
|
|
55
|
-
$agenda-track-bg-color: #CADFFC;
|
|
56
|
-
$agenda-track-group-bg-color: #aaa;
|
|
57
|
-
$agenda-grouped-track-color-1: #CADFFC;
|
|
58
|
-
$agenda-grouped-track-color-2: #CADFFC;
|
|
59
|
-
$agenda-grouped-track-color-3: #CADFFC;
|
|
60
|
-
$agenda-grouped-track-color-4: #CADFFC;
|
|
61
|
-
$agenda-grouped-track-text-color: #000;
|
|
62
|
-
$agenda-presenter-color: #EB455A;
|
|
File without changes
|