jekyll-theme-conference 4.0.0 → 4.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.
Files changed (104) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/_sass/bootstrap/scss/_accordion.scss +153 -0
  4. data/_sass/bootstrap/scss/_alert.scss +68 -0
  5. data/_sass/bootstrap/scss/_badge.scss +38 -0
  6. data/_sass/bootstrap/scss/_breadcrumb.scss +40 -0
  7. data/_sass/bootstrap/scss/_button-group.scss +147 -0
  8. data/_sass/bootstrap/scss/_buttons.scss +216 -0
  9. data/_sass/bootstrap/scss/_card.scss +238 -0
  10. data/_sass/bootstrap/scss/_carousel.scss +226 -0
  11. data/_sass/bootstrap/scss/_close.scss +66 -0
  12. data/_sass/bootstrap/scss/_containers.scss +41 -0
  13. data/_sass/bootstrap/scss/_dropdown.scss +250 -0
  14. data/_sass/bootstrap/scss/_forms.scss +9 -0
  15. data/_sass/bootstrap/scss/_functions.scss +302 -0
  16. data/_sass/bootstrap/scss/_grid.scss +39 -0
  17. data/_sass/bootstrap/scss/_helpers.scss +12 -0
  18. data/_sass/bootstrap/scss/_images.scss +42 -0
  19. data/_sass/bootstrap/scss/_list-group.scss +199 -0
  20. data/_sass/bootstrap/scss/_maps.scss +174 -0
  21. data/_sass/bootstrap/scss/_mixins.scss +42 -0
  22. data/_sass/bootstrap/scss/_modal.scss +240 -0
  23. data/_sass/bootstrap/scss/_nav.scss +197 -0
  24. data/_sass/bootstrap/scss/_navbar.scss +289 -0
  25. data/_sass/bootstrap/scss/_offcanvas.scss +147 -0
  26. data/_sass/bootstrap/scss/_pagination.scss +109 -0
  27. data/_sass/bootstrap/scss/_placeholders.scss +51 -0
  28. data/_sass/bootstrap/scss/_popover.scss +196 -0
  29. data/_sass/bootstrap/scss/_progress.scss +68 -0
  30. data/_sass/bootstrap/scss/_reboot.scss +617 -0
  31. data/_sass/bootstrap/scss/_root.scss +187 -0
  32. data/_sass/bootstrap/scss/_spinners.scss +86 -0
  33. data/_sass/bootstrap/scss/_tables.scss +171 -0
  34. data/_sass/bootstrap/scss/_toasts.scss +73 -0
  35. data/_sass/bootstrap/scss/_tooltip.scss +119 -0
  36. data/_sass/bootstrap/scss/_transitions.scss +27 -0
  37. data/_sass/bootstrap/scss/_type.scss +106 -0
  38. data/_sass/bootstrap/scss/_utilities.scss +806 -0
  39. data/_sass/bootstrap/scss/_variables-dark.scss +102 -0
  40. data/_sass/bootstrap/scss/_variables.scss +1753 -0
  41. data/_sass/bootstrap/scss/bootstrap-grid.scss +62 -0
  42. data/_sass/bootstrap/scss/bootstrap-reboot.scss +10 -0
  43. data/_sass/bootstrap/scss/bootstrap-utilities.scss +19 -0
  44. data/_sass/bootstrap/scss/bootstrap.scss +52 -0
  45. data/_sass/bootstrap/scss/forms/_floating-labels.scss +97 -0
  46. data/_sass/bootstrap/scss/forms/_form-check.scss +189 -0
  47. data/_sass/bootstrap/scss/forms/_form-control.scss +214 -0
  48. data/_sass/bootstrap/scss/forms/_form-range.scss +91 -0
  49. data/_sass/bootstrap/scss/forms/_form-select.scss +80 -0
  50. data/_sass/bootstrap/scss/forms/_form-text.scss +11 -0
  51. data/_sass/bootstrap/scss/forms/_input-group.scss +132 -0
  52. data/_sass/bootstrap/scss/forms/_labels.scss +36 -0
  53. data/_sass/bootstrap/scss/forms/_validation.scss +12 -0
  54. data/_sass/bootstrap/scss/helpers/_clearfix.scss +3 -0
  55. data/_sass/bootstrap/scss/helpers/_color-bg.scss +7 -0
  56. data/_sass/bootstrap/scss/helpers/_colored-links.scss +30 -0
  57. data/_sass/bootstrap/scss/helpers/_focus-ring.scss +5 -0
  58. data/_sass/bootstrap/scss/helpers/_icon-link.scss +25 -0
  59. data/_sass/bootstrap/scss/helpers/_position.scss +36 -0
  60. data/_sass/bootstrap/scss/helpers/_ratio.scss +26 -0
  61. data/_sass/bootstrap/scss/helpers/_stacks.scss +15 -0
  62. data/_sass/bootstrap/scss/helpers/_stretched-link.scss +15 -0
  63. data/_sass/bootstrap/scss/helpers/_text-truncation.scss +7 -0
  64. data/_sass/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
  65. data/_sass/bootstrap/scss/helpers/_vr.scss +8 -0
  66. data/_sass/bootstrap/scss/mixins/_alert.scss +18 -0
  67. data/_sass/bootstrap/scss/mixins/_backdrop.scss +14 -0
  68. data/_sass/bootstrap/scss/mixins/_banner.scss +7 -0
  69. data/_sass/bootstrap/scss/mixins/_border-radius.scss +78 -0
  70. data/_sass/bootstrap/scss/mixins/_box-shadow.scss +24 -0
  71. data/_sass/bootstrap/scss/mixins/_breakpoints.scss +127 -0
  72. data/_sass/bootstrap/scss/mixins/_buttons.scss +70 -0
  73. data/_sass/bootstrap/scss/mixins/_caret.scss +69 -0
  74. data/_sass/bootstrap/scss/mixins/_clearfix.scss +9 -0
  75. data/_sass/bootstrap/scss/mixins/_color-mode.scss +21 -0
  76. data/_sass/bootstrap/scss/mixins/_color-scheme.scss +7 -0
  77. data/_sass/bootstrap/scss/mixins/_container.scss +11 -0
  78. data/_sass/bootstrap/scss/mixins/_deprecate.scss +10 -0
  79. data/_sass/bootstrap/scss/mixins/_forms.scss +163 -0
  80. data/_sass/bootstrap/scss/mixins/_gradients.scss +47 -0
  81. data/_sass/bootstrap/scss/mixins/_grid.scss +151 -0
  82. data/_sass/bootstrap/scss/mixins/_image.scss +16 -0
  83. data/_sass/bootstrap/scss/mixins/_list-group.scss +26 -0
  84. data/_sass/bootstrap/scss/mixins/_lists.scss +7 -0
  85. data/_sass/bootstrap/scss/mixins/_pagination.scss +10 -0
  86. data/_sass/bootstrap/scss/mixins/_reset-text.scss +17 -0
  87. data/_sass/bootstrap/scss/mixins/_resize.scss +6 -0
  88. data/_sass/bootstrap/scss/mixins/_table-variants.scss +24 -0
  89. data/_sass/bootstrap/scss/mixins/_text-truncate.scss +8 -0
  90. data/_sass/bootstrap/scss/mixins/_transition.scss +26 -0
  91. data/_sass/bootstrap/scss/mixins/_utilities.scss +97 -0
  92. data/_sass/bootstrap/scss/mixins/_visually-hidden.scss +38 -0
  93. data/_sass/bootstrap/scss/utilities/_api.scss +47 -0
  94. data/_sass/bootstrap/scss/vendor/_rfs.scss +348 -0
  95. data/_sass/bootstrap-icons/font/bootstrap-icons.css +2106 -0
  96. data/_sass/bootstrap-icons/font/bootstrap-icons.min.css +5 -0
  97. data/_sass/bootstrap-icons/font/bootstrap-icons.scss +2118 -0
  98. data/_sass/bootstrap.scss +45 -0
  99. data/_sass/conference.scss +19 -0
  100. data/_sass/leaflet/dist/leaflet.css +661 -0
  101. data/_sass/leaflet-easybutton/src/easy-button.css +56 -0
  102. data/_sass/leaflet.locatecontrol/dist/L.Control.Locate.css +61 -0
  103. data/_sass/theme.scss +214 -0
  104. metadata +102 -1
