@icvdeveloper/common-module 0.0.1
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/README.md +6 -0
- package/dist/module.cjs +5 -0
- package/dist/module.d.ts +9 -0
- package/dist/module.json +8 -0
- package/dist/module.mjs +102051 -0
- package/dist/runtime/@types/configVariables.d.ts +78 -0
- package/dist/runtime/@types/configVariables.mjs +0 -0
- package/dist/runtime/analytics.d.ts +8 -0
- package/dist/runtime/analytics.mjs +38 -0
- package/dist/runtime/assets/scss/_agenda.scss +47 -0
- package/dist/runtime/assets/scss/_animations.scss +11 -0
- package/dist/runtime/assets/scss/_container_variants.scss +26 -0
- package/dist/runtime/assets/scss/_custom.scss +364 -0
- package/dist/runtime/assets/scss/_footer.scss +20 -0
- package/dist/runtime/assets/scss/_forms.scss +29 -0
- package/dist/runtime/assets/scss/_functions.scss +24 -0
- package/dist/runtime/assets/scss/_header.scss +41 -0
- package/dist/runtime/assets/scss/_index_production.scss +45 -0
- package/dist/runtime/assets/scss/_transitions.scss +24 -0
- package/dist/runtime/assets/scss/_variables.scss +62 -0
- package/dist/runtime/assets/scss/_variables2.scss +0 -0
- package/dist/runtime/assets/scss/_webcast.scss +141 -0
- package/dist/runtime/assets/scss/index.scss +42 -0
- package/dist/runtime/assets/svg/answer.svg +14 -0
- package/dist/runtime/assets/svg/avatar.svg +1 -0
- package/dist/runtime/assets/svg/bell-icon.svg +3 -0
- package/dist/runtime/assets/svg/chat-icon.svg +1 -0
- package/dist/runtime/assets/svg/checkmark-icon.svg +1 -0
- package/dist/runtime/assets/svg/close-icon.svg +1 -0
- package/dist/runtime/assets/svg/icon-avatar.svg +1 -0
- package/dist/runtime/assets/svg/icon-close.svg +1 -0
- package/dist/runtime/assets/svg/icon-down-arrow.svg +1 -0
- package/dist/runtime/assets/svg/icon-facebook.svg +1 -0
- package/dist/runtime/assets/svg/icon-info.svg +3 -0
- package/dist/runtime/assets/svg/icon-linkedin.svg +1 -0
- package/dist/runtime/assets/svg/icon-new-window.svg +11 -0
- package/dist/runtime/assets/svg/icon-offline.svg +3 -0
- package/dist/runtime/assets/svg/icon-online.svg +3 -0
- package/dist/runtime/assets/svg/icon-person.svg +3 -0
- package/dist/runtime/assets/svg/icon-play.svg +3 -0
- package/dist/runtime/assets/svg/icon-star-filled.svg +30 -0
- package/dist/runtime/assets/svg/icon-star.svg +25 -0
- package/dist/runtime/assets/svg/icon-twitter.svg +1 -0
- package/dist/runtime/assets/svg/icon-video-chat.svg +14 -0
- package/dist/runtime/assets/svg/icon-website.svg +3 -0
- package/dist/runtime/assets/svg/icon-youtube.svg +1 -0
- package/dist/runtime/assets/svg/icon-zoom.svg +10 -0
- package/dist/runtime/assets/svg/notification-icon.svg +32 -0
- package/dist/runtime/assets/svg/offline-icon.svg +1 -0
- package/dist/runtime/assets/svg/online-icon.svg +3 -0
- package/dist/runtime/assets/svg/peer2peer.svg +3 -0
- package/dist/runtime/assets/svg/phone.svg +1 -0
- package/dist/runtime/assets/svg/plus-icon.svg +1 -0
- package/dist/runtime/assets/svg/red-icon.svg +3 -0
- package/dist/runtime/assets/svg/reject.svg +14 -0
- package/dist/runtime/assets/svg/search-icon.svg +3 -0
- package/dist/runtime/components/affiliates/AffiliatePage.vue +16 -0
- package/dist/runtime/components/agenda/AgendaTabbed.vue +342 -0
- package/dist/runtime/components/agenda/components/InfoLink.vue +55 -0
- package/dist/runtime/components/agenda/components/PlayIcon.vue +48 -0
- package/dist/runtime/components/agenda/components/PresentationLink.vue +147 -0
- package/dist/runtime/components/agenda/components/Sponsor.vue +108 -0
- package/dist/runtime/components/auth/LoginFullWidth.vue +76 -0
- package/dist/runtime/components/core/CountdownTimer.vue +275 -0
- package/dist/runtime/components/core/DynamicHtml.vue +16 -0
- package/dist/runtime/components/core/DynamicHtml.vue.d.ts +2 -0
- package/dist/runtime/components/core/Modal.vue +84 -0
- package/dist/runtime/components/core/SvgIcon.vue +119 -0
- package/dist/runtime/components/core/ZoomModal.vue +37 -0
- package/dist/runtime/components/events/EventHeader.vue +131 -0
- package/dist/runtime/components/events/PastEvents.vue +150 -0
- package/dist/runtime/components/events/UpcomingEvents.vue +145 -0
- package/dist/runtime/components/forms/ErrorField.vue +19 -0
- package/dist/runtime/components/forms/Message.vue +25 -0
- package/dist/runtime/components/forms/SearchInput.vue +30 -0
- package/dist/runtime/components/forms/SupportForm.vue +109 -0
- package/dist/runtime/components/forms/TextArea.vue +26 -0
- package/dist/runtime/components/forms/TextInput.vue +22 -0
- package/dist/runtime/components/layouts/Accordion.vue +76 -0
- package/dist/runtime/components/presenters/PresenterListing.vue +89 -0
- package/dist/runtime/components/presenters/PresenterModal.vue +83 -0
- package/dist/runtime/composables/useAgenda.d.ts +81 -0
- package/dist/runtime/composables/useAgenda.mjs +178 -0
- package/dist/runtime/composables/useAnalytics.d.ts +7 -0
- package/dist/runtime/composables/useAnalytics.mjs +10 -0
- package/dist/runtime/composables/useApi.d.ts +1 -0
- package/dist/runtime/composables/useApi.mjs +16 -0
- package/dist/runtime/composables/useConferenceHelpers.d.ts +65 -0
- package/dist/runtime/composables/useConferenceHelpers.mjs +270 -0
- package/dist/runtime/composables/useDateFormat.d.ts +12 -0
- package/dist/runtime/composables/useDateFormat.mjs +21 -0
- package/dist/runtime/composables/useLogin.d.ts +30 -0
- package/dist/runtime/composables/useLogin.mjs +58 -0
- package/dist/runtime/composables/usePresentation.d.ts +53 -0
- package/dist/runtime/composables/usePresentation.mjs +98 -0
- package/dist/runtime/composables/usePresenter.d.ts +15 -0
- package/dist/runtime/composables/usePresenter.mjs +67 -0
- package/dist/runtime/composables/usePresenters.d.ts +13 -0
- package/dist/runtime/composables/usePresenters.mjs +21 -0
- package/dist/runtime/composables/useV3plusCommonModule.d.ts +2 -0
- package/dist/runtime/composables/useV3plusCommonModule.mjs +2 -0
- package/dist/runtime/models/affiliate.d.ts +1 -0
- package/dist/runtime/models/affiliate.mjs +0 -0
- package/dist/runtime/models/authUser.d.ts +16 -0
- package/dist/runtime/models/authUser.mjs +0 -0
- package/dist/runtime/models/conference.d.ts +124 -0
- package/dist/runtime/models/conference.mjs +18 -0
- package/dist/runtime/models/globalConfig.d.ts +80 -0
- package/dist/runtime/models/globalConfig.mjs +0 -0
- package/dist/runtime/models/group.d.ts +14 -0
- package/dist/runtime/models/group.mjs +0 -0
- package/dist/runtime/models/icons.d.ts +18 -0
- package/dist/runtime/models/icons.mjs +0 -0
- package/dist/runtime/models/navigationConfig.d.ts +8 -0
- package/dist/runtime/models/navigationConfig.mjs +0 -0
- package/dist/runtime/models/pagesConfig.d.ts +169 -0
- package/dist/runtime/models/pagesConfig.mjs +0 -0
- package/dist/runtime/models/portal.d.ts +8 -0
- package/dist/runtime/models/portal.mjs +0 -0
- package/dist/runtime/models/templateConfig.d.ts +44 -0
- package/dist/runtime/models/templateConfig.mjs +0 -0
- package/dist/runtime/plugin.d.ts +2 -0
- package/dist/runtime/plugin.mjs +55 -0
- package/dist/runtime/store/affiliates.d.ts +12 -0
- package/dist/runtime/store/affiliates.mjs +35 -0
- package/dist/runtime/store/auth.d.ts +14 -0
- package/dist/runtime/store/auth.mjs +32 -0
- package/dist/runtime/store/conferences.d.ts +13 -0
- package/dist/runtime/store/conferences.mjs +86 -0
- package/dist/runtime/store/navigationConfig.d.ts +7 -0
- package/dist/runtime/store/navigationConfig.mjs +14 -0
- package/dist/runtime/store/portal.d.ts +9 -0
- package/dist/runtime/store/portal.mjs +39 -0
- package/dist/runtime/store/support.d.ts +3 -0
- package/dist/runtime/store/support.mjs +20 -0
- package/dist/runtime/store/templateConfigs.d.ts +20 -0
- package/dist/runtime/store/templateConfigs.mjs +84 -0
- package/dist/runtime/v3plusCommonPlugin.d.ts +14 -0
- package/dist/runtime/v3plusCommonPlugin.mjs +8 -0
- package/dist/types.d.ts +10 -0
- package/package.json +57 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
export declare type ColorVariable = {
|
|
2
|
+
value: string;
|
|
3
|
+
class: string;
|
|
4
|
+
label: string;
|
|
5
|
+
name: string;
|
|
6
|
+
variable: string;
|
|
7
|
+
};
|
|
8
|
+
export declare type HTMLVariable = {
|
|
9
|
+
label: string;
|
|
10
|
+
name: string;
|
|
11
|
+
type: string;
|
|
12
|
+
value: string;
|
|
13
|
+
};
|
|
14
|
+
export declare type ToggleVariable = {
|
|
15
|
+
class: string;
|
|
16
|
+
label: string;
|
|
17
|
+
name: string;
|
|
18
|
+
type: string;
|
|
19
|
+
value: boolean;
|
|
20
|
+
};
|
|
21
|
+
export declare type SelectVariable = {
|
|
22
|
+
label: string;
|
|
23
|
+
name: string;
|
|
24
|
+
type: string;
|
|
25
|
+
value: string;
|
|
26
|
+
};
|
|
27
|
+
export declare type NumberVariable = {
|
|
28
|
+
label: string;
|
|
29
|
+
name: string;
|
|
30
|
+
note: string;
|
|
31
|
+
type: string;
|
|
32
|
+
value: string;
|
|
33
|
+
};
|
|
34
|
+
export declare type ImageVariable = {
|
|
35
|
+
label: string;
|
|
36
|
+
name: string;
|
|
37
|
+
type: string;
|
|
38
|
+
value: string;
|
|
39
|
+
};
|
|
40
|
+
export declare type TextVariable = {
|
|
41
|
+
label: string;
|
|
42
|
+
name: string;
|
|
43
|
+
type: string;
|
|
44
|
+
value: string;
|
|
45
|
+
};
|
|
46
|
+
export declare type TogglePlusLabelVariable = {
|
|
47
|
+
label: string;
|
|
48
|
+
name: string;
|
|
49
|
+
type: string;
|
|
50
|
+
value: {
|
|
51
|
+
enabled: boolean;
|
|
52
|
+
label: string;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
export declare type DragPlusToggleVariable = {
|
|
56
|
+
label: string;
|
|
57
|
+
name: string;
|
|
58
|
+
type: string;
|
|
59
|
+
value: Array<{
|
|
60
|
+
enabled: boolean;
|
|
61
|
+
label: string;
|
|
62
|
+
name: string;
|
|
63
|
+
order: number;
|
|
64
|
+
}>;
|
|
65
|
+
};
|
|
66
|
+
export declare type FontVariable = {
|
|
67
|
+
label: string;
|
|
68
|
+
name: string;
|
|
69
|
+
type: string;
|
|
70
|
+
value: string;
|
|
71
|
+
variable: string;
|
|
72
|
+
};
|
|
73
|
+
export declare type TextAreaVariable = {
|
|
74
|
+
label: string;
|
|
75
|
+
name: string;
|
|
76
|
+
type: string;
|
|
77
|
+
value: string;
|
|
78
|
+
};
|
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AnalyticsInstance } from "analytics";
|
|
2
|
+
export declare type Analytics = {
|
|
3
|
+
readonly _analytics: AnalyticsInstance | null;
|
|
4
|
+
create: (id: any, userId: any) => void;
|
|
5
|
+
click: (event: string, label: string) => void;
|
|
6
|
+
};
|
|
7
|
+
declare const _default: () => Analytics;
|
|
8
|
+
export default _default;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import AnalyticsPlugin from "analytics";
|
|
2
|
+
import GoogleAnalytics from "@analytics/google-analytics";
|
|
3
|
+
export default () => {
|
|
4
|
+
let _analytics = null;
|
|
5
|
+
const create = (trackingId, userId) => {
|
|
6
|
+
_analytics = AnalyticsPlugin({
|
|
7
|
+
app: "portal",
|
|
8
|
+
plugins: [
|
|
9
|
+
GoogleAnalytics({
|
|
10
|
+
trackingId,
|
|
11
|
+
customDimensions: {
|
|
12
|
+
userId
|
|
13
|
+
}
|
|
14
|
+
})
|
|
15
|
+
]
|
|
16
|
+
});
|
|
17
|
+
if (userId) {
|
|
18
|
+
_analytics.page({ userId });
|
|
19
|
+
} else {
|
|
20
|
+
_analytics.page();
|
|
21
|
+
}
|
|
22
|
+
};
|
|
23
|
+
const click = (event, label) => {
|
|
24
|
+
if (_analytics) {
|
|
25
|
+
_analytics.track(event, {
|
|
26
|
+
category: "Click",
|
|
27
|
+
label
|
|
28
|
+
});
|
|
29
|
+
} else {
|
|
30
|
+
console.warn("analytics has not been setup");
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
return {
|
|
34
|
+
_analytics,
|
|
35
|
+
create,
|
|
36
|
+
click
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.agenda-tab-bg-color {
|
|
2
|
+
background-color: $agenda-tab-bg-color;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.agenda-tab-active-bg-color {
|
|
6
|
+
background-color: $agenda-tab-active-bg-color;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.agenda-tab-sponsor-bg-color {
|
|
10
|
+
background-color: $agenda-tab-sponsor-bg-color;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.agenda-tab-color {
|
|
14
|
+
color: $agenda-tab-color;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.agenda-track-bg-color {
|
|
18
|
+
background-color: $agenda-track-bg-color;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.agenda-track-group-bg-color {
|
|
22
|
+
background-color: $agenda-track-group-bg-color;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.agenda-grouped-track-color-1 {
|
|
26
|
+
background-color: $agenda-grouped-track-color-1;
|
|
27
|
+
}
|
|
28
|
+
.agenda-grouped-track-color-2 {
|
|
29
|
+
background-color: $agenda-grouped-track-color-2;
|
|
30
|
+
}
|
|
31
|
+
.agenda-grouped-track-color-3 {
|
|
32
|
+
background-color: $agenda-grouped-track-color-3;
|
|
33
|
+
}
|
|
34
|
+
.agenda-grouped-track-color-4 {
|
|
35
|
+
background-color: $agenda-grouped-track-color-4;
|
|
36
|
+
}
|
|
37
|
+
.agenda-grouped-track-text-color {
|
|
38
|
+
color: $agenda-grouped-track-text-color;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.agenda-presenter-color {
|
|
42
|
+
color: $agenda-presenter-color;
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
color: darken($agenda-presenter-color, 10);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.container-1\/2 {
|
|
2
|
+
width: 100%;
|
|
3
|
+
}
|
|
4
|
+
@screen sm {
|
|
5
|
+
.container-1\/2 {
|
|
6
|
+
max-width: 288px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@screen md {
|
|
11
|
+
.container-1\/2 {
|
|
12
|
+
max-width: 384px;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@screen lg {
|
|
17
|
+
.container-1\/2 {
|
|
18
|
+
max-width: 496px;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@screen xl {
|
|
23
|
+
.container-1\/2 {
|
|
24
|
+
max-width: 600px;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,364 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
}
|
|
41
|
+
}
|