accrete 0.0.103__py3-none-any.whl → 0.0.105__py3-none-any.whl

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 (251) hide show
  1. accrete/contrib/ui/__init__.py +6 -29
  2. accrete/contrib/ui/context.py +26 -294
  3. accrete/contrib/ui/filter.py +316 -324
  4. accrete/contrib/ui/middleware.py +44 -0
  5. accrete/contrib/ui/models.py +3 -0
  6. accrete/contrib/ui/static/bulma/README.md +4 -2
  7. accrete/contrib/ui/static/bulma/bulma.css +21551 -0
  8. accrete/contrib/ui/static/bulma/bulma.css.map +1 -0
  9. accrete/contrib/ui/static/bulma/bulma.scss +1 -1
  10. accrete/contrib/ui/static/bulma/css/bulma.css +1988 -2874
  11. accrete/contrib/ui/static/bulma/css/bulma.css.map +1 -1
  12. accrete/contrib/ui/static/bulma/css/bulma.min.css +2 -2
  13. accrete/contrib/ui/static/bulma/css/versions/bulma-no-dark-mode.css +19648 -0
  14. accrete/contrib/ui/static/bulma/css/versions/bulma-no-dark-mode.css.map +1 -0
  15. accrete/contrib/ui/static/bulma/css/versions/bulma-no-dark-mode.min.css +2 -2
  16. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers-prefixed.css +11136 -0
  17. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers-prefixed.css.map +1 -0
  18. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers-prefixed.min.css +2 -2
  19. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers.css +11136 -0
  20. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers.css.map +1 -0
  21. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers.min.css +2 -2
  22. accrete/contrib/ui/static/bulma/css/versions/bulma-prefixed.min.css +21550 -2
  23. accrete/contrib/ui/static/bulma/css/versions/bulma-prefixed.min.css.map +1 -1
  24. accrete/contrib/ui/static/bulma/css/versions/bulma-prefixed.min.min.css +3 -0
  25. accrete/contrib/ui/static/bulma/package.json +12 -11
  26. accrete/contrib/ui/static/bulma/sass/base/animations.css +15 -0
  27. accrete/contrib/ui/static/bulma/sass/base/animations.css.map +1 -0
  28. accrete/contrib/ui/static/bulma/sass/base/generic.css +196 -0
  29. accrete/contrib/ui/static/bulma/sass/base/generic.css.map +1 -0
  30. accrete/contrib/ui/static/bulma/sass/base/minireset.css +82 -0
  31. accrete/contrib/ui/static/bulma/sass/base/minireset.css.map +1 -0
  32. accrete/contrib/ui/static/bulma/sass/base/skeleton.css +113 -0
  33. accrete/contrib/ui/static/bulma/sass/base/skeleton.css.map +1 -0
  34. accrete/contrib/ui/static/bulma/sass/base/skeleton.scss +0 -12
  35. accrete/contrib/ui/static/bulma/sass/components/breadcrumb.css +108 -0
  36. accrete/contrib/ui/static/bulma/sass/components/breadcrumb.css.map +1 -0
  37. accrete/contrib/ui/static/bulma/sass/components/card.css +130 -0
  38. accrete/contrib/ui/static/bulma/sass/components/card.css.map +1 -0
  39. accrete/contrib/ui/static/bulma/sass/components/dropdown.css +119 -0
  40. accrete/contrib/ui/static/bulma/sass/components/dropdown.css.map +1 -0
  41. accrete/contrib/ui/static/bulma/sass/components/menu.css +119 -0
  42. accrete/contrib/ui/static/bulma/sass/components/menu.css.map +1 -0
  43. accrete/contrib/ui/static/bulma/sass/components/message.css +191 -0
  44. accrete/contrib/ui/static/bulma/sass/components/message.css.map +1 -0
  45. accrete/contrib/ui/static/bulma/sass/components/modal.css +194 -0
  46. accrete/contrib/ui/static/bulma/sass/components/modal.css.map +1 -0
  47. accrete/contrib/ui/static/bulma/sass/components/navbar.css +768 -0
  48. accrete/contrib/ui/static/bulma/sass/components/navbar.css.map +1 -0
  49. accrete/contrib/ui/static/bulma/sass/components/navbar.scss +41 -30
  50. accrete/contrib/ui/static/bulma/sass/components/pagination.css +302 -0
  51. accrete/contrib/ui/static/bulma/sass/components/pagination.css.map +1 -0
  52. accrete/contrib/ui/static/bulma/sass/components/panel.css +224 -0
  53. accrete/contrib/ui/static/bulma/sass/components/panel.css.map +1 -0
  54. accrete/contrib/ui/static/bulma/sass/components/panel.scss +2 -2
  55. accrete/contrib/ui/static/bulma/sass/components/tabs.css +192 -0
  56. accrete/contrib/ui/static/bulma/sass/components/tabs.css.map +1 -0
  57. accrete/contrib/ui/static/bulma/sass/elements/block.css +17 -0
  58. accrete/contrib/ui/static/bulma/sass/elements/block.css.map +1 -0
  59. accrete/contrib/ui/static/bulma/sass/elements/box.css +43 -0
  60. accrete/contrib/ui/static/bulma/sass/elements/box.css.map +1 -0
  61. accrete/contrib/ui/static/bulma/sass/elements/button.css +685 -0
  62. accrete/contrib/ui/static/bulma/sass/elements/button.css.map +1 -0
  63. accrete/contrib/ui/static/bulma/sass/elements/button.scss +9 -2
  64. accrete/contrib/ui/static/bulma/sass/elements/content.css +208 -0
  65. accrete/contrib/ui/static/bulma/sass/elements/content.css.map +1 -0
  66. accrete/contrib/ui/static/bulma/sass/elements/content.scss +8 -2
  67. accrete/contrib/ui/static/bulma/sass/elements/delete.css +60 -0
  68. accrete/contrib/ui/static/bulma/sass/elements/delete.css.map +1 -0
  69. accrete/contrib/ui/static/bulma/sass/elements/icon.css +51 -0
  70. accrete/contrib/ui/static/bulma/sass/elements/icon.css.map +1 -0
  71. accrete/contrib/ui/static/bulma/sass/elements/image.css +253 -0
  72. accrete/contrib/ui/static/bulma/sass/elements/image.css.map +1 -0
  73. accrete/contrib/ui/static/bulma/sass/elements/loader.css +14 -0
  74. accrete/contrib/ui/static/bulma/sass/elements/loader.css.map +1 -0
  75. accrete/contrib/ui/static/bulma/sass/elements/notification.css +213 -0
  76. accrete/contrib/ui/static/bulma/sass/elements/notification.css.map +1 -0
  77. accrete/contrib/ui/static/bulma/sass/elements/progress.css +119 -0
  78. accrete/contrib/ui/static/bulma/sass/elements/progress.css.map +1 -0
  79. accrete/contrib/ui/static/bulma/sass/elements/table.css +294 -0
  80. accrete/contrib/ui/static/bulma/sass/elements/table.css.map +1 -0
  81. accrete/contrib/ui/static/bulma/sass/elements/tag.css +252 -0
  82. accrete/contrib/ui/static/bulma/sass/elements/tag.css.map +1 -0
  83. accrete/contrib/ui/static/bulma/sass/elements/title.css +131 -0
  84. accrete/contrib/ui/static/bulma/sass/elements/title.css.map +1 -0
  85. accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.css +72 -0
  86. accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.css.map +1 -0
  87. accrete/contrib/ui/static/bulma/sass/form/checkbox-radio.scss +7 -3
  88. accrete/contrib/ui/static/bulma/sass/form/file.css +374 -0
  89. accrete/contrib/ui/static/bulma/sass/form/file.css.map +1 -0
  90. accrete/contrib/ui/static/bulma/sass/form/input-textarea.css +284 -0
  91. accrete/contrib/ui/static/bulma/sass/form/input-textarea.css.map +1 -0
  92. accrete/contrib/ui/static/bulma/sass/form/input-textarea.scss +0 -10
  93. accrete/contrib/ui/static/bulma/sass/form/select.css +347 -0
  94. accrete/contrib/ui/static/bulma/sass/form/select.css.map +1 -0
  95. accrete/contrib/ui/static/bulma/sass/form/select.scss +1 -0
  96. accrete/contrib/ui/static/bulma/sass/form/shared.css +48 -0
  97. accrete/contrib/ui/static/bulma/sass/form/shared.css.map +1 -0
  98. accrete/contrib/ui/static/bulma/sass/form/shared.scss +5 -1
  99. accrete/contrib/ui/static/bulma/sass/form/tools.css +356 -0
  100. accrete/contrib/ui/static/bulma/sass/form/tools.css.map +1 -0
  101. accrete/contrib/ui/static/bulma/sass/form/tools.scss +23 -12
  102. accrete/contrib/ui/static/bulma/sass/grid/columns-v2.css +1635 -0
  103. accrete/contrib/ui/static/bulma/sass/grid/columns-v2.css.map +1 -0
  104. accrete/contrib/ui/static/bulma/sass/grid/columns.css +1652 -0
  105. accrete/contrib/ui/static/bulma/sass/grid/columns.css.map +1 -0
  106. accrete/contrib/ui/static/bulma/sass/grid/columns.scss +109 -25
  107. accrete/contrib/ui/static/bulma/sass/grid/grid.css +3011 -0
  108. accrete/contrib/ui/static/bulma/sass/grid/grid.css.map +1 -0
  109. accrete/contrib/ui/static/bulma/sass/grid/grid.scss +3 -3
  110. accrete/contrib/ui/static/bulma/sass/helpers/aspect-ratio.css +61 -0
  111. accrete/contrib/ui/static/bulma/sass/helpers/aspect-ratio.css.map +1 -0
  112. accrete/contrib/ui/static/bulma/sass/helpers/border.css +17 -0
  113. accrete/contrib/ui/static/bulma/sass/helpers/border.css.map +1 -0
  114. accrete/contrib/ui/static/bulma/sass/helpers/color.css +5582 -0
  115. accrete/contrib/ui/static/bulma/sass/helpers/color.css.map +1 -0
  116. accrete/contrib/ui/static/bulma/sass/helpers/color.scss +166 -186
  117. accrete/contrib/ui/static/bulma/sass/helpers/flexbox.css +217 -0
  118. accrete/contrib/ui/static/bulma/sass/helpers/flexbox.css.map +1 -0
  119. accrete/contrib/ui/static/bulma/sass/helpers/float.css +37 -0
  120. accrete/contrib/ui/static/bulma/sass/helpers/float.css.map +1 -0
  121. accrete/contrib/ui/static/bulma/sass/helpers/gap.css +209 -0
  122. accrete/contrib/ui/static/bulma/sass/helpers/gap.css.map +1 -0
  123. accrete/contrib/ui/static/bulma/sass/helpers/other.css +34 -0
  124. accrete/contrib/ui/static/bulma/sass/helpers/other.css.map +1 -0
  125. accrete/contrib/ui/static/bulma/sass/helpers/overflow.css +65 -0
  126. accrete/contrib/ui/static/bulma/sass/helpers/overflow.css.map +1 -0
  127. accrete/contrib/ui/static/bulma/sass/helpers/position.css +45 -0
  128. accrete/contrib/ui/static/bulma/sass/helpers/position.css.map +1 -0
  129. accrete/contrib/ui/static/bulma/sass/helpers/spacing.css +489 -0
  130. accrete/contrib/ui/static/bulma/sass/helpers/spacing.css.map +1 -0
  131. accrete/contrib/ui/static/bulma/sass/helpers/typography.css +423 -0
  132. accrete/contrib/ui/static/bulma/sass/helpers/typography.css.map +1 -0
  133. accrete/contrib/ui/static/bulma/sass/helpers/visibility.css +485 -0
  134. accrete/contrib/ui/static/bulma/sass/helpers/visibility.css.map +1 -0
  135. accrete/contrib/ui/static/bulma/sass/layout/container.scss +16 -8
  136. accrete/contrib/ui/static/bulma/sass/layout/footer.css +9 -0
  137. accrete/contrib/ui/static/bulma/sass/layout/footer.css.map +1 -0
  138. accrete/contrib/ui/static/bulma/sass/layout/hero.css +534 -0
  139. accrete/contrib/ui/static/bulma/sass/layout/hero.css.map +1 -0
  140. accrete/contrib/ui/static/bulma/sass/layout/level.css +102 -0
  141. accrete/contrib/ui/static/bulma/sass/layout/level.css.map +1 -0
  142. accrete/contrib/ui/static/bulma/sass/layout/media.css +90 -0
  143. accrete/contrib/ui/static/bulma/sass/layout/media.css.map +1 -0
  144. accrete/contrib/ui/static/bulma/sass/layout/section.css +23 -0
  145. accrete/contrib/ui/static/bulma/sass/layout/section.css.map +1 -0
  146. accrete/contrib/ui/static/bulma/sass/layout/section.scss +4 -0
  147. accrete/contrib/ui/static/bulma/sass/themes/dark.css +3 -0
  148. accrete/contrib/ui/static/bulma/sass/themes/dark.css.map +1 -0
  149. accrete/contrib/ui/static/bulma/sass/themes/light.css +3 -0
  150. accrete/contrib/ui/static/bulma/sass/themes/light.css.map +1 -0
  151. accrete/contrib/ui/static/bulma/sass/themes/light.scss +1 -0
  152. accrete/contrib/ui/static/bulma/sass/themes/setup.css +3 -0
  153. accrete/contrib/ui/static/bulma/sass/themes/setup.css.map +1 -0
  154. accrete/contrib/ui/static/bulma/sass/utilities/controls.css +13 -0
  155. accrete/contrib/ui/static/bulma/sass/utilities/controls.css.map +1 -0
  156. accrete/contrib/ui/static/bulma/sass/utilities/css-variables.css +3 -0
  157. accrete/contrib/ui/static/bulma/sass/utilities/css-variables.css.map +1 -0
  158. accrete/contrib/ui/static/bulma/sass/utilities/css-variables.scss +3 -2
  159. accrete/contrib/ui/static/bulma/sass/utilities/derived-variables.css +3 -0
  160. accrete/contrib/ui/static/bulma/sass/utilities/derived-variables.css.map +1 -0
  161. accrete/contrib/ui/static/bulma/sass/utilities/extends.css +13 -0
  162. accrete/contrib/ui/static/bulma/sass/utilities/extends.css.map +1 -0
  163. accrete/contrib/ui/static/bulma/sass/utilities/functions.scss +2 -2
  164. accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.css +3 -0
  165. accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.css.map +1 -0
  166. accrete/contrib/ui/static/bulma/sass/utilities/initial-variables.scss +4 -4
  167. accrete/contrib/ui/static/bulma/sass/utilities/mixins.css +3 -0
  168. accrete/contrib/ui/static/bulma/sass/utilities/mixins.css.map +1 -0
  169. accrete/contrib/ui/static/bulma/sass/utilities/mixins.scss +1 -1
  170. accrete/contrib/ui/static/bulma/versions/bulma-no-dark-mode.css +19648 -0
  171. accrete/contrib/ui/static/bulma/versions/bulma-no-dark-mode.css.map +1 -0
  172. accrete/contrib/ui/static/bulma/versions/bulma-no-dark-mode.scss +2 -1
  173. accrete/contrib/ui/static/bulma/versions/bulma-no-helpers-prefixed.css +11136 -0
  174. accrete/contrib/ui/static/bulma/versions/bulma-no-helpers-prefixed.css.map +1 -0
  175. accrete/contrib/ui/static/bulma/versions/bulma-no-helpers-prefixed.scss +1 -1
  176. accrete/contrib/ui/static/bulma/versions/bulma-no-helpers.css +11136 -0
  177. accrete/contrib/ui/static/bulma/versions/bulma-no-helpers.css.map +1 -0
  178. accrete/contrib/ui/static/bulma/versions/bulma-no-helpers.scss +1 -1
  179. accrete/contrib/ui/static/bulma/versions/bulma-prefixed.css +21551 -0
  180. accrete/contrib/ui/static/bulma/versions/bulma-prefixed.css.map +1 -0
  181. accrete/contrib/ui/static/bulma/versions/bulma-prefixed.scss +1 -1
  182. accrete/contrib/ui/static/css/accrete.css +20757 -19997
  183. accrete/contrib/ui/static/css/accrete.css.map +1 -1
  184. accrete/contrib/ui/static/css/accrete.scss +185 -462
  185. accrete/contrib/ui/static/js/filter.js +97 -679
  186. accrete/contrib/ui/static/js/htmx.min.js +1 -1
  187. accrete/contrib/ui/templates/django/forms/widgets/date.html +5 -9
  188. accrete/contrib/ui/templates/django/forms/widgets/select.html +7 -5
  189. accrete/contrib/ui/templates/ui/content_right.html +7 -0
  190. accrete/contrib/ui/templates/ui/filter/filter.html +27 -0
  191. accrete/contrib/ui/templates/ui/filter/query_input.html +31 -0
  192. accrete/contrib/ui/templates/ui/filter/query_operator.html +11 -0
  193. accrete/contrib/ui/templates/ui/filter/query_params.html +106 -0
  194. accrete/contrib/ui/templates/ui/filter/query_tags.html +26 -0
  195. accrete/contrib/ui/templates/ui/layout.html +162 -233
  196. accrete/contrib/ui/templates/ui/list.html +39 -28
  197. accrete/contrib/ui/templates/ui/list_update.html +3 -0
  198. accrete/contrib/ui/templates/ui/message.html +13 -0
  199. accrete/contrib/ui/templates/ui/{partials/modal.html → modal.html} +9 -5
  200. accrete/contrib/ui/templates/ui/oob.html +3 -0
  201. accrete/contrib/ui/templates/ui/table.html +67 -71
  202. accrete/contrib/ui/templates/ui/table_row_update.html +14 -0
  203. accrete/contrib/ui/templates/ui/widgets/model_search_select.html +2 -2
  204. accrete/contrib/ui/templates/ui/widgets/model_search_select_multi.html +25 -14
  205. accrete/contrib/ui/templates/ui/widgets/model_search_select_options.html +1 -1
  206. accrete/contrib/ui/templatetags/{accrete_ui.py → ui.py} +68 -56
  207. accrete/contrib/ui/urls.py +3 -1
  208. accrete/contrib/ui/views.py +33 -3
  209. accrete/contrib/ui/widgets/__init__.py +1 -0
  210. accrete/contrib/ui/{forms/widgets.py → widgets/search_select.py} +7 -2
  211. accrete/contrib/user/templates/user/login.html +71 -23
  212. accrete/forms.py +0 -2
  213. accrete/managers.py +4 -4
  214. accrete/middleware.py +43 -66
  215. accrete/models.py +7 -1
  216. accrete/storage.py +4 -1
  217. accrete/tenant.py +9 -4
  218. accrete/utils/__init__.py +2 -0
  219. accrete/utils/models.py +9 -1
  220. accrete/utils/views.py +36 -20
  221. accrete/views.py +9 -5
  222. {accrete-0.0.103.dist-info → accrete-0.0.105.dist-info}/METADATA +2 -2
  223. accrete-0.0.105.dist-info/RECORD +370 -0
  224. {accrete-0.0.103.dist-info → accrete-0.0.105.dist-info}/WHEEL +1 -1
  225. accrete/contrib/ui/components/__init__.py +0 -1
  226. accrete/contrib/ui/components/search_select.py +0 -18
  227. accrete/contrib/ui/elements.py +0 -95
  228. accrete/contrib/ui/forms/__init__.py +0 -0
  229. accrete/contrib/ui/static/bulma/css/versions/bulma-no-dark-mode.min.css.map +0 -1
  230. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers-prefixed.min.css.map +0 -1
  231. accrete/contrib/ui/static/bulma/css/versions/bulma-no-helpers.min.css.map +0 -1
  232. accrete/contrib/ui/static/bulma/sass/grid/columns-v2.scss +0 -957
  233. accrete/contrib/ui/static/js/ui.js +0 -30
  234. accrete/contrib/ui/templates/ui/dashboard.html +0 -7
  235. accrete/contrib/ui/templates/ui/detail.html +0 -19
  236. accrete/contrib/ui/templates/ui/form.html +0 -21
  237. accrete/contrib/ui/templates/ui/partials/filter.html +0 -146
  238. accrete/contrib/ui/templates/ui/partials/form_errors.html +0 -34
  239. accrete/contrib/ui/templates/ui/partials/header.html +0 -123
  240. accrete/contrib/ui/templates/ui/partials/modal_form.html +0 -46
  241. accrete/contrib/ui/templates/ui/partials/onchange_form.html +0 -1
  242. accrete/contrib/ui/templates/ui/partials/pagination_detail.html +0 -23
  243. accrete/contrib/ui/templates/ui/partials/pagination_list.html +0 -28
  244. accrete/contrib/ui/templates/ui/partials/table_field.html +0 -16
  245. accrete/contrib/ui/templates/ui/partials/table_field_float.html +0 -1
  246. accrete/contrib/ui/templates/ui/partials/table_field_monetary.html +0 -4
  247. accrete/contrib/ui/templates/ui/partials/table_field_string.html +0 -1
  248. accrete/contrib/ui/templates/ui/widgets/model_search_select_multi_selected_options.html +0 -3
  249. accrete/contrib/ui/templates/ui/widgets/model_search_select_multi_tags.html +0 -6
  250. accrete-0.0.103.dist-info/RECORD +0 -241
  251. {accrete-0.0.103.dist-info → accrete-0.0.105.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,534 @@
1
+ :root {
2
+ --bulma-control-radius: var(--bulma-radius);
3
+ --bulma-control-radius-small: var(--bulma-radius-small);
4
+ --bulma-control-border-width: 1px;
5
+ --bulma-control-height: 2.5em;
6
+ --bulma-control-line-height: 1.5;
7
+ --bulma-control-padding-vertical: calc(0.5em - 1px);
8
+ --bulma-control-padding-horizontal: calc(0.75em - 1px);
9
+ --bulma-control-size: var(--bulma-size-normal);
10
+ --bulma-control-focus-shadow-l: 50%;
11
+ }
12
+
13
+ .hero-video {
14
+ bottom: 0;
15
+ left: 0;
16
+ position: absolute;
17
+ right: 0;
18
+ top: 0;
19
+ }
20
+
21
+ .hero {
22
+ --bulma-hero-body-padding: 3rem 1.5rem;
23
+ --bulma-hero-body-padding-tablet: 3rem 3rem;
24
+ --bulma-hero-body-padding-small: 1.5rem;
25
+ --bulma-hero-body-padding-medium: 9rem 4.5rem;
26
+ --bulma-hero-body-padding-large: 18rem 6rem;
27
+ }
28
+
29
+ .hero {
30
+ align-items: stretch;
31
+ display: flex;
32
+ flex-direction: column;
33
+ justify-content: space-between;
34
+ }
35
+ .hero .navbar {
36
+ background: none;
37
+ }
38
+ .hero .tabs ul {
39
+ border-bottom: none;
40
+ }
41
+ .hero.is-white {
42
+ --bulma-hero-h: var(--bulma-white-h);
43
+ --bulma-hero-s: var(--bulma-white-s);
44
+ --bulma-hero-background-l: var(--bulma-white-l);
45
+ --bulma-hero-color-l: var(--bulma-white-invert-l);
46
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
47
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
48
+ }
49
+ .hero.is-white .navbar {
50
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
51
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
52
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
53
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
54
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
55
+ }
56
+ .hero.is-white .tabs {
57
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
58
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
59
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
60
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
61
+ }
62
+ .hero.is-white .subtitle {
63
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
64
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
65
+ }
66
+ .hero.is-white .title {
67
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
68
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
69
+ }
70
+ .hero.is-white.is-bold {
71
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
72
+ }
73
+ @media screen and (max-width: 768px) {
74
+ .hero.is-white.is-bold .navbar-menu {
75
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
76
+ }
77
+ }
78
+ .hero.is-black {
79
+ --bulma-hero-h: var(--bulma-black-h);
80
+ --bulma-hero-s: var(--bulma-black-s);
81
+ --bulma-hero-background-l: var(--bulma-black-l);
82
+ --bulma-hero-color-l: var(--bulma-black-invert-l);
83
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
84
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
85
+ }
86
+ .hero.is-black .navbar {
87
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
88
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
89
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
90
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
91
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
92
+ }
93
+ .hero.is-black .tabs {
94
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
95
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
96
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
97
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
98
+ }
99
+ .hero.is-black .subtitle {
100
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
101
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
102
+ }
103
+ .hero.is-black .title {
104
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
105
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
106
+ }
107
+ .hero.is-black.is-bold {
108
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
109
+ }
110
+ @media screen and (max-width: 768px) {
111
+ .hero.is-black.is-bold .navbar-menu {
112
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
113
+ }
114
+ }
115
+ .hero.is-light {
116
+ --bulma-hero-h: var(--bulma-light-h);
117
+ --bulma-hero-s: var(--bulma-light-s);
118
+ --bulma-hero-background-l: var(--bulma-light-l);
119
+ --bulma-hero-color-l: var(--bulma-light-invert-l);
120
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
121
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
122
+ }
123
+ .hero.is-light .navbar {
124
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
125
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
126
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
127
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
128
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
129
+ }
130
+ .hero.is-light .tabs {
131
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
132
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
133
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
134
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
135
+ }
136
+ .hero.is-light .subtitle {
137
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
138
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
139
+ }
140
+ .hero.is-light .title {
141
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
142
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
143
+ }
144
+ .hero.is-light.is-bold {
145
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
146
+ }
147
+ @media screen and (max-width: 768px) {
148
+ .hero.is-light.is-bold .navbar-menu {
149
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
150
+ }
151
+ }
152
+ .hero.is-dark {
153
+ --bulma-hero-h: var(--bulma-dark-h);
154
+ --bulma-hero-s: var(--bulma-dark-s);
155
+ --bulma-hero-background-l: var(--bulma-dark-l);
156
+ --bulma-hero-color-l: var(--bulma-dark-invert-l);
157
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
158
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
159
+ }
160
+ .hero.is-dark .navbar {
161
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
162
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
163
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
164
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
165
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
166
+ }
167
+ .hero.is-dark .tabs {
168
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
169
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
170
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
171
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
172
+ }
173
+ .hero.is-dark .subtitle {
174
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
175
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
176
+ }
177
+ .hero.is-dark .title {
178
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
179
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
180
+ }
181
+ .hero.is-dark.is-bold {
182
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
183
+ }
184
+ @media screen and (max-width: 768px) {
185
+ .hero.is-dark.is-bold .navbar-menu {
186
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
187
+ }
188
+ }
189
+ .hero.is-text {
190
+ --bulma-hero-h: var(--bulma-text-h);
191
+ --bulma-hero-s: var(--bulma-text-s);
192
+ --bulma-hero-background-l: var(--bulma-text-l);
193
+ --bulma-hero-color-l: var(--bulma-text-invert-l);
194
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
195
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
196
+ }
197
+ .hero.is-text .navbar {
198
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
199
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
200
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
201
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
202
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
203
+ }
204
+ .hero.is-text .tabs {
205
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
206
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
207
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
208
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
209
+ }
210
+ .hero.is-text .subtitle {
211
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
212
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
213
+ }
214
+ .hero.is-text .title {
215
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
216
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
217
+ }
218
+ .hero.is-text.is-bold {
219
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
220
+ }
221
+ @media screen and (max-width: 768px) {
222
+ .hero.is-text.is-bold .navbar-menu {
223
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
224
+ }
225
+ }
226
+ .hero.is-primary {
227
+ --bulma-hero-h: var(--bulma-primary-h);
228
+ --bulma-hero-s: var(--bulma-primary-s);
229
+ --bulma-hero-background-l: var(--bulma-primary-l);
230
+ --bulma-hero-color-l: var(--bulma-primary-invert-l);
231
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
232
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
233
+ }
234
+ .hero.is-primary .navbar {
235
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
236
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
237
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
238
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
239
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
240
+ }
241
+ .hero.is-primary .tabs {
242
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
243
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
244
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
245
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
246
+ }
247
+ .hero.is-primary .subtitle {
248
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
249
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
250
+ }
251
+ .hero.is-primary .title {
252
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
253
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
254
+ }
255
+ .hero.is-primary.is-bold {
256
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
257
+ }
258
+ @media screen and (max-width: 768px) {
259
+ .hero.is-primary.is-bold .navbar-menu {
260
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
261
+ }
262
+ }
263
+ .hero.is-link {
264
+ --bulma-hero-h: var(--bulma-link-h);
265
+ --bulma-hero-s: var(--bulma-link-s);
266
+ --bulma-hero-background-l: var(--bulma-link-l);
267
+ --bulma-hero-color-l: var(--bulma-link-invert-l);
268
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
269
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
270
+ }
271
+ .hero.is-link .navbar {
272
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
273
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
274
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
275
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
276
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
277
+ }
278
+ .hero.is-link .tabs {
279
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
280
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
281
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
282
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
283
+ }
284
+ .hero.is-link .subtitle {
285
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
286
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
287
+ }
288
+ .hero.is-link .title {
289
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
290
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
291
+ }
292
+ .hero.is-link.is-bold {
293
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
294
+ }
295
+ @media screen and (max-width: 768px) {
296
+ .hero.is-link.is-bold .navbar-menu {
297
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
298
+ }
299
+ }
300
+ .hero.is-info {
301
+ --bulma-hero-h: var(--bulma-info-h);
302
+ --bulma-hero-s: var(--bulma-info-s);
303
+ --bulma-hero-background-l: var(--bulma-info-l);
304
+ --bulma-hero-color-l: var(--bulma-info-invert-l);
305
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
306
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
307
+ }
308
+ .hero.is-info .navbar {
309
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
310
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
311
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
312
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
313
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
314
+ }
315
+ .hero.is-info .tabs {
316
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
317
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
318
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
319
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
320
+ }
321
+ .hero.is-info .subtitle {
322
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
323
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
324
+ }
325
+ .hero.is-info .title {
326
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
327
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
328
+ }
329
+ .hero.is-info.is-bold {
330
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
331
+ }
332
+ @media screen and (max-width: 768px) {
333
+ .hero.is-info.is-bold .navbar-menu {
334
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
335
+ }
336
+ }
337
+ .hero.is-success {
338
+ --bulma-hero-h: var(--bulma-success-h);
339
+ --bulma-hero-s: var(--bulma-success-s);
340
+ --bulma-hero-background-l: var(--bulma-success-l);
341
+ --bulma-hero-color-l: var(--bulma-success-invert-l);
342
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
343
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
344
+ }
345
+ .hero.is-success .navbar {
346
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
347
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
348
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
349
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
350
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
351
+ }
352
+ .hero.is-success .tabs {
353
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
354
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
355
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
356
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
357
+ }
358
+ .hero.is-success .subtitle {
359
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
360
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
361
+ }
362
+ .hero.is-success .title {
363
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
364
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
365
+ }
366
+ .hero.is-success.is-bold {
367
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
368
+ }
369
+ @media screen and (max-width: 768px) {
370
+ .hero.is-success.is-bold .navbar-menu {
371
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
372
+ }
373
+ }
374
+ .hero.is-warning {
375
+ --bulma-hero-h: var(--bulma-warning-h);
376
+ --bulma-hero-s: var(--bulma-warning-s);
377
+ --bulma-hero-background-l: var(--bulma-warning-l);
378
+ --bulma-hero-color-l: var(--bulma-warning-invert-l);
379
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
380
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
381
+ }
382
+ .hero.is-warning .navbar {
383
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
384
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
385
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
386
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
387
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
388
+ }
389
+ .hero.is-warning .tabs {
390
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
391
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
392
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
393
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
394
+ }
395
+ .hero.is-warning .subtitle {
396
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
397
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
398
+ }
399
+ .hero.is-warning .title {
400
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
401
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
402
+ }
403
+ .hero.is-warning.is-bold {
404
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
405
+ }
406
+ @media screen and (max-width: 768px) {
407
+ .hero.is-warning.is-bold .navbar-menu {
408
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
409
+ }
410
+ }
411
+ .hero.is-danger {
412
+ --bulma-hero-h: var(--bulma-danger-h);
413
+ --bulma-hero-s: var(--bulma-danger-s);
414
+ --bulma-hero-background-l: var(--bulma-danger-l);
415
+ --bulma-hero-color-l: var(--bulma-danger-invert-l);
416
+ background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
417
+ color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
418
+ }
419
+ .hero.is-danger .navbar {
420
+ --bulma-navbar-item-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
421
+ --bulma-navbar-item-hover-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
422
+ --bulma-navbar-item-hover-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
423
+ --bulma-navbar-item-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
424
+ --bulma-navbar-item-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
425
+ }
426
+ .hero.is-danger .tabs {
427
+ --bulma-tabs-link-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
428
+ --bulma-tabs-boxed-link-active-background-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
429
+ --bulma-tabs-boxed-link-active-border-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
430
+ --bulma-tabs-link-active-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l));
431
+ }
432
+ .hero.is-danger .subtitle {
433
+ --bulma-subtitle-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
434
+ --bulma-subtitle-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
435
+ }
436
+ .hero.is-danger .title {
437
+ --bulma-title-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
438
+ --bulma-title-strong-color: hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l));
439
+ }
440
+ .hero.is-danger.is-bold {
441
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-background-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
442
+ }
443
+ @media screen and (max-width: 768px) {
444
+ .hero.is-danger.is-bold .navbar-menu {
445
+ background-image: linear-gradient(141deg, hsl(calc(var(--bulma-hero-h) - 5deg), calc(var(--bulma-hero-s) + 10%), calc(var(--bulma-hero-background-l) + 5%)) 0%, hsl(var(--bulma-hero-h), var(--bulma-hero-s), var(--bulma-hero-color-l)) 71%, hsl(calc(var(--bulma-hero-h) + 5deg), calc(var(--bulma-hero-s) - 10%), calc(var(--bulma-hero-background-l) - 5%)) 100%);
446
+ }
447
+ }
448
+ .hero.is-small .hero-body {
449
+ padding: var(--bulma-hero-body-padding-small);
450
+ }
451
+ @media screen and (min-width: 769px), print {
452
+ .hero.is-medium .hero-body {
453
+ padding: var(--bulma-hero-body-padding-medium);
454
+ }
455
+ }
456
+ @media screen and (min-width: 769px), print {
457
+ .hero.is-large .hero-body {
458
+ padding: var(--bulma-hero-body-padding-large);
459
+ }
460
+ }
461
+ .hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body {
462
+ align-items: center;
463
+ display: flex;
464
+ }
465
+ .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container {
466
+ flex-grow: 1;
467
+ flex-shrink: 1;
468
+ }
469
+ .hero.is-halfheight {
470
+ min-height: 50vh;
471
+ }
472
+ .hero.is-fullheight {
473
+ min-height: 100vh;
474
+ }
475
+
476
+ .hero-video {
477
+ overflow: hidden;
478
+ }
479
+ .hero-video video {
480
+ left: 50%;
481
+ min-height: 100%;
482
+ min-width: 100%;
483
+ position: absolute;
484
+ top: 50%;
485
+ transform: translate3d(-50%, -50%, 0);
486
+ }
487
+ .hero-video.is-transparent {
488
+ opacity: 0.3;
489
+ }
490
+ @media screen and (max-width: 768px) {
491
+ .hero-video {
492
+ display: none;
493
+ }
494
+ }
495
+
496
+ .hero-buttons {
497
+ margin-top: 1.5rem;
498
+ }
499
+ @media screen and (max-width: 768px) {
500
+ .hero-buttons .button {
501
+ display: flex;
502
+ }
503
+ .hero-buttons .button:not(:last-child) {
504
+ margin-bottom: 0.75rem;
505
+ }
506
+ }
507
+ @media screen and (min-width: 769px), print {
508
+ .hero-buttons {
509
+ display: flex;
510
+ justify-content: center;
511
+ }
512
+ .hero-buttons .button:not(:last-child) {
513
+ margin-inline-end: 1.5rem;
514
+ }
515
+ }
516
+
517
+ .hero-head,
518
+ .hero-foot {
519
+ flex-grow: 0;
520
+ flex-shrink: 0;
521
+ }
522
+
523
+ .hero-body {
524
+ flex-grow: 1;
525
+ flex-shrink: 0;
526
+ padding: var(--bulma-hero-body-padding);
527
+ }
528
+ @media screen and (min-width: 769px), print {
529
+ .hero-body {
530
+ padding: var(--bulma-hero-body-padding-tablet);
531
+ }
532
+ }
533
+
534
+ /*# sourceMappingURL=hero.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../utilities/controls.scss","../utilities/css-variables.scss","../utilities/extends.scss","../utilities/mixins.scss","hero.scss"],"names":[],"mappings":"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","file":"hero.css"}
@@ -0,0 +1,102 @@
1
+ :root {
2
+ --bulma-control-radius: var(--bulma-radius);
3
+ --bulma-control-radius-small: var(--bulma-radius-small);
4
+ --bulma-control-border-width: 1px;
5
+ --bulma-control-height: 2.5em;
6
+ --bulma-control-line-height: 1.5;
7
+ --bulma-control-padding-vertical: calc(0.5em - 1px);
8
+ --bulma-control-padding-horizontal: calc(0.75em - 1px);
9
+ --bulma-control-size: var(--bulma-size-normal);
10
+ --bulma-control-focus-shadow-l: 50%;
11
+ }
12
+
13
+ .level:not(:last-child) {
14
+ margin-bottom: var(--bulma-block-spacing);
15
+ }
16
+
17
+ .level {
18
+ --bulma-level-item-spacing: calc(var(--bulma-block-spacing) * 0.5);
19
+ align-items: center;
20
+ display: flex;
21
+ flex-direction: column;
22
+ justify-content: space-between;
23
+ gap: var(--bulma-level-item-spacing);
24
+ }
25
+ .level code {
26
+ border-radius: var(--bulma-radius);
27
+ }
28
+ .level img {
29
+ display: inline-block;
30
+ vertical-align: top;
31
+ }
32
+ .level.is-mobile {
33
+ display: flex;
34
+ flex-direction: row;
35
+ }
36
+ .level.is-mobile .level-left,
37
+ .level.is-mobile .level-right {
38
+ display: flex;
39
+ }
40
+ .level.is-mobile .level-item:not(.is-narrow) {
41
+ flex-grow: 1;
42
+ }
43
+ @media screen and (min-width: 769px), print {
44
+ .level {
45
+ display: flex;
46
+ flex-direction: row;
47
+ }
48
+ .level > .level-item:not(.is-narrow) {
49
+ flex-grow: 1;
50
+ }
51
+ }
52
+
53
+ .level-item {
54
+ align-items: center;
55
+ display: flex;
56
+ flex-basis: auto;
57
+ flex-grow: 0;
58
+ flex-shrink: 0;
59
+ justify-content: center;
60
+ }
61
+ .level-item .title,
62
+ .level-item .subtitle {
63
+ margin-bottom: 0;
64
+ }
65
+
66
+ .level-left,
67
+ .level-right {
68
+ flex-basis: auto;
69
+ flex-grow: 0;
70
+ flex-shrink: 0;
71
+ gap: calc(var(--bulma-block-spacing) * 0.5);
72
+ }
73
+ .level-left .level-item.is-flexible,
74
+ .level-right .level-item.is-flexible {
75
+ flex-grow: 1;
76
+ }
77
+
78
+ .level-left {
79
+ align-items: center;
80
+ display: flex;
81
+ flex-direction: column;
82
+ justify-content: flex-start;
83
+ }
84
+ @media screen and (min-width: 769px), print {
85
+ .level-left {
86
+ flex-direction: row;
87
+ }
88
+ }
89
+
90
+ .level-right {
91
+ align-items: center;
92
+ display: flex;
93
+ flex-direction: column;
94
+ justify-content: flex-end;
95
+ }
96
+ @media screen and (min-width: 769px), print {
97
+ .level-right {
98
+ flex-direction: row;
99
+ }
100
+ }
101
+
102
+ /*# sourceMappingURL=level.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../utilities/controls.scss","../utilities/css-variables.scss","../utilities/mixins.scss","level.scss"],"names":[],"mappings":"AAkBA;ECoBE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;AChBA;EACE,eAFmB;;;ACdvB;EF+BE;EE5BA;EACA;EACA;EACA;EACA;;AAEA;EACE;;AAGF;EACE;EACA;;AAIF;EACE;EACA;;AAEA;AAAA;EAEE;;AAIA;EACE;;AD6PN;EC3RF;IAqCI;IACA;;EAGE;IACE;;;;AAMR;EACE;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EAEE;;;AAIJ;AAAA;EAEE;EACA;EACA;EACA,KArEmB;;AAyEjB;AAAA;EACE;;;AAKN;EACE;EACA;EACA;EACA;;AD0MA;EC9MF;IAQI;;;;AAIJ;EACE;EACA;EACA;EACA;;AD8LA;EClMF;IAQI","file":"level.css"}