@@ -0,0 +1,56 @@
1
+ .leaflet-bar button,
2
+ .leaflet-bar button:hover {
3
+ background-color: #fff;
4
+ border: none;
5
+ border-bottom: 1px solid #ccc;
6
+ width: 26px;
7
+ height: 26px;
8
+ line-height: 26px;
9
+ display: block;
10
+ text-align: center;
11
+ text-decoration: none;
12
+ color: black;
13
+ }
14
+
15
+ .leaflet-bar button {
16
+ background-position: 50% 50%;
17
+ background-repeat: no-repeat;
18
+ overflow: hidden;
19
+ display: block;
20
+ }
21
+
22
+ .leaflet-bar button:hover {
23
+ background-color: #f4f4f4;
24
+ }
25
+
26
+ .leaflet-bar button:first-of-type {
27
+ border-top-left-radius: 4px;
28
+ border-top-right-radius: 4px;
29
+ }
30
+
31
+ .leaflet-bar button:last-of-type {
32
+ border-bottom-left-radius: 4px;
33
+ border-bottom-right-radius: 4px;
34
+ border-bottom: none;
35
+ }
36
+
37
+ .leaflet-bar.disabled,
38
+ .leaflet-bar button.disabled {
39
+ cursor: default;
40
+ pointer-events: none;
41
+ opacity: .4;
42
+ }
43
+
44
+ .easy-button-button .button-state{
45
+ display: block;
46
+ width: 100%;
47
+ height: 100%;
48
+ position: relative;
49
+ }
50
+
51
+
52
+ .leaflet-touch .leaflet-bar button {
53
+ width: 30px;
54
+ height: 30px;
55
+ line-height: 30px;
56
+ }
@@ -0,0 +1,61 @@
1
+ .leaflet-control-locate a {
2
+ cursor: pointer;
3
+ }
4
+ .leaflet-control-locate a .leaflet-control-locate-location-arrow {
5
+ display: inline-block;
6
+ width: 16px;
7
+ height: 16px;
8
+ margin: 7px;
9
+ background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
10
+ }
11
+ .leaflet-control-locate a .leaflet-control-locate-spinner {
12
+ display: inline-block;
13
+ width: 16px;
14
+ height: 16px;
15
+ margin: 7px;
16
+ background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="black" d="M304 48a48 48 0 1 1-96 0 48 48 0 0 1 96 0zm-48 368a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm208-208a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM96 256a48 48 0 1 0-96 0 48 48 0 0 0 96 0zm13 99a48 48 0 1 0 0 96 48 48 0 0 0 0-96zm294 0a48 48 0 1 0 0 96 48 48 0 0 0 0-96zM109 61a48 48 0 1 0 0 96 48 48 0 0 0 0-96z"/></svg>');
17
+ animation: leaflet-control-locate-spin 2s linear infinite;
18
+ }
19
+ .leaflet-control-locate.active a .leaflet-control-locate-location-arrow {
20
+ background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgb(32, 116, 182)" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
21
+ }
22
+ .leaflet-control-locate.following a .leaflet-control-locate-location-arrow {
23
+ background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="rgb(252, 132, 40)" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>');
24
+ }
25
+
26
+ .leaflet-touch .leaflet-bar .leaflet-locate-text-active {
27
+ width: 100%;
28
+ max-width: 200px;
29
+ text-overflow: ellipsis;
30
+ white-space: nowrap;
31
+ overflow: hidden;
32
+ padding: 0 10px;
33
+ }
34
+ .leaflet-touch .leaflet-bar .leaflet-locate-text-active .leaflet-locate-icon {
35
+ padding: 0 5px 0 0;
36
+ }
37
+
38
+ .leaflet-control-locate-location circle {
39
+ animation: leaflet-control-locate-throb 4s ease infinite;
40
+ }
41
+
42
+ @keyframes leaflet-control-locate-throb {
43
+ 0% {
44
+ stroke-width: 1;
45
+ }
46
+ 50% {
47
+ stroke-width: 3;
48
+ transform: scale(0.8, 0.8);
49
+ }
50
+ 100% {
51
+ stroke-width: 1;
52
+ }
53
+ }
54
+ @keyframes leaflet-control-locate-spin {
55
+ 0% {
56
+ transform: rotate(0deg);
57
+ }
58
+ 100% {
59
+ transform: rotate(360deg);
60
+ }
61
+ }
data/_sass/theme.scss ADDED
@@ -0,0 +1,214 @@
1
+ /**
2
+ * Conference Theme Styles
3
+ */
4
+
5
+ // Import Bootstrap functions, variables, and mixins for responsive utilities
6
+ @import "bootstrap/scss/functions";
7
+ @import "bootstrap-variables";
8
+ @import "bootstrap/scss/variables";
9
+ @import "bootstrap/scss/mixins";
10
+
11
+ // Program Overview
12
+ .program-table {
13
+ border-collapse: separate !important;
14
+ border-spacing: 0 !important;
15
+
16
+ .program-time {
17
+ position: sticky;
18
+ left: 0;
19
+ z-index: 900;
20
+
21
+ width: 4rem;
22
+ min-width: 4rem;
23
+ }
24
+
25
+ .program-talk {
26
+ width: 15rem;
27
+ min-width: 15rem;
28
+ }
29
+
30
+ .program-space {
31
+ width: 1rem;
32
+ min-width: 1rem;
33
+ }
34
+ }
35
+
36
+ .program-table-container {
37
+ scroll-snap-type: x mandatory;
38
+ scroll-padding-left: 4rem;
39
+
40
+ tbody .program-talk {
41
+ scroll-snap-align: start;
42
+ }
43
+ }
44
+
45
+ // Speaker Columns
46
+ @mixin generate-col-count-classes($max-cols: 6) {
47
+
48
+ // Generate base classes without breakpoint (col-count-1, col-count-2, etc.)
49
+ @for $idx from 1 through $max-cols {
50
+ .col-count-#{$idx} {
51
+ column-count: $idx;
52
+ }
53
+ }
54
+
55
+ // Generate responsive classes for each breakpoint using Bootstrap's $grid-breakpoints
56
+ @each $breakpoint in map-keys($grid-breakpoints) {
57
+ @if $breakpoint !='xs' {
58
+ @include media-breakpoint-up($breakpoint) {
59
+ @for $idx from 1 through $max-cols {
60
+ .col-count-#{$breakpoint}-#{$idx} {
61
+ column-count: $idx;
62
+ }
63
+ }
64
+ }
65
+ }
66
+ }
67
+ }
68
+
69
+ // Call the mixin to generate all classes
70
+ @include generate-col-count-classes();
71
+
72
+ .col-count {
73
+ break-inside: avoid-column;
74
+ }
75
+
76
+ // Remove bottom margin on last paragraph in alert
77
+ .alert>p:last-of-type {
78
+ margin-bottom: 0;
79
+ }
80
+
81
+ // Dark mode
82
+ .mode-light {
83
+ display: initial;
84
+ }
85
+
86
+ .mode-dark {
87
+ display: none;
88
+ }
89
+
90
+ [data-bs-theme="dark"] .mode-light {
91
+ display: none;
92
+ }
93
+
94
+ [data-bs-theme="dark"] .mode-dark {
95
+ display: initial;
96
+ }
97
+
98
+ // PWA
99
+ .d-pwa-block {
100
+ display: none;
101
+ }
102
+
103
+ @media (display-mode: standalone), (display-mode: fullscreen) {
104
+ .d-pwa-none {
105
+ display: none;
106
+ }
107
+
108
+ .d-pwa-block {
109
+ display: block;
110
+ }
111
+ }
112
+
113
+ [data-pwa="true"] {
114
+ .d-pwa-none {
115
+ display: none;
116
+ }
117
+
118
+ .d-pwa-block {
119
+ display: block;
120
+ }
121
+ }
122
+
123
+ // Map
124
+ #map {
125
+ min-height: 400px;
126
+ }
127
+
128
+ // Live Button and Icon
129
+ .live-button {
130
+ // corresponds to text-bg-dark, see
131
+ // https://github.com/twbs/bootstrap/blob/main/scss/helpers/_color-bg.scss
132
+ color: color-contrast($dark);
133
+ background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1));
134
+
135
+ &:hover {
136
+ color: shade-color(color-contrast($dark), $link-shade-percentage);
137
+ }
138
+ }
139
+
140
+ [data-bs-theme="dark"] .live-button {
141
+ // corresponds to text-bg-light, see
142
+ // https://github.com/twbs/bootstrap/blob/main/scss/helpers/_color-bg.scss
143
+ color: color-contrast($light);
144
+ background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1));
145
+
146
+ &:hover {
147
+ color: shade-color(color-contrast($light), $link-shade-percentage);
148
+ }
149
+ }
150
+
151
+ .live-icon {
152
+ width: 0.75em;
153
+ height: 0.75em;
154
+
155
+ @keyframes live-icon-pulse {
156
+
157
+ 0%,
158
+ 6% {
159
+ opacity: 0;
160
+ }
161
+
162
+ 8%,
163
+ 100% {
164
+ opacity: 1;
165
+ }
166
+ }
167
+
168
+ @keyframes live-icon-arc-small {
169
+
170
+ 0%,
171
+ 8% {
172
+ opacity: 0;
173
+ }
174
+
175
+ 10%,
176
+ 100% {
177
+ opacity: 1;
178
+ }
179
+ }
180
+
181
+ @keyframes live-icon-arc-large {
182
+
183
+ 0%,
184
+ 10% {
185
+ opacity: 0;
186
+ }
187
+
188
+ 12%,
189
+ 100% {
190
+ opacity: 1;
191
+ }
192
+ }
193
+
194
+ .live-icon-arc-small {
195
+ animation: live-icon-pulse 8s ease infinite;
196
+ }
197
+
198
+ .live-icon-arc-medium {
199
+ animation: live-icon-arc-small 8s ease infinite;
200
+ }
201
+
202
+ .live-icon-arc-large {
203
+ animation: live-icon-arc-large 8s ease infinite;
204
+ }
205
+
206
+ @media (prefers-reduced-motion: reduce) {
207
+
208
+ .live-icon-arc-small,
209
+ .live-icon-arc-medium,
210
+ .live-icon-arc-large {
211
+ animation: none;
212
+ }
213
+ }
214
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-conference
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lorenz Schmid
@@ -96,6 +96,107 @@ files:
96
96
  - _layouts/sw.js
97
97
  - _layouts/talk-overview.html
98
98
  - _layouts/talk.html
99
+ - _sass/bootstrap-icons/font/bootstrap-icons.css
100
+ - _sass/bootstrap-icons/font/bootstrap-icons.min.css
101
+ - _sass/bootstrap-icons/font/bootstrap-icons.scss
102
+ - _sass/bootstrap.scss
103
+ - _sass/bootstrap/scss/_accordion.scss
104
+ - _sass/bootstrap/scss/_alert.scss
105
+ - _sass/bootstrap/scss/_badge.scss
106
+ - _sass/bootstrap/scss/_breadcrumb.scss
107
+ - _sass/bootstrap/scss/_button-group.scss
108
+ - _sass/bootstrap/scss/_buttons.scss
109
+ - _sass/bootstrap/scss/_card.scss
110
+ - _sass/bootstrap/scss/_carousel.scss
111
+ - _sass/bootstrap/scss/_close.scss
112
+ - _sass/bootstrap/scss/_containers.scss
113
+ - _sass/bootstrap/scss/_dropdown.scss
114
+ - _sass/bootstrap/scss/_forms.scss
115
+ - _sass/bootstrap/scss/_functions.scss
116
+ - _sass/bootstrap/scss/_grid.scss
117
+ - _sass/bootstrap/scss/_helpers.scss
118
+ - _sass/bootstrap/scss/_images.scss
119
+ - _sass/bootstrap/scss/_list-group.scss
120
+ - _sass/bootstrap/scss/_maps.scss
121
+ - _sass/bootstrap/scss/_mixins.scss
122
+ - _sass/bootstrap/scss/_modal.scss
123
+ - _sass/bootstrap/scss/_nav.scss
124
+ - _sass/bootstrap/scss/_navbar.scss
125
+ - _sass/bootstrap/scss/_offcanvas.scss
126
+ - _sass/bootstrap/scss/_pagination.scss
127
+ - _sass/bootstrap/scss/_placeholders.scss
128
+ - _sass/bootstrap/scss/_popover.scss
129
+ - _sass/bootstrap/scss/_progress.scss
130
+ - _sass/bootstrap/scss/_reboot.scss
131
+ - _sass/bootstrap/scss/_root.scss
132
+ - _sass/bootstrap/scss/_spinners.scss
133
+ - _sass/bootstrap/scss/_tables.scss
134
+ - _sass/bootstrap/scss/_toasts.scss
135
+ - _sass/bootstrap/scss/_tooltip.scss
136
+ - _sass/bootstrap/scss/_transitions.scss
137
+ - _sass/bootstrap/scss/_type.scss
138
+ - _sass/bootstrap/scss/_utilities.scss
139
+ - _sass/bootstrap/scss/_variables-dark.scss
140
+ - _sass/bootstrap/scss/_variables.scss
141
+ - _sass/bootstrap/scss/bootstrap-grid.scss
142
+ - _sass/bootstrap/scss/bootstrap-reboot.scss
143
+ - _sass/bootstrap/scss/bootstrap-utilities.scss
144
+ - _sass/bootstrap/scss/bootstrap.scss
145
+ - _sass/bootstrap/scss/forms/_floating-labels.scss
146
+ - _sass/bootstrap/scss/forms/_form-check.scss
147
+ - _sass/bootstrap/scss/forms/_form-control.scss
148
+ - _sass/bootstrap/scss/forms/_form-range.scss
149
+ - _sass/bootstrap/scss/forms/_form-select.scss
150
+ - _sass/bootstrap/scss/forms/_form-text.scss
151
+ - _sass/bootstrap/scss/forms/_input-group.scss
152
+ - _sass/bootstrap/scss/forms/_labels.scss
153
+ - _sass/bootstrap/scss/forms/_validation.scss
154
+ - _sass/bootstrap/scss/helpers/_clearfix.scss
155
+ - _sass/bootstrap/scss/helpers/_color-bg.scss
156
+ - _sass/bootstrap/scss/helpers/_colored-links.scss
157
+ - _sass/bootstrap/scss/helpers/_focus-ring.scss
158
+ - _sass/bootstrap/scss/helpers/_icon-link.scss
159
+ - _sass/bootstrap/scss/helpers/_position.scss
160
+ - _sass/bootstrap/scss/helpers/_ratio.scss
161
+ - _sass/bootstrap/scss/helpers/_stacks.scss
162
+ - _sass/bootstrap/scss/helpers/_stretched-link.scss
163
+ - _sass/bootstrap/scss/helpers/_text-truncation.scss
164
+ - _sass/bootstrap/scss/helpers/_visually-hidden.scss
165
+ - _sass/bootstrap/scss/helpers/_vr.scss
166
+ - _sass/bootstrap/scss/mixins/_alert.scss
167
+ - _sass/bootstrap/scss/mixins/_backdrop.scss
168
+ - _sass/bootstrap/scss/mixins/_banner.scss
169
+ - _sass/bootstrap/scss/mixins/_border-radius.scss
170
+ - _sass/bootstrap/scss/mixins/_box-shadow.scss
171
+ - _sass/bootstrap/scss/mixins/_breakpoints.scss
172
+ - _sass/bootstrap/scss/mixins/_buttons.scss
173
+ - _sass/bootstrap/scss/mixins/_caret.scss
174
+ - _sass/bootstrap/scss/mixins/_clearfix.scss
175
+ - _sass/bootstrap/scss/mixins/_color-mode.scss
176
+ - _sass/bootstrap/scss/mixins/_color-scheme.scss
177
+ - _sass/bootstrap/scss/mixins/_container.scss
178
+ - _sass/bootstrap/scss/mixins/_deprecate.scss
179
+ - _sass/bootstrap/scss/mixins/_forms.scss
180
+ - _sass/bootstrap/scss/mixins/_gradients.scss
181
+ - _sass/bootstrap/scss/mixins/_grid.scss
182
+ - _sass/bootstrap/scss/mixins/_image.scss
183
+ - _sass/bootstrap/scss/mixins/_list-group.scss
184
+ - _sass/bootstrap/scss/mixins/_lists.scss
185
+ - _sass/bootstrap/scss/mixins/_pagination.scss
186
+ - _sass/bootstrap/scss/mixins/_reset-text.scss
187
+ - _sass/bootstrap/scss/mixins/_resize.scss
188
+ - _sass/bootstrap/scss/mixins/_table-variants.scss
189
+ - _sass/bootstrap/scss/mixins/_text-truncate.scss
190
+ - _sass/bootstrap/scss/mixins/_transition.scss
191
+ - _sass/bootstrap/scss/mixins/_utilities.scss
192
+ - _sass/bootstrap/scss/mixins/_visually-hidden.scss
193
+ - _sass/bootstrap/scss/utilities/_api.scss
194
+ - _sass/bootstrap/scss/vendor/_rfs.scss
195
+ - _sass/conference.scss
196
+ - _sass/leaflet-easybutton/src/easy-button.css
197
+ - _sass/leaflet.locatecontrol/dist/L.Control.Locate.css
198
+ - _sass/leaflet/dist/leaflet.css
199
+ - _sass/theme.scss
99
200
  - assets/css/conference-only.bundle.css
100
201
  - assets/css/conference.bundle.css
101
202
  - assets/js/conference.bundle.js