devops4lib-jekyll-theme-conference 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.
- checksums.yaml +7 -0
- data/LICENSE.md +9 -0
- data/README.md +781 -0
- data/_includes/js/conference.js +55 -0
- data/_includes/js/init.js +39 -0
- data/_includes/js/lib/a_popper.min.js +4 -0
- data/_includes/js/lib/bootstrap.js +6 -0
- data/_includes/js/lib/jquery-3.5.1.min.js +2 -0
- data/_includes/js/lib/leaflet-easybutton.js +376 -0
- data/_includes/js/lib/leaflet-locatecontrol.js +4 -0
- data/_includes/js/lib/leaflet-providers.js +877 -0
- data/_includes/js/lib/leaflet.js +5 -0
- data/_includes/js/lib/syncscroll.js +140 -0
- data/_includes/js/live.js +779 -0
- data/_includes/js/map.js +43 -0
- data/_includes/js/modal.js +78 -0
- data/_includes/js/program.js +41 -0
- data/_includes/partials/checks.html +69 -0
- data/_includes/partials/footer.html +18 -0
- data/_includes/partials/get_day_hash.html +20 -0
- data/_includes/partials/get_day_time.html +21 -0
- data/_includes/partials/get_enable_map.html +11 -0
- data/_includes/partials/get_link.html +85 -0
- data/_includes/partials/get_link_types.html +15 -0
- data/_includes/partials/get_live_timestamps.html +49 -0
- data/_includes/partials/get_main_category.html +9 -0
- data/_includes/partials/get_page_description.html +23 -0
- data/_includes/partials/get_page_title.html +33 -0
- data/_includes/partials/get_room_live_href.html +8 -0
- data/_includes/partials/get_talk_time.html +24 -0
- data/_includes/partials/get_talk_timestamp.html +15 -0
- data/_includes/partials/get_time_pronoun.html +6 -0
- data/_includes/partials/header.html +67 -0
- data/_includes/partials/info_bar.html +38 -0
- data/_includes/partials/list_categories.html +4 -0
- data/_includes/partials/list_page_meta.html +23 -0
- data/_includes/partials/list_speakers.html +22 -0
- data/_includes/partials/list_sub_categories.html +8 -0
- data/_includes/partials/modal_link.html +21 -0
- data/_includes/partials/modal_live.html +49 -0
- data/_includes/partials/navbar.html +97 -0
- data/_includes/partials/navbar_rooms.html +36 -0
- data/_includes/partials/show_live_button.html +21 -0
- data/_includes/partials/show_room.html +5 -0
- data/_includes/partials/show_talk.html +5 -0
- data/_includes/partials/show_talk_duration.html +3 -0
- data/_includes/partials/show_talk_time.html +17 -0
- data/_layouts/config.html +78 -0
- data/_layouts/data.html +126 -0
- data/_layouts/default.html +5 -0
- data/_layouts/home.html +87 -0
- data/_layouts/location.html +25 -0
- data/_layouts/page.html +13 -0
- data/_layouts/program.html +201 -0
- data/_layouts/room.html +70 -0
- data/_layouts/speaker-overview.html +47 -0
- data/_layouts/speaker.html +111 -0
- data/_layouts/stream-overview.html +43 -0
- data/_layouts/talk-overview.html +112 -0
- data/_layouts/talk.html +123 -0
- data/_sass/bootstrap/_alert.scss +52 -0
- data/_sass/bootstrap/_badge.scss +54 -0
- data/_sass/bootstrap/_breadcrumb.scss +44 -0
- data/_sass/bootstrap/_button-group.scss +163 -0
- data/_sass/bootstrap/_buttons.scss +142 -0
- data/_sass/bootstrap/_card.scss +286 -0
- data/_sass/bootstrap/_carousel.scss +197 -0
- data/_sass/bootstrap/_close.scss +40 -0
- data/_sass/bootstrap/_code.scss +48 -0
- data/_sass/bootstrap/_custom-forms.scss +524 -0
- data/_sass/bootstrap/_dropdown.scss +192 -0
- data/_sass/bootstrap/_forms.scss +347 -0
- data/_sass/bootstrap/_functions.scss +144 -0
- data/_sass/bootstrap/_grid.scss +73 -0
- data/_sass/bootstrap/_images.scss +42 -0
- data/_sass/bootstrap/_input-group.scss +192 -0
- data/_sass/bootstrap/_jumbotron.scss +17 -0
- data/_sass/bootstrap/_list-group.scss +154 -0
- data/_sass/bootstrap/_media.scss +8 -0
- data/_sass/bootstrap/_mixins.scss +47 -0
- data/_sass/bootstrap/_modal.scss +240 -0
- data/_sass/bootstrap/_nav.scss +123 -0
- data/_sass/bootstrap/_navbar.scss +324 -0
- data/_sass/bootstrap/_pagination.scss +74 -0
- data/_sass/bootstrap/_popover.scss +170 -0
- data/_sass/bootstrap/_print.scss +141 -0
- data/_sass/bootstrap/_progress.scss +47 -0
- data/_sass/bootstrap/_reboot.scss +484 -0
- data/_sass/bootstrap/_root.scss +20 -0
- data/_sass/bootstrap/_spinners.scss +56 -0
- data/_sass/bootstrap/_tables.scss +185 -0
- data/_sass/bootstrap/_toasts.scss +46 -0
- data/_sass/bootstrap/_tooltip.scss +115 -0
- data/_sass/bootstrap/_transitions.scss +20 -0
- data/_sass/bootstrap/_type.scss +125 -0
- data/_sass/bootstrap/_utilities.scss +18 -0
- data/_sass/bootstrap/_variables.scss +1142 -0
- data/_sass/bootstrap/bootstrap-grid.scss +29 -0
- data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
- data/_sass/bootstrap/bootstrap.scss +44 -0
- data/_sass/bootstrap/mixins/_alert.scss +13 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +23 -0
- data/_sass/bootstrap/mixins/_badge.scss +17 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +76 -0
- data/_sass/bootstrap/mixins/_box-shadow.scss +20 -0
- data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
- data/_sass/bootstrap/mixins/_buttons.scss +110 -0
- data/_sass/bootstrap/mixins/_caret.scss +62 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
- data/_sass/bootstrap/mixins/_deprecate.scss +10 -0
- data/_sass/bootstrap/mixins/_float.scss +14 -0
- data/_sass/bootstrap/mixins/_forms.scss +178 -0
- data/_sass/bootstrap/mixins/_gradients.scss +45 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +80 -0
- data/_sass/bootstrap/mixins/_grid.scss +69 -0
- data/_sass/bootstrap/mixins/_hover.scss +37 -0
- data/_sass/bootstrap/mixins/_image.scss +36 -0
- data/_sass/bootstrap/mixins/_list-group.scss +21 -0
- data/_sass/bootstrap/mixins/_lists.scss +7 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +11 -0
- data/_sass/bootstrap/mixins/_pagination.scss +22 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_screen-reader.scss +34 -0
- data/_sass/bootstrap/mixins/_size.scss +7 -0
- data/_sass/bootstrap/mixins/_table-row.scss +39 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +17 -0
- data/_sass/bootstrap/mixins/_text-hide.scss +11 -0
- data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
- data/_sass/bootstrap/mixins/_transition.scss +26 -0
- data/_sass/bootstrap/mixins/_visibility.scss +8 -0
- data/_sass/bootstrap/utilities/_align.scss +8 -0
- data/_sass/bootstrap/utilities/_background.scss +19 -0
- data/_sass/bootstrap/utilities/_borders.scss +75 -0
- data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
- data/_sass/bootstrap/utilities/_display.scss +26 -0
- data/_sass/bootstrap/utilities/_embed.scss +39 -0
- data/_sass/bootstrap/utilities/_flex.scss +51 -0
- data/_sass/bootstrap/utilities/_float.scss +11 -0
- data/_sass/bootstrap/utilities/_interactions.scss +5 -0
- data/_sass/bootstrap/utilities/_overflow.scss +5 -0
- data/_sass/bootstrap/utilities/_position.scss +32 -0
- data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
- data/_sass/bootstrap/utilities/_shadows.scss +6 -0
- data/_sass/bootstrap/utilities/_sizing.scss +20 -0
- data/_sass/bootstrap/utilities/_spacing.scss +73 -0
- data/_sass/bootstrap/utilities/_stretched-link.scss +19 -0
- data/_sass/bootstrap/utilities/_text.scss +72 -0
- data/_sass/bootstrap/utilities/_visibility.scss +13 -0
- data/_sass/bootstrap/vendor/_rfs.scss +204 -0
- data/_sass/conference.scss +255 -0
- data/_sass/font-awesome/_animated.scss +20 -0
- data/_sass/font-awesome/_bordered-pulled.scss +20 -0
- data/_sass/font-awesome/_core.scss +21 -0
- data/_sass/font-awesome/_fixed-width.scss +6 -0
- data/_sass/font-awesome/_icons.scss +1462 -0
- data/_sass/font-awesome/_larger.scss +23 -0
- data/_sass/font-awesome/_list.scss +18 -0
- data/_sass/font-awesome/_mixins.scss +56 -0
- data/_sass/font-awesome/_rotated-flipped.scss +24 -0
- data/_sass/font-awesome/_screen-reader.scss +5 -0
- data/_sass/font-awesome/_shims.scss +2066 -0
- data/_sass/font-awesome/_stacked.scss +31 -0
- data/_sass/font-awesome/_variables.scss +1479 -0
- data/_sass/font-awesome/brands.scss +23 -0
- data/_sass/font-awesome/fontawesome.scss +16 -0
- data/_sass/font-awesome/regular.scss +23 -0
- data/_sass/font-awesome/scss/_animated.scss +20 -0
- data/_sass/font-awesome/scss/_bordered-pulled.scss +20 -0
- data/_sass/font-awesome/scss/_core.scss +21 -0
- data/_sass/font-awesome/scss/_fixed-width.scss +6 -0
- data/_sass/font-awesome/scss/_icons.scss +1441 -0
- data/_sass/font-awesome/scss/_larger.scss +23 -0
- data/_sass/font-awesome/scss/_list.scss +18 -0
- data/_sass/font-awesome/scss/_mixins.scss +56 -0
- data/_sass/font-awesome/scss/_rotated-flipped.scss +24 -0
- data/_sass/font-awesome/scss/_screen-reader.scss +5 -0
- data/_sass/font-awesome/scss/_shims.scss +2066 -0
- data/_sass/font-awesome/scss/_stacked.scss +31 -0
- data/_sass/font-awesome/scss/_variables.scss +1458 -0
- data/_sass/font-awesome/scss/brands.scss +23 -0
- data/_sass/font-awesome/scss/fontawesome.scss +16 -0
- data/_sass/font-awesome/scss/regular.scss +23 -0
- data/_sass/font-awesome/scss/solid.scss +24 -0
- data/_sass/font-awesome/scss/v4-shims.scss +6 -0
- data/_sass/font-awesome/solid.scss +24 -0
- data/_sass/font-awesome/v4-shims.scss +6 -0
- data/_sass/leaflet/leaflet-easybutton.scss +56 -0
- data/_sass/leaflet/leaflet-locatecontrol.scss +2 -0
- data/_sass/leaflet/leaflet.scss +640 -0
- data/assets/css/main.scss +6 -0
- data/assets/icons/live.svg +57 -0
- data/assets/js/config.json +3 -0
- data/assets/js/data.json +3 -0
- data/assets/js/main.js +4 -0
- data/assets/webfonts/fa-brands-400.eot +0 -0
- data/assets/webfonts/fa-brands-400.svg +3717 -0
- data/assets/webfonts/fa-brands-400.ttf +0 -0
- data/assets/webfonts/fa-brands-400.woff +0 -0
- data/assets/webfonts/fa-brands-400.woff2 +0 -0
- data/assets/webfonts/fa-regular-400.eot +0 -0
- data/assets/webfonts/fa-regular-400.svg +801 -0
- data/assets/webfonts/fa-regular-400.ttf +0 -0
- data/assets/webfonts/fa-regular-400.woff +0 -0
- data/assets/webfonts/fa-regular-400.woff2 +0 -0
- data/assets/webfonts/fa-solid-900.eot +0 -0
- data/assets/webfonts/fa-solid-900.svg +5028 -0
- data/assets/webfonts/fa-solid-900.ttf +0 -0
- data/assets/webfonts/fa-solid-900.woff +0 -0
- data/assets/webfonts/fa-solid-900.woff2 +0 -0
- metadata +296 -0
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
// stylelint-disable property-blacklist, scss/dollar-variable-default
|
|
2
|
+
|
|
3
|
+
// SCSS RFS mixin
|
|
4
|
+
//
|
|
5
|
+
// Automated font-resizing
|
|
6
|
+
//
|
|
7
|
+
// See https://github.com/twbs/rfs
|
|
8
|
+
|
|
9
|
+
// Configuration
|
|
10
|
+
|
|
11
|
+
// Base font size
|
|
12
|
+
$rfs-base-font-size: 1.25rem !default;
|
|
13
|
+
$rfs-font-size-unit: rem !default;
|
|
14
|
+
|
|
15
|
+
// Breakpoint at where font-size starts decreasing if screen width is smaller
|
|
16
|
+
$rfs-breakpoint: 1200px !default;
|
|
17
|
+
$rfs-breakpoint-unit: px !default;
|
|
18
|
+
|
|
19
|
+
// Resize font-size based on screen height and width
|
|
20
|
+
$rfs-two-dimensional: false !default;
|
|
21
|
+
|
|
22
|
+
// Factor of decrease
|
|
23
|
+
$rfs-factor: 10 !default;
|
|
24
|
+
|
|
25
|
+
@if type-of($rfs-factor) != "number" or $rfs-factor <= 1 {
|
|
26
|
+
@error "`#{$rfs-factor}` is not a valid $rfs-factor, it must be greater than 1.";
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Generate enable or disable classes. Possibilities: false, "enable" or "disable"
|
|
30
|
+
$rfs-class: false !default;
|
|
31
|
+
|
|
32
|
+
// 1 rem = $rfs-rem-value px
|
|
33
|
+
$rfs-rem-value: 16 !default;
|
|
34
|
+
|
|
35
|
+
// Safari iframe resize bug: https://github.com/twbs/rfs/issues/14
|
|
36
|
+
$rfs-safari-iframe-resize-bug-fix: false !default;
|
|
37
|
+
|
|
38
|
+
// Disable RFS by setting $enable-responsive-font-sizes to false
|
|
39
|
+
$enable-responsive-font-sizes: true !default;
|
|
40
|
+
|
|
41
|
+
// Cache $rfs-base-font-size unit
|
|
42
|
+
$rfs-base-font-size-unit: unit($rfs-base-font-size);
|
|
43
|
+
|
|
44
|
+
// Remove px-unit from $rfs-base-font-size for calculations
|
|
45
|
+
@if $rfs-base-font-size-unit == "px" {
|
|
46
|
+
$rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1);
|
|
47
|
+
}
|
|
48
|
+
@else if $rfs-base-font-size-unit == "rem" {
|
|
49
|
+
$rfs-base-font-size: $rfs-base-font-size / ($rfs-base-font-size * 0 + 1 / $rfs-rem-value);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// Cache $rfs-breakpoint unit to prevent multiple calls
|
|
53
|
+
$rfs-breakpoint-unit-cache: unit($rfs-breakpoint);
|
|
54
|
+
|
|
55
|
+
// Remove unit from $rfs-breakpoint for calculations
|
|
56
|
+
@if $rfs-breakpoint-unit-cache == "px" {
|
|
57
|
+
$rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1);
|
|
58
|
+
}
|
|
59
|
+
@else if $rfs-breakpoint-unit-cache == "rem" or $rfs-breakpoint-unit-cache == "em" {
|
|
60
|
+
$rfs-breakpoint: $rfs-breakpoint / ($rfs-breakpoint * 0 + 1 / $rfs-rem-value);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Responsive font-size mixin
|
|
64
|
+
@mixin rfs($fs, $important: false) {
|
|
65
|
+
// Cache $fs unit
|
|
66
|
+
$fs-unit: if(type-of($fs) == "number", unit($fs), false);
|
|
67
|
+
|
|
68
|
+
// Add !important suffix if needed
|
|
69
|
+
$rfs-suffix: if($important, " !important", "");
|
|
70
|
+
|
|
71
|
+
// If $fs isn't a number (like inherit) or $fs has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
|
|
72
|
+
@if not $fs-unit or $fs-unit != "" and $fs-unit != "px" and $fs-unit != "rem" or $fs == 0 {
|
|
73
|
+
font-size: #{$fs}#{$rfs-suffix};
|
|
74
|
+
}
|
|
75
|
+
@else {
|
|
76
|
+
// Variables for storing static and fluid rescaling
|
|
77
|
+
$rfs-static: null;
|
|
78
|
+
$rfs-fluid: null;
|
|
79
|
+
|
|
80
|
+
// Remove px-unit from $fs for calculations
|
|
81
|
+
@if $fs-unit == "px" {
|
|
82
|
+
$fs: $fs / ($fs * 0 + 1);
|
|
83
|
+
}
|
|
84
|
+
@else if $fs-unit == "rem" {
|
|
85
|
+
$fs: $fs / ($fs * 0 + 1 / $rfs-rem-value);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Set default font-size
|
|
89
|
+
@if $rfs-font-size-unit == rem {
|
|
90
|
+
$rfs-static: #{$fs / $rfs-rem-value}rem#{$rfs-suffix};
|
|
91
|
+
}
|
|
92
|
+
@else if $rfs-font-size-unit == px {
|
|
93
|
+
$rfs-static: #{$fs}px#{$rfs-suffix};
|
|
94
|
+
}
|
|
95
|
+
@else {
|
|
96
|
+
@error "`#{$rfs-font-size-unit}` is not a valid unit for $rfs-font-size-unit. Use `px` or `rem`.";
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// Only add media query if font-size is bigger as the minimum font-size
|
|
100
|
+
// If $rfs-factor == 1, no rescaling will take place
|
|
101
|
+
@if $fs > $rfs-base-font-size and $enable-responsive-font-sizes {
|
|
102
|
+
$min-width: null;
|
|
103
|
+
$variable-unit: null;
|
|
104
|
+
|
|
105
|
+
// Calculate minimum font-size for given font-size
|
|
106
|
+
$fs-min: $rfs-base-font-size + ($fs - $rfs-base-font-size) / $rfs-factor;
|
|
107
|
+
|
|
108
|
+
// Calculate difference between given font-size and minimum font-size for given font-size
|
|
109
|
+
$fs-diff: $fs - $fs-min;
|
|
110
|
+
|
|
111
|
+
// Base font-size formatting
|
|
112
|
+
// No need to check if the unit is valid, because we did that before
|
|
113
|
+
$min-width: if($rfs-font-size-unit == rem, #{$fs-min / $rfs-rem-value}rem, #{$fs-min}px);
|
|
114
|
+
|
|
115
|
+
// If two-dimensional, use smallest of screen width and height
|
|
116
|
+
$variable-unit: if($rfs-two-dimensional, vmin, vw);
|
|
117
|
+
|
|
118
|
+
// Calculate the variable width between 0 and $rfs-breakpoint
|
|
119
|
+
$variable-width: #{$fs-diff * 100 / $rfs-breakpoint}#{$variable-unit};
|
|
120
|
+
|
|
121
|
+
// Set the calculated font-size.
|
|
122
|
+
$rfs-fluid: calc(#{$min-width} + #{$variable-width}) #{$rfs-suffix};
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// Rendering
|
|
126
|
+
@if $rfs-fluid == null {
|
|
127
|
+
// Only render static font-size if no fluid font-size is available
|
|
128
|
+
font-size: $rfs-static;
|
|
129
|
+
}
|
|
130
|
+
@else {
|
|
131
|
+
$mq-value: null;
|
|
132
|
+
|
|
133
|
+
// RFS breakpoint formatting
|
|
134
|
+
@if $rfs-breakpoint-unit == em or $rfs-breakpoint-unit == rem {
|
|
135
|
+
$mq-value: #{$rfs-breakpoint / $rfs-rem-value}#{$rfs-breakpoint-unit};
|
|
136
|
+
}
|
|
137
|
+
@else if $rfs-breakpoint-unit == px {
|
|
138
|
+
$mq-value: #{$rfs-breakpoint}px;
|
|
139
|
+
}
|
|
140
|
+
@else {
|
|
141
|
+
@error "`#{$rfs-breakpoint-unit}` is not a valid unit for $rfs-breakpoint-unit. Use `px`, `em` or `rem`.";
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
@if $rfs-class == "disable" {
|
|
145
|
+
// Adding an extra class increases specificity,
|
|
146
|
+
// which prevents the media query to override the font size
|
|
147
|
+
&,
|
|
148
|
+
.disable-responsive-font-size &,
|
|
149
|
+
&.disable-responsive-font-size {
|
|
150
|
+
font-size: $rfs-static;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
@else {
|
|
154
|
+
font-size: $rfs-static;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
@if $rfs-two-dimensional {
|
|
158
|
+
@media (max-width: #{$mq-value}), (max-height: #{$mq-value}) {
|
|
159
|
+
@if $rfs-class == "enable" {
|
|
160
|
+
.enable-responsive-font-size &,
|
|
161
|
+
&.enable-responsive-font-size {
|
|
162
|
+
font-size: $rfs-fluid;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
@else {
|
|
166
|
+
font-size: $rfs-fluid;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
@if $rfs-safari-iframe-resize-bug-fix {
|
|
170
|
+
// stylelint-disable-next-line length-zero-no-unit
|
|
171
|
+
min-width: 0vw;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
@else {
|
|
176
|
+
@media (max-width: #{$mq-value}) {
|
|
177
|
+
@if $rfs-class == "enable" {
|
|
178
|
+
.enable-responsive-font-size &,
|
|
179
|
+
&.enable-responsive-font-size {
|
|
180
|
+
font-size: $rfs-fluid;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
@else {
|
|
184
|
+
font-size: $rfs-fluid;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
@if $rfs-safari-iframe-resize-bug-fix {
|
|
188
|
+
// stylelint-disable-next-line length-zero-no-unit
|
|
189
|
+
min-width: 0vw;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// The font-size & responsive-font-size mixin uses RFS to rescale font sizes
|
|
198
|
+
@mixin font-size($fs, $important: false) {
|
|
199
|
+
@include rfs($fs, $important);
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
@mixin responsive-font-size($fs, $important: false) {
|
|
203
|
+
@include rfs($fs, $important);
|
|
204
|
+
}
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
|
|
2
|
+
// Framework Configuration
|
|
3
|
+
|
|
4
|
+
// Bootstrap Theme
|
|
5
|
+
$border-radius: .1rem !default;
|
|
6
|
+
$alert-border-width: 4px !default;
|
|
7
|
+
$alert-color-level: 9 !default;
|
|
8
|
+
$badge-font-size: .85em !default;
|
|
9
|
+
$enable-responsive-font-sizes: true !default;
|
|
10
|
+
// Set different default as Bootstrap's choice is a very flashy blue
|
|
11
|
+
$primary: #074 !default;
|
|
12
|
+
|
|
13
|
+
// FontAwesome
|
|
14
|
+
$fa-font-path: '/assets/webfonts' !default;
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
// Import Sources
|
|
18
|
+
|
|
19
|
+
// Style Framework: Bootstrap
|
|
20
|
+
@import 'bootstrap/bootstrap';
|
|
21
|
+
// Icons: FontAwesome
|
|
22
|
+
@import 'font-awesome/fontawesome';
|
|
23
|
+
@import 'font-awesome/regular';
|
|
24
|
+
@import 'font-awesome/solid';
|
|
25
|
+
// Map Display Framework: Leaflet
|
|
26
|
+
@import 'leaflet/leaflet';
|
|
27
|
+
@import 'leaflet/leaflet-easybutton';
|
|
28
|
+
@import 'leaflet/leaflet-locatecontrol';
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// Adapt Bootstrap Elements
|
|
32
|
+
|
|
33
|
+
// Alert
|
|
34
|
+
.alert {
|
|
35
|
+
//$alert-border-radius
|
|
36
|
+
border-width: 0px;
|
|
37
|
+
border-left-width: $alert-border-width;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@each $color, $value in $theme-colors {
|
|
41
|
+
.border-soft-#{$color} {
|
|
42
|
+
border-color: theme-color-level($color, $alert-border-level);
|
|
43
|
+
border-left-width: $alert-border-width;
|
|
44
|
+
border-left-style: solid;
|
|
45
|
+
}
|
|
46
|
+
.bg-soft-#{$color} {
|
|
47
|
+
@include gradient-bg(theme-color-level($color, $alert-bg-level));
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
// Button group for lists
|
|
52
|
+
ul.btn-group {
|
|
53
|
+
> li:not(:first-child) > .btn {
|
|
54
|
+
margin-left: -$btn-border-width;
|
|
55
|
+
@include border-left-radius(0);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
> li:not(:last-child) > .btn {
|
|
59
|
+
@include border-right-radius(0);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Extend Bootstrap Elements
|
|
64
|
+
.display-5 {
|
|
65
|
+
font-size: 3rem;
|
|
66
|
+
font-weight: $display4-weight;
|
|
67
|
+
line-height: $display-line-height;
|
|
68
|
+
}
|
|
69
|
+
.font-normal {
|
|
70
|
+
.badge {
|
|
71
|
+
font-size: .85em;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
.overflow-y-hidden {
|
|
75
|
+
overflow-y: hidden;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// Custom Styling
|
|
79
|
+
|
|
80
|
+
// General
|
|
81
|
+
|
|
82
|
+
// Extend logo when collapsed navbar is shown
|
|
83
|
+
.navbar-collapse.show + .navbar-logo {
|
|
84
|
+
width: 100%;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// Keep images in container
|
|
88
|
+
main.container img {
|
|
89
|
+
max-width: 100%;
|
|
90
|
+
height: auto;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// No bottom margin on info-bar
|
|
94
|
+
.alert > p:last-of-type {
|
|
95
|
+
margin-bottom: 0;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// Live icon
|
|
99
|
+
.live-button > object {
|
|
100
|
+
width: 0.85em;
|
|
101
|
+
height: 0.85em;
|
|
102
|
+
color: inherit;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// Live button font size in navigation bar
|
|
106
|
+
.nav-link .live-button {
|
|
107
|
+
font-size: 1em;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// Program
|
|
111
|
+
|
|
112
|
+
// Sticky header and first column
|
|
113
|
+
.table {
|
|
114
|
+
// Avoid sticky cells without border
|
|
115
|
+
border-collapse: separate;
|
|
116
|
+
|
|
117
|
+
// Correct border-width caused by border-collapse
|
|
118
|
+
border-spacing: 0px;
|
|
119
|
+
tbody tr:first-of-type > * {
|
|
120
|
+
border-top-width: 0px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Sticky horizontal positioning
|
|
124
|
+
th {
|
|
125
|
+
position: sticky;
|
|
126
|
+
background-color: $body-bg;
|
|
127
|
+
}
|
|
128
|
+
th:first-of-type {
|
|
129
|
+
left: 0px;
|
|
130
|
+
z-index: 1;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// Hide shadow of table cells next to sticky header
|
|
134
|
+
thead tr > th:last-of-type {
|
|
135
|
+
box-shadow: 10px 0px 0px 0px rgba(255,255,255,1);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
// Column Width
|
|
140
|
+
.table {
|
|
141
|
+
// First row defines width for all columns
|
|
142
|
+
table-layout: fixed;
|
|
143
|
+
|
|
144
|
+
// Columns define table width
|
|
145
|
+
width: auto;
|
|
146
|
+
|
|
147
|
+
// Column widths
|
|
148
|
+
th, td {
|
|
149
|
+
// Total available container width is 1110px
|
|
150
|
+
|
|
151
|
+
// Width of columns with content (default)
|
|
152
|
+
width: 245px;
|
|
153
|
+
min-width: 245px;
|
|
154
|
+
|
|
155
|
+
// Spacing between columns
|
|
156
|
+
&.col-space {
|
|
157
|
+
width: 15px;
|
|
158
|
+
min-width: 15px;
|
|
159
|
+
}
|
|
160
|
+
// Width of first column containing timestamps
|
|
161
|
+
&.col-title {
|
|
162
|
+
width: 70px;
|
|
163
|
+
min-width: 70px;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// Location
|
|
169
|
+
.nav-pills .nav-link.active {
|
|
170
|
+
background-color: theme-color-level('primary', $alert-bg-level);
|
|
171
|
+
color: var(--dark);
|
|
172
|
+
}
|
|
173
|
+
#map {
|
|
174
|
+
height: 50vh;
|
|
175
|
+
min-height: 400px;
|
|
176
|
+
width: 100%;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// Program per Room
|
|
180
|
+
.list-program {
|
|
181
|
+
border: 0 none white;
|
|
182
|
+
|
|
183
|
+
border-collapse: separate;
|
|
184
|
+
border-spacing: 0 0.5em;
|
|
185
|
+
|
|
186
|
+
tr {
|
|
187
|
+
td:first-child {
|
|
188
|
+
vertical-align: top;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
td:last-child {
|
|
192
|
+
width: 100%;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
// Speaker
|
|
198
|
+
.speakergroup {
|
|
199
|
+
page-break-inside: avoid;
|
|
200
|
+
break-inside: avoid-column;
|
|
201
|
+
}
|
|
202
|
+
@include media-breakpoint-up(sm) {
|
|
203
|
+
.speakerlist {
|
|
204
|
+
column-count: 1;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
@include media-breakpoint-up(md) {
|
|
208
|
+
.speakerlist {
|
|
209
|
+
column-count: 2;
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
@include media-breakpoint-up(lg) {
|
|
213
|
+
.speakerlist {
|
|
214
|
+
column-count: 3;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
// Print
|
|
220
|
+
@media print {
|
|
221
|
+
// remove underline for links
|
|
222
|
+
a {
|
|
223
|
+
text-decoration: none !important;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// overwrite bootstrap default white background
|
|
227
|
+
// works only with Webkit (Chrome, Safari) and Firefox
|
|
228
|
+
@each $color, $value in $theme-colors {
|
|
229
|
+
.table td.alert-#{$color} {
|
|
230
|
+
color-adjust: exact;
|
|
231
|
+
background-color: theme-color-level($color, $alert-bg-level) !important;
|
|
232
|
+
|
|
233
|
+
color: black;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
.badge {
|
|
237
|
+
color-adjust: exact;
|
|
238
|
+
|
|
239
|
+
border: 0 none white;
|
|
240
|
+
text-decoration: none !important;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
// Remove sticky position from table to show borders
|
|
244
|
+
.table th {
|
|
245
|
+
position: inherit;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// Remove live buttons
|
|
249
|
+
.live-show {
|
|
250
|
+
display: none;
|
|
251
|
+
}
|
|
252
|
+
.live-hide {
|
|
253
|
+
display: inline-block !important;
|
|
254
|
+
}
|
|
255
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Animated Icons
|
|
2
|
+
// --------------------------
|
|
3
|
+
|
|
4
|
+
.#{$fa-css-prefix}-spin {
|
|
5
|
+
animation: fa-spin 2s infinite linear;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.#{$fa-css-prefix}-pulse {
|
|
9
|
+
animation: fa-spin 1s infinite steps(8);
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@keyframes fa-spin {
|
|
13
|
+
0% {
|
|
14
|
+
transform: rotate(0deg);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
100% {
|
|
18
|
+
transform: rotate(360deg);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Bordered & Pulled
|
|
2
|
+
// -------------------------
|
|
3
|
+
|
|
4
|
+
.#{$fa-css-prefix}-border {
|
|
5
|
+
border: solid .08em $fa-border-color;
|
|
6
|
+
border-radius: .1em;
|
|
7
|
+
padding: .2em .25em .15em;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.#{$fa-css-prefix}-pull-left { float: left; }
|
|
11
|
+
.#{$fa-css-prefix}-pull-right { float: right; }
|
|
12
|
+
|
|
13
|
+
.#{$fa-css-prefix},
|
|
14
|
+
.fas,
|
|
15
|
+
.far,
|
|
16
|
+
.fal,
|
|
17
|
+
.fab {
|
|
18
|
+
&.#{$fa-css-prefix}-pull-left { margin-right: .3em; }
|
|
19
|
+
&.#{$fa-css-prefix}-pull-right { margin-left: .3em; }
|
|
20
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// Base Class Definition
|
|
2
|
+
// -------------------------
|
|
3
|
+
|
|
4
|
+
.#{$fa-css-prefix},
|
|
5
|
+
.fas,
|
|
6
|
+
.far,
|
|
7
|
+
.fal,
|
|
8
|
+
.fad,
|
|
9
|
+
.fab {
|
|
10
|
+
-moz-osx-font-smoothing: grayscale;
|
|
11
|
+
-webkit-font-smoothing: antialiased;
|
|
12
|
+
display: inline-block;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-variant: normal;
|
|
15
|
+
text-rendering: auto;
|
|
16
|
+
line-height: 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
%fa-icon {
|
|
20
|
+
@include fa-icon;
|
|
21
|
+
}
|