@vaadin/vaadin-lumo-styles 25.0.0-alpha2 → 25.0.0-alpha21

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 (261) hide show
  1. package/all-imports.d.ts +0 -8
  2. package/all-imports.js +0 -18
  3. package/components/accordion-heading.css +14 -0
  4. package/components/accordion-panel.css +15 -0
  5. package/{user-colors.d.ts → components/accordion.css} +2 -3
  6. package/components/app-layout.css +11 -0
  7. package/components/avatar-group.css +31 -0
  8. package/components/avatar.css +17 -0
  9. package/components/button.css +11 -0
  10. package/components/card.css +50 -0
  11. package/components/charts.css +11 -0
  12. package/components/checkbox-group.css +23 -0
  13. package/components/checkbox.css +14 -0
  14. package/components/combo-box.css +47 -0
  15. package/components/confirm-dialog.css +17 -0
  16. package/components/context-menu.css +32 -0
  17. package/components/crud.css +40 -0
  18. package/components/custom-field.css +20 -0
  19. package/components/dashboard.css +34 -0
  20. package/components/date-picker.css +49 -0
  21. package/components/date-time-picker.css +28 -0
  22. package/components/details-summary.css +11 -0
  23. package/components/details.css +12 -0
  24. package/components/dialog.css +16 -0
  25. package/components/drawer-toggle.css +14 -0
  26. package/components/email-field.css +25 -0
  27. package/components/field-highlighter.css +22 -0
  28. package/components/form-item.css +11 -0
  29. package/components/form-layout.css +13 -0
  30. package/components/grid-filter-column.css +6 -0
  31. package/components/grid-filter.css +12 -0
  32. package/components/grid-pro-edit-column.css +48 -0
  33. package/components/grid-pro.css +14 -0
  34. package/components/grid-selection-column.css +6 -0
  35. package/components/grid-sort-column.css +6 -0
  36. package/components/grid-sorter.css +19 -0
  37. package/components/grid-tree-column.css +6 -0
  38. package/components/grid-tree-toggle.css +11 -0
  39. package/components/grid.css +11 -0
  40. package/components/horizontal-layout.css +11 -0
  41. package/components/icon.css +11 -0
  42. package/components/index.css +71 -0
  43. package/components/input-container.css +11 -0
  44. package/components/integer-field.css +25 -0
  45. package/components/item.css +11 -0
  46. package/components/list-box.css +11 -0
  47. package/components/login-form.css +14 -0
  48. package/components/login.css +15 -0
  49. package/components/map.css +11 -0
  50. package/components/master-detail-layout.css +19 -0
  51. package/components/menu-bar.css +47 -0
  52. package/components/message-input-button.css +11 -0
  53. package/components/message-input.css +13 -0
  54. package/components/message-list.css +6 -0
  55. package/components/message.css +12 -0
  56. package/components/multi-select-combo-box.css +61 -0
  57. package/components/notification.css +15 -0
  58. package/components/number-field.css +25 -0
  59. package/components/overlay.css +11 -0
  60. package/components/password-field.css +32 -0
  61. package/components/popover.css +14 -0
  62. package/components/progress-bar.css +11 -0
  63. package/components/radio-button.css +14 -0
  64. package/components/radio-group.css +23 -0
  65. package/components/rich-text-editor.css +26 -0
  66. package/components/scroller.css +11 -0
  67. package/components/select.css +48 -0
  68. package/components/side-nav-item.css +14 -0
  69. package/components/side-nav.css +12 -0
  70. package/components/split-layout.css +11 -0
  71. package/components/tab.css +11 -0
  72. package/components/tabs.css +12 -0
  73. package/components/tabsheet.css +19 -0
  74. package/components/text-area.css +25 -0
  75. package/components/text-field.css +23 -0
  76. package/components/time-picker.css +43 -0
  77. package/components/tooltip.css +14 -0
  78. package/components/upload.css +31 -0
  79. package/components/vertical-layout.css +11 -0
  80. package/dist/lumo.css +43 -0
  81. package/dist/presets/compact.css +1 -0
  82. package/dist/utility.css +1 -0
  83. package/{color-global.js → lumo.css} +3 -4
  84. package/mixins/field-button.js +3 -4
  85. package/mixins/helper.js +3 -4
  86. package/mixins/input-field-shared.js +5 -9
  87. package/mixins/loader.js +3 -2
  88. package/mixins/menu-overlay.js +3 -4
  89. package/mixins/overlay.js +3 -4
  90. package/mixins/required-field.js +3 -4
  91. package/package.json +24 -14
  92. package/presets/compact.css +31 -0
  93. package/src/components/accordion-heading.css +42 -0
  94. package/src/components/accordion-panel.css +38 -0
  95. package/src/components/app-layout.css +193 -0
  96. package/src/components/avatar-group-menu-item.css +22 -0
  97. package/src/components/avatar-group-overlay.css +11 -0
  98. package/src/components/avatar-group.css +67 -0
  99. package/src/components/avatar.css +86 -0
  100. package/src/components/button.css +334 -0
  101. package/src/components/card.css +38 -0
  102. package/src/components/chart.css +86 -0
  103. package/src/components/checkbox-group.css +18 -0
  104. package/src/components/checkbox.css +340 -0
  105. package/src/components/combo-box-item.css +18 -0
  106. package/src/components/combo-box-overlay.css +15 -0
  107. package/src/components/combo-box.css +14 -0
  108. package/src/components/confirm-dialog-overlay.css +55 -0
  109. package/src/components/context-menu-item.css +39 -0
  110. package/src/components/context-menu-list-box.css +40 -0
  111. package/src/components/context-menu-overlay.css +61 -0
  112. package/src/components/crud-dialog-overlay.css +57 -0
  113. package/src/components/crud-edit.css +30 -0
  114. package/src/components/crud.css +157 -0
  115. package/src/components/custom-field.css +102 -0
  116. package/src/components/dashboard-layout.css +28 -0
  117. package/src/components/dashboard-section.css +85 -0
  118. package/src/components/dashboard-widget.css +140 -0
  119. package/src/components/dashboard.css +14 -0
  120. package/src/components/date-picker-month-calendar.css +192 -0
  121. package/src/components/date-picker-overlay-content.css +127 -0
  122. package/src/components/date-picker-overlay.css +48 -0
  123. package/src/components/date-picker-year.css +35 -0
  124. package/src/components/date-picker.css +41 -0
  125. package/src/components/date-time-picker.css +36 -0
  126. package/src/components/details-summary.css +131 -0
  127. package/src/components/details.css +37 -0
  128. package/src/components/dialog-overlay.css +164 -0
  129. package/src/components/drawer-toggle.css +51 -0
  130. package/src/components/email-field.css +26 -0
  131. package/src/components/field-outline.css +51 -0
  132. package/src/components/form-item.css +36 -0
  133. package/src/components/grid-filter.css +16 -0
  134. package/src/components/grid-pro-edit-select.css +19 -0
  135. package/src/components/grid-pro.css +90 -0
  136. package/src/components/grid-sorter.css +70 -0
  137. package/src/components/grid-tree-toggle.css +104 -0
  138. package/src/components/grid.css +755 -0
  139. package/src/components/horizontal-layout.css +34 -0
  140. package/src/components/icon.css +11 -0
  141. package/src/components/input-container.css +228 -0
  142. package/src/components/item.css +94 -0
  143. package/src/components/list-box.css +31 -0
  144. package/src/components/login-form-wrapper.css +113 -0
  145. package/src/components/login-overlay-wrapper.css +189 -0
  146. package/src/components/map.css +182 -0
  147. package/src/components/menu-bar-button.css +128 -0
  148. package/src/components/menu-bar-item.css +23 -0
  149. package/{badge-global.js → src/components/menu-bar-overlay.css} +5 -4
  150. package/src/components/menu-bar.css +31 -0
  151. package/src/components/message-input.css +30 -0
  152. package/src/components/message.css +57 -0
  153. package/src/components/multi-select-combo-box-chip.css +113 -0
  154. package/src/components/multi-select-combo-box-container.css +20 -0
  155. package/src/components/multi-select-combo-box-item.css +13 -0
  156. package/src/components/multi-select-combo-box-overlay.css +18 -0
  157. package/src/components/multi-select-combo-box.css +102 -0
  158. package/src/components/notification-card.css +228 -0
  159. package/src/components/notification-container.css +60 -0
  160. package/src/components/number-field.css +53 -0
  161. package/src/components/password-field-button.css +19 -0
  162. package/src/components/password-field.css +24 -0
  163. package/src/components/popover-overlay.css +20 -0
  164. package/src/components/progress-bar.css +295 -0
  165. package/src/components/radio-button.css +156 -0
  166. package/src/components/radio-group.css +18 -0
  167. package/src/components/rich-text-editor-popup-overlay.css +27 -0
  168. package/src/components/rich-text-editor.css +383 -0
  169. package/src/components/scroller.css +21 -0
  170. package/src/components/select-overlay.css +54 -0
  171. package/src/components/select-value-button.css +57 -0
  172. package/src/components/select.css +73 -0
  173. package/src/components/side-nav-item.css +183 -0
  174. package/src/components/side-nav.css +102 -0
  175. package/src/components/split-layout.css +53 -0
  176. package/src/components/tab.css +246 -0
  177. package/src/components/tabs.css +285 -0
  178. package/src/components/tabsheet.css +63 -0
  179. package/src/components/text-area.css +116 -0
  180. package/src/components/time-picker-overlay.css +15 -0
  181. package/src/components/time-picker.css +36 -0
  182. package/src/components/tooltip-overlay.css +53 -0
  183. package/src/components/upload-file.css +99 -0
  184. package/src/components/upload-icon.css +20 -0
  185. package/src/components/upload.css +56 -0
  186. package/src/components/user-tag.css +48 -0
  187. package/src/components/user-tags-overlay.css +64 -0
  188. package/src/components/vertical-layout.css +34 -0
  189. package/src/global/badge.css +167 -0
  190. package/src/global/color-scheme.css +99 -0
  191. package/{utility-global.js → src/global/index.css} +3 -4
  192. package/src/global/typography.css +113 -0
  193. package/src/mixins/checkable-field.css +67 -0
  194. package/src/mixins/combo-box-loader.css +14 -0
  195. package/src/mixins/combo-box-overlay.css +30 -0
  196. package/src/mixins/dashboard-item.css +121 -0
  197. package/src/mixins/field-base.css +187 -0
  198. package/src/mixins/field-button.css +46 -0
  199. package/src/mixins/field-error-message.css +36 -0
  200. package/src/mixins/field-helper.css +62 -0
  201. package/src/mixins/field-label.css +62 -0
  202. package/src/mixins/field-required.css +26 -0
  203. package/src/mixins/grid-pro-editor.css +35 -0
  204. package/src/mixins/group-field.css +58 -0
  205. package/src/mixins/loader.css +48 -0
  206. package/src/mixins/menu-overlay-core.css +36 -0
  207. package/src/mixins/menu-overlay-ext.css +63 -0
  208. package/src/mixins/overlay.css +131 -0
  209. package/src/mixins/resizable-overlay.css +100 -0
  210. package/src/props/color.css +98 -0
  211. package/src/props/icons.css +63 -0
  212. package/src/props/index.css +12 -0
  213. package/src/props/reset.css +11 -0
  214. package/src/props/sizing.css +19 -0
  215. package/src/props/spacing.css +27 -0
  216. package/src/props/style.css +21 -0
  217. package/src/props/typography.css +24 -0
  218. package/src/utilities/accessibility.css +17 -0
  219. package/src/utilities/background.css +189 -0
  220. package/src/utilities/border.css +173 -0
  221. package/src/utilities/filter.css +37 -0
  222. package/src/utilities/flexbox-grid.css +781 -0
  223. package/src/utilities/layout.css +629 -0
  224. package/src/utilities/shadows.css +29 -0
  225. package/src/utilities/sizing.css +142 -0
  226. package/src/utilities/spacing.css +682 -0
  227. package/src/utilities/transition.css +46 -0
  228. package/src/utilities/typography.css +424 -0
  229. package/utility.css +16 -0
  230. package/vaadin-iconset.js +4 -0
  231. package/auto-complete.css +0 -2582
  232. package/badge.d.ts +0 -3
  233. package/badge.js +0 -178
  234. package/color.d.ts +0 -5
  235. package/color.js +0 -221
  236. package/font-icons.js +0 -67
  237. package/global.js +0 -5
  238. package/presets/compact.js +0 -40
  239. package/sizing.d.ts +0 -3
  240. package/sizing.js +0 -29
  241. package/spacing.d.ts +0 -3
  242. package/spacing.js +0 -37
  243. package/style.d.ts +0 -5
  244. package/style.js +0 -119
  245. package/typography-global.js +0 -13
  246. package/typography.d.ts +0 -7
  247. package/typography.js +0 -129
  248. package/user-colors.js +0 -33
  249. package/utilities/accessibility.js +0 -21
  250. package/utilities/background.js +0 -156
  251. package/utilities/border.js +0 -147
  252. package/utilities/filter.js +0 -34
  253. package/utilities/flexbox-grid.js +0 -619
  254. package/utilities/layout.js +0 -504
  255. package/utilities/shadows.js +0 -28
  256. package/utilities/sizing.js +0 -121
  257. package/utilities/spacing.js +0 -542
  258. package/utilities/transition.js +0 -49
  259. package/utilities/typography.js +0 -344
  260. package/utility.d.ts +0 -3
  261. package/utility.js +0 -34
package/auto-complete.css DELETED
@@ -1,2582 +0,0 @@
1
- /* This file contains declarations for CSS custom properties and utility
2
- * classes of the Lumo theme in order to provide auto-complete support
3
- * for IDEs.
4
- *
5
- * NOTE: This file is only intended to provide auto-complete support,
6
- * do not include it into an HTML page!
7
- */
8
-
9
- /* Custom CSS properties */
10
- :host {
11
- --lumo-base-color: #fff;
12
- --lumo-tint-5pct: hsla(0, 0%, 100%, 0.3);
13
- --lumo-tint-10pct: hsla(0, 0%, 100%, 0.37);
14
- --lumo-tint-20pct: hsla(0, 0%, 100%, 0.44);
15
- --lumo-tint-30pct: hsla(0, 0%, 100%, 0.5);
16
- --lumo-tint-40pct: hsla(0, 0%, 100%, 0.57);
17
- --lumo-tint-50pct: hsla(0, 0%, 100%, 0.64);
18
- --lumo-tint-60pct: hsla(0, 0%, 100%, 0.7);
19
- --lumo-tint-70pct: hsla(0, 0%, 100%, 0.77);
20
- --lumo-tint-80pct: hsla(0, 0%, 100%, 0.84);
21
- --lumo-tint-90pct: hsla(0, 0%, 100%, 0.9);
22
- --lumo-tint: #fff;
23
- --lumo-shade-5pct: hsla(214, 61%, 25%, 0.05);
24
- --lumo-shade-10pct: hsla(214, 57%, 24%, 0.1);
25
- --lumo-shade-20pct: hsla(214, 53%, 23%, 0.16);
26
- --lumo-shade-30pct: hsla(214, 50%, 22%, 0.26);
27
- --lumo-shade-40pct: hsla(214, 47%, 21%, 0.38);
28
- --lumo-shade-50pct: hsla(214, 45%, 20%, 0.52);
29
- --lumo-shade-60pct: hsla(214, 43%, 19%, 0.6);
30
- --lumo-shade-70pct: hsla(214, 42%, 18%, 0.69);
31
- --lumo-shade-80pct: hsla(214, 41%, 17%, 0.83);
32
- --lumo-shade-90pct: hsla(214, 40%, 16%, 0.94);
33
- --lumo-shade: hsl(214, 35%, 15%);
34
- --lumo-contrast-5pct: var(--lumo-shade-5pct);
35
- --lumo-contrast-10pct: var(--lumo-shade-10pct);
36
- --lumo-contrast-20pct: var(--lumo-shade-20pct);
37
- --lumo-contrast-30pct: var(--lumo-shade-30pct);
38
- --lumo-contrast-40pct: var(--lumo-shade-40pct);
39
- --lumo-contrast-50pct: var(--lumo-shade-50pct);
40
- --lumo-contrast-60pct: var(--lumo-shade-60pct);
41
- --lumo-contrast-70pct: var(--lumo-shade-70pct);
42
- --lumo-contrast-80pct: var(--lumo-shade-80pct);
43
- --lumo-contrast-90pct: var(--lumo-shade-90pct);
44
- --lumo-contrast: var(--lumo-shade);
45
- --lumo-header-text-color: var(--lumo-contrast);
46
- --lumo-body-text-color: var(--lumo-contrast-90pct);
47
- --lumo-secondary-text-color: var(--lumo-contrast-70pct);
48
- --lumo-tertiary-text-color: var(--lumo-contrast-50pct);
49
- --lumo-disabled-text-color: var(--lumo-contrast-30pct);
50
- --lumo-primary-color: hsl(214, 100%, 48%);
51
- --lumo-primary-color-50pct: hsla(214, 100%, 49%, 0.76);
52
- --lumo-primary-color-10pct: hsla(214, 100%, 60%, 0.13);
53
- --lumo-primary-text-color: hsl(214, 100%, 43%);
54
- --lumo-primary-contrast-color: #fff;
55
- --lumo-error-color: hsl(3, 85%, 48%);
56
- --lumo-error-color-50pct: hsla(3, 85%, 49%, 0.5);
57
- --lumo-error-color-10pct: hsla(3, 85%, 49%, 0.1);
58
- --lumo-error-text-color: hsl(3, 89%, 42%);
59
- --lumo-error-contrast-color: #fff;
60
- --lumo-success-color: hsl(145, 72%, 30%);
61
- --lumo-success-color-50pct: hsla(145, 72%, 31%, 0.5);
62
- --lumo-success-color-10pct: hsla(145, 72%, 31%, 0.1);
63
- --lumo-success-text-color: hsl(145, 85%, 25%);
64
- --lumo-success-contrast-color: #fff;
65
- --lumo-warning-color: hsl(48, 100%, 50%);
66
- --lumo-warning-color-10pct: hsla(48, 100%, 50%, 0.25);
67
- --lumo-warning-text-color: hsl(32, 100%, 30%);
68
- --lumo-warning-contrast-color: var(--lumo-shade-90pct);
69
- --lumo-size-xs: 1.625rem;
70
- --lumo-size-s: 1.875rem;
71
- --lumo-size-m: 2.25rem;
72
- --lumo-size-l: 2.75rem;
73
- --lumo-size-xl: 3.5rem;
74
- --lumo-icon-size-s: 1.25em;
75
- --lumo-icon-size-m: 1.5em;
76
- --lumo-icon-size-l: 2.25em;
77
- --lumo-icon-size: var(--lumo-icon-size-m);
78
- --lumo-space-xs: 0.25rem;
79
- --lumo-space-s: 0.5rem;
80
- --lumo-space-m: 1rem;
81
- --lumo-space-l: 1.5rem;
82
- --lumo-space-xl: 2.5rem;
83
- --lumo-space-wide-xs: calc(var(--lumo-space-xs) / 2) var(--lumo-space-xs);
84
- --lumo-space-wide-s: calc(var(--lumo-space-s) / 2) var(--lumo-space-s);
85
- --lumo-space-wide-m: calc(var(--lumo-space-m) / 2) var(--lumo-space-m);
86
- --lumo-space-wide-l: calc(var(--lumo-space-l) / 2) var(--lumo-space-l);
87
- --lumo-space-wide-xl: calc(var(--lumo-space-xl) / 2) var(--lumo-space-xl);
88
- --lumo-space-tall-xs: var(--lumo-space-xs) calc(var(--lumo-space-xs) / 2);
89
- --lumo-space-tall-s: var(--lumo-space-s) calc(var(--lumo-space-s) / 2);
90
- --lumo-space-tall-m: var(--lumo-space-m) calc(var(--lumo-space-m) / 2);
91
- --lumo-space-tall-l: var(--lumo-space-l) calc(var(--lumo-space-l) / 2);
92
- --lumo-space-tall-xl: var(--lumo-space-xl) calc(var(--lumo-space-xl) / 2);
93
- --lumo-border-radius-s: 0.25em;
94
- --lumo-border-radius-m: var(--lumo-border-radius, 0.25em);
95
- --lumo-border-radius-l: 0.5em;
96
- --lumo-box-shadow-xs: 0 1px 4px -1px var(--lumo-shade-50pct);
97
- --lumo-box-shadow-s: 0 2px 4px -1px var(--lumo-shade-20pct), 0 3px 12px -1px var(--lumo-shade-30pct);
98
- --lumo-box-shadow-m: 0 2px 6px -1px var(--lumo-shade-20pct), 0 8px 24px -4px var(--lumo-shade-40pct);
99
- --lumo-box-shadow-l: 0 3px 18px -2px var(--lumo-shade-20pct), 0 12px 48px -6px var(--lumo-shade-40pct);
100
- --lumo-box-shadow-xl: 0 4px 24px -3px var(--lumo-shade-20pct), 0 18px 64px -8px var(--lumo-shade-40pct);
101
- --lumo-clickable-cursor: default;
102
- --vaadin-button-background: var(--lumo-contrast-5pct);
103
- --vaadin-button-border: none;
104
- --vaadin-button-border-radius: var(--lumo-border-radius-m);
105
- --vaadin-button-font-size: var(--lumo-font-size-m);
106
- --vaadin-button-font-weight: 500;
107
- --vaadin-button-height: var(--lumo-size-m);
108
- --vaadin-button-margin: var(--lumo-space-xs) 0;
109
- --vaadin-button-min-width: calc(var(--vaadin-button-height) * 2);
110
- --vaadin-button-padding: 0 calc(var(--vaadin-button-height) / 3 + var(--lumo-border-radius-m) / 2);
111
- --vaadin-button-text-color: var(--lumo-primary-text-color);
112
- --vaadin-button-primary-background: var(--lumo-primary-color);
113
- --vaadin-button-primary-border: none;
114
- --vaadin-button-primary-font-weight: 600;
115
- --vaadin-button-primary-text-color: var(--lumo-primary-contrast-color);
116
- --vaadin-button-tertiary-background: transparent !important;
117
- --vaadin-button-tertiary-text-color: var(--lumo-primary-text-color);
118
- --vaadin-button-tertiary-font-weight: 500;
119
- --vaadin-button-tertiary-padding: 0 calc(var(--vaadin-button-height) / 6);
120
- --vaadin-checkbox-background: var(--lumo-contrast-20pct);
121
- --vaadin-checkbox-background-hover: var(--lumo-contrast-30pct);
122
- --vaadin-checkbox-border-radius: var(--lumo-border-radius-s);
123
- --vaadin-checkbox-checkmark-char: var(--lumo-icons-checkmark);
124
- --vaadin-checkbox-checkmark-char-indeterminate: '';
125
- --vaadin-checkbox-checkmark-color: var(--lumo-primary-contrast-color);
126
- --vaadin-checkbox-checkmark-size: calc(var(--vaadin-checkbox-size) + 2px);
127
- --vaadin-checkbox-label-color: var(--lumo-body-text-color);
128
- --vaadin-checkbox-label-font-size: var(--lumo-font-size-m);
129
- --vaadin-checkbox-label-padding: var(--lumo-space-xs) var(--lumo-space-s) var(--lumo-space-xs) var(--lumo-space-xs);
130
- --vaadin-checkbox-size: calc(var(--lumo-size-m) / 2);
131
- --vaadin-checkbox-disabled-checkmark-color: var(--lumo-contrast-30pct);
132
- --vaadin-checkbox-disabled-background: var(--lumo-contrast-10pct);
133
- --vaadin-radio-button-background: var(--lumo-contrast-20pct);
134
- --vaadin-radio-button-background-hover: var(--lumo-contrast-30pct);
135
- --vaadin-radio-button-dot-color: var(--lumo-primary-contrast-color);
136
- --vaadin-radio-button-dot-size: 3px;
137
- --vaadin-radio-button-label-color: var(--lumo-body-text-color);
138
- --vaadin-radio-button-label-font-size: var(--lumo-font-size-m);
139
- --vaadin-radio-button-size: calc(var(--lumo-size-m) / 2);
140
- --vaadin-radio-button-disabled-background: var(--lumo-contrast-10pct);
141
- --vaadin-radio-button-disabled-dot-color: var(--lumo-contrast-30pct);
142
- --vaadin-selection-color: var(--lumo-primary-color);
143
- --vaadin-selection-color-text: var(--lumo-primary-text-color);
144
- --vaadin-input-field-border-radius: var(--lumo-border-radius-m);
145
- --vaadin-focus-ring-color: var(--lumo-primary-color-50pct);
146
- --vaadin-focus-ring-width: 2px;
147
- --vaadin-input-field-label-color: var(--lumo-secondary-text-color);
148
- --vaadin-input-field-focused-label-color: var(--lumo-primary-text-color);
149
- --vaadin-input-field-hovered-label-color: var(--lumo-body-text-color);
150
- --vaadin-input-field-label-font-size: var(--lumo-font-size-s);
151
- --vaadin-input-field-label-font-weight: 500;
152
- --vaadin-input-field-helper-color: var(--lumo-secondary-text-color);
153
- --vaadin-input-field-helper-font-size: var(--lumo-font-size-xs);
154
- --vaadin-input-field-helper-font-weight: 400;
155
- --vaadin-input-field-helper-spacing: 0.4em;
156
- --vaadin-input-field-error-color: var(--lumo-error-text-color);
157
- --vaadin-input-field-error-font-size: var(--lumo-font-size-xs);
158
- --vaadin-input-field-error-font-weight: 400;
159
- --vaadin-input-field-background: var(--lumo-contrast-10pct);
160
- --vaadin-input-field-icon-color: var(--lumo-contrast-60pct);
161
- --vaadin-input-field-icon-size: var(--lumo-icon-size-m);
162
- --vaadin-input-field-invalid-background: var(--lumo-error-color-10pct);
163
- --vaadin-input-field-invalid-hover-highlight: var(--lumo-error-color-50pct);
164
- --vaadin-input-field-disabled-background: var(--lumo-contrast-5pct);
165
- --vaadin-input-field-disabled-value-color: var(--lumo-disabled-text-color);
166
- --vaadin-input-field-height: var(--lumo-size-m);
167
- --vaadin-input-field-hover-highlight: var(--lumo-contrast-50pct);
168
- --vaadin-input-field-placeholder-color: var(--lumo-secondary-text-color);
169
- --vaadin-input-field-readonly-border: 1px dashed var(--lumo-contrast-30pct);
170
- --vaadin-input-field-value-color: var(--lumo-body-text-color);
171
- --vaadin-input-field-value-font-size: var(--lumo-font-size-m);
172
- --vaadin-input-field-value-font-weight: 500;
173
- --lumo-font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
174
- --lumo-font-size-xxs: 0.75rem;
175
- --lumo-font-size-xs: 0.8125rem;
176
- --lumo-font-size-s: 0.875rem;
177
- --lumo-font-size-m: 1rem;
178
- --lumo-font-size-l: 1.125rem;
179
- --lumo-font-size-xl: 1.375rem;
180
- --lumo-font-size-xxl: 1.75rem;
181
- --lumo-font-size-xxxl: 2.5rem;
182
- --lumo-line-height-xs: 1.25;
183
- --lumo-line-height-s: 1.375;
184
- --lumo-line-height-m: 1.625;
185
- --vaadin-user-color-0: #df0b92;
186
- --vaadin-user-color-1: #650acc;
187
- --vaadin-user-color-2: #097faa;
188
- --vaadin-user-color-3: #ad6200;
189
- --vaadin-user-color-4: #bf16f3;
190
- --vaadin-user-color-5: #084391;
191
- --vaadin-user-color-6: #078836;
192
- }
193
-
194
- /* Utility classes */
195
-
196
- /* === Screen readers === */
197
- .sr-only {
198
- border-width: 0;
199
- clip: rect(0, 0, 0, 0);
200
- height: 1px;
201
- margin: -1px;
202
- overflow: hidden;
203
- padding: 0;
204
- position: absolute;
205
- white-space: nowrap;
206
- width: 1px;
207
- }
208
-
209
- /* === Background color === */
210
- .bg-base {
211
- background-color: var(--lumo-base-color);
212
- }
213
- .bg-transparent {
214
- background-color: transparent;
215
- }
216
- .bg-tint {
217
- background-color: var(--lumo-tint);
218
- }
219
- .bg-tint-90 {
220
- background-color: var(--lumo-tint-90pct);
221
- }
222
- .bg-tint-80 {
223
- background-color: var(--lumo-tint-80pct);
224
- }
225
- .bg-tint-70 {
226
- background-color: var(--lumo-tint-70pct);
227
- }
228
- .bg-tint-60 {
229
- background-color: var(--lumo-tint-60pct);
230
- }
231
- .bg-tint-50 {
232
- background-color: var(--lumo-tint-50pct);
233
- }
234
- .bg-tint-40 {
235
- background-color: var(--lumo-tint-40pct);
236
- }
237
- .bg-tint-30 {
238
- background-color: var(--lumo-tint-30pct);
239
- }
240
- .bg-tint-20 {
241
- background-color: var(--lumo-tint-20pct);
242
- }
243
- .bg-tint-10 {
244
- background-color: var(--lumo-tint-10pct);
245
- }
246
- .bg-tint-5 {
247
- background-color: var(--lumo-tint-5pct);
248
- }
249
- .bg-shade {
250
- background-color: var(--lumo-shade);
251
- }
252
- .bg-shade-90 {
253
- background-color: var(--lumo-shade-90pct);
254
- }
255
- .bg-shade-80 {
256
- background-color: var(--lumo-shade-80pct);
257
- }
258
- .bg-shade-70 {
259
- background-color: var(--lumo-shade-70pct);
260
- }
261
- .bg-shade-60 {
262
- background-color: var(--lumo-shade-60pct);
263
- }
264
- .bg-shade-50 {
265
- background-color: var(--lumo-shade-50pct);
266
- }
267
- .bg-shade-40 {
268
- background-color: var(--lumo-shade-40pct);
269
- }
270
- .bg-shade-30 {
271
- background-color: var(--lumo-shade-30pct);
272
- }
273
- .bg-shade-20 {
274
- background-color: var(--lumo-shade-20pct);
275
- }
276
- .bg-shade-10 {
277
- background-color: var(--lumo-shade-10pct);
278
- }
279
- .bg-shade-5 {
280
- background-color: var(--lumo-shade-5pct);
281
- }
282
- .bg-contrast {
283
- background-color: var(--lumo-contrast);
284
- }
285
- .bg-contrast-90 {
286
- background-color: var(--lumo-contrast-90pct);
287
- }
288
- .bg-contrast-80 {
289
- background-color: var(--lumo-contrast-80pct);
290
- }
291
- .bg-contrast-70 {
292
- background-color: var(--lumo-contrast-70pct);
293
- }
294
- .bg-contrast-60 {
295
- background-color: var(--lumo-contrast-60pct);
296
- }
297
- .bg-contrast-50 {
298
- background-color: var(--lumo-contrast-50pct);
299
- }
300
- .bg-contrast-40 {
301
- background-color: var(--lumo-contrast-40pct);
302
- }
303
- .bg-contrast-30 {
304
- background-color: var(--lumo-contrast-30pct);
305
- }
306
- .bg-contrast-20 {
307
- background-color: var(--lumo-contrast-20pct);
308
- }
309
- .bg-contrast-10 {
310
- background-color: var(--lumo-contrast-10pct);
311
- }
312
- .bg-contrast-5 {
313
- background-color: var(--lumo-contrast-5pct);
314
- }
315
- .bg-primary {
316
- background-color: var(--lumo-primary-color);
317
- }
318
- .bg-primary-50 {
319
- background-color: var(--lumo-primary-color-50pct);
320
- }
321
- .bg-primary-10 {
322
- background-color: var(--lumo-primary-color-10pct);
323
- }
324
- .bg-error {
325
- background-color: var(--lumo-error-color);
326
- }
327
- .bg-error-50 {
328
- background-color: var(--lumo-error-color-50pct);
329
- }
330
- .bg-error-10 {
331
- background-color: var(--lumo-error-color-10pct);
332
- }
333
- .bg-success {
334
- background-color: var(--lumo-success-color);
335
- }
336
- .bg-success-50 {
337
- background-color: var(--lumo-success-color-50pct);
338
- }
339
- .bg-success-10 {
340
- background-color: var(--lumo-success-color-10pct);
341
- }
342
- .bg-warning {
343
- background-color: var(--lumo-warning-color);
344
- }
345
- .bg-warning-10 {
346
- background-color: var(--lumo-warning-color-10pct);
347
- }
348
-
349
- /* === Border === */
350
- .border-0 {
351
- border: none;
352
- }
353
- .border-dashed {
354
- --lumo-utility-border-style: dashed;
355
- }
356
- .border-dotted {
357
- --lumo-utility-border-style: dotted;
358
- }
359
- .border {
360
- border: 1px var(--lumo-utility-border-style, solid) var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
361
- }
362
- .border-b {
363
- border-bottom: 1px var(--lumo-utility-border-style, solid)
364
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
365
- }
366
- .border-e {
367
- border-inline-end: 1px var(--lumo-utility-border-style, solid)
368
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
369
- }
370
- .border-l {
371
- border-left: 1px var(--lumo-utility-border-style, solid)
372
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
373
- }
374
- .border-r {
375
- border-right: 1px var(--lumo-utility-border-style, solid)
376
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
377
- }
378
- .border-s {
379
- border-inline-start: 1px var(--lumo-utility-border-style, solid)
380
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
381
- }
382
- .border-t {
383
- border-top: 1px var(--lumo-utility-border-style, solid) var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
384
- }
385
- /* === Border color === */
386
- .border-contrast {
387
- --lumo-utility-border-color: var(--lumo-contrast);
388
- }
389
- .border-contrast-90 {
390
- --lumo-utility-border-color: var(--lumo-contrast-90pct);
391
- }
392
- .border-contrast-80 {
393
- --lumo-utility-border-color: var(--lumo-contrast-80pct);
394
- }
395
- .border-contrast-70 {
396
- --lumo-utility-border-color: var(--lumo-contrast-70pct);
397
- }
398
- .border-contrast-60 {
399
- --lumo-utility-border-color: var(--lumo-contrast-60pct);
400
- }
401
- .border-contrast-50 {
402
- --lumo-utility-border-color: var(--lumo-contrast-50pct);
403
- }
404
- .border-contrast-40 {
405
- --lumo-utility-border-color: var(--lumo-contrast-40pct);
406
- }
407
- .border-contrast-30 {
408
- --lumo-utility-border-color: var(--lumo-contrast-30pct);
409
- }
410
- .border-contrast-20 {
411
- --lumo-utility-border-color: var(--lumo-contrast-20pct);
412
- }
413
- .border-contrast-10 {
414
- --lumo-utility-border-color: var(--lumo-contrast-10pct);
415
- }
416
- .border-contrast-5 {
417
- --lumo-utility-border-color: var(--lumo-contrast-5pct);
418
- }
419
- .border-primary {
420
- --lumo-utility-border-color: var(--lumo-primary-color);
421
- }
422
- .border-primary-50 {
423
- --lumo-utility-border-color: var(--lumo-primary-color-50pct);
424
- }
425
- .border-primary-10 {
426
- --lumo-utility-border-color: var(--lumo-primary-color-10pct);
427
- }
428
- .border-error {
429
- --lumo-utility-border-color: var(--lumo-error-color);
430
- }
431
- .border-error-50 {
432
- --lumo-utility-border-color: var(--lumo-error-color-50pct);
433
- }
434
- .border-error-10 {
435
- --lumo-utility-border-color: var(--lumo-error-color-10pct);
436
- }
437
- .border-success {
438
- --lumo-utility-border-color: var(--lumo-success-color);
439
- }
440
- .border-success-50 {
441
- --lumo-utility-border-color: var(--lumo-success-color-50pct);
442
- }
443
- .border-success-10 {
444
- --lumo-utility-border-color: var(--lumo-success-color-10pct);
445
- }
446
- .border-warning {
447
- --lumo-utility-border-color: var(--lumo-warning-color);
448
- }
449
- .border-warning-strong {
450
- --lumo-utility-border-color: var(--lumo-warning-text-color);
451
- }
452
- .border-warning-10 {
453
- --lumo-utility-border-color: var(--lumo-warning-color-10pct);
454
- }
455
- /* === Border radius === */
456
- .rounded-none {
457
- border-radius: 0;
458
- }
459
- .rounded-s {
460
- border-radius: var(--lumo-border-radius-s);
461
- }
462
- .rounded-m {
463
- border-radius: var(--lumo-border-radius-m);
464
- }
465
- .rounded-l {
466
- border-radius: var(--lumo-border-radius-l);
467
- }
468
- .rounded-full {
469
- border-radius: 9999px;
470
- }
471
- /* === Divide === */
472
- .divide-x > * + * {
473
- border-inline-start: 1px var(--lumo-utility-border-style, solid)
474
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
475
- }
476
- .divide-y > * + * {
477
- border-block-start: 1px var(--lumo-utility-border-style, solid)
478
- var(--lumo-utility-border-color, var(--lumo-contrast-10pct));
479
- }
480
-
481
- /* === Backdrop filter === */
482
- .backdrop-blur-none {
483
- backdrop-filter: blur(0);
484
- }
485
- .backdrop-blur-sm {
486
- backdrop-filter: blur(4px);
487
- }
488
- .backdrop-blur {
489
- backdrop-filter: blur(8px);
490
- }
491
- .backdrop-blur-md {
492
- backdrop-filter: blur(12px);
493
- }
494
- .backdrop-blur-lg {
495
- backdrop-filter: blur(16px);
496
- }
497
- .backdrop-blur-xl {
498
- backdrop-filter: blur(24px);
499
- }
500
- .backdrop-blur-2xl {
501
- backdrop-filter: blur(40px);
502
- }
503
- .backdrop-blur-3xl {
504
- backdrop-filter: blur(64px);
505
- }
506
-
507
- /* === Align content === */
508
- .content-center {
509
- align-content: center;
510
- }
511
- .content-end {
512
- align-content: flex-end;
513
- }
514
- .content-start {
515
- align-content: flex-start;
516
- }
517
- .content-around {
518
- align-content: space-around;
519
- }
520
- .content-between {
521
- align-content: space-between;
522
- }
523
- .content-evenly {
524
- align-content: space-evenly;
525
- }
526
- .content-stretch {
527
- align-content: stretch;
528
- }
529
- /* === Align items === */
530
- .items-baseline {
531
- align-items: baseline;
532
- }
533
- .items-center {
534
- align-items: center;
535
- }
536
- .items-end {
537
- align-items: flex-end;
538
- }
539
- .items-start {
540
- align-items: flex-start;
541
- }
542
- .items-stretch {
543
- align-items: stretch;
544
- }
545
- /* === Align self === */
546
- .self-auto {
547
- align-self: auto;
548
- }
549
- .self-baseline {
550
- align-self: baseline;
551
- }
552
- .self-center {
553
- align-self: center;
554
- }
555
- .self-end {
556
- align-self: flex-end;
557
- }
558
- .self-start {
559
- align-self: flex-start;
560
- }
561
- .self-stretch {
562
- align-self: stretch;
563
- }
564
- /* === Flex === */
565
- .flex-1 {
566
- flex: 1 1 0%;
567
- }
568
- .flex-auto {
569
- flex: 1 1 auto;
570
- }
571
- .flex-none {
572
- flex: none;
573
- }
574
- /* === Flex direction === */
575
- .flex-col {
576
- flex-direction: column;
577
- }
578
- .flex-col-reverse {
579
- flex-direction: column-reverse;
580
- }
581
- .flex-row {
582
- flex-direction: row;
583
- }
584
- .flex-row-reverse {
585
- flex-direction: row-reverse;
586
- }
587
- /* === Flex grow === */
588
- .flex-grow {
589
- flex-grow: 1;
590
- }
591
- .flex-grow-0 {
592
- flex-grow: 0;
593
- }
594
- /* === Flex shrink === */
595
- .flex-shrink {
596
- flex-shrink: 1;
597
- }
598
- .flex-shrink-0 {
599
- flex-shrink: 0;
600
- }
601
- /* === Flex wrap === */
602
- .flex-nowrap {
603
- flex-wrap: nowrap;
604
- }
605
- .flex-wrap {
606
- flex-wrap: wrap;
607
- }
608
- .flex-wrap-reverse {
609
- flex-wrap: wrap-reverse;
610
- }
611
- /* === Gap === */
612
- .gap-xs {
613
- gap: var(--lumo-space-xs);
614
- }
615
- .gap-s {
616
- gap: var(--lumo-space-s);
617
- }
618
- .gap-m {
619
- gap: var(--lumo-space-m);
620
- }
621
- .gap-l {
622
- gap: var(--lumo-space-l);
623
- }
624
- .gap-xl {
625
- gap: var(--lumo-space-xl);
626
- }
627
- /* === Gap (column) === */
628
- .gap-x-xs {
629
- column-gap: var(--lumo-space-xs);
630
- }
631
- .gap-x-s {
632
- column-gap: var(--lumo-space-s);
633
- }
634
- .gap-x-m {
635
- column-gap: var(--lumo-space-m);
636
- }
637
- .gap-x-l {
638
- column-gap: var(--lumo-space-l);
639
- }
640
- .gap-x-xl {
641
- column-gap: var(--lumo-space-xl);
642
- }
643
- /* === Gap (row) === */
644
- .gap-y-xs {
645
- row-gap: var(--lumo-space-xs);
646
- }
647
- .gap-y-s {
648
- row-gap: var(--lumo-space-s);
649
- }
650
- .gap-y-m {
651
- row-gap: var(--lumo-space-m);
652
- }
653
- .gap-y-l {
654
- row-gap: var(--lumo-space-l);
655
- }
656
- .gap-y-xl {
657
- row-gap: var(--lumo-space-xl);
658
- }
659
- /* === Grid auto flow === */
660
- .grid-flow-col {
661
- grid-auto-flow: column;
662
- }
663
- .grid-flow-row {
664
- grid-auto-flow: row;
665
- }
666
- /* === Grid columns === */
667
- .grid-cols-1 {
668
- grid-template-columns: repeat(1, minmax(0, 1fr));
669
- }
670
- .grid-cols-2 {
671
- grid-template-columns: repeat(2, minmax(0, 1fr));
672
- }
673
- .grid-cols-3 {
674
- grid-template-columns: repeat(3, minmax(0, 1fr));
675
- }
676
- .grid-cols-4 {
677
- grid-template-columns: repeat(4, minmax(0, 1fr));
678
- }
679
- .grid-cols-5 {
680
- grid-template-columns: repeat(5, minmax(0, 1fr));
681
- }
682
- .grid-cols-6 {
683
- grid-template-columns: repeat(6, minmax(0, 1fr));
684
- }
685
- .grid-cols-7 {
686
- grid-template-columns: repeat(7, minmax(0, 1fr));
687
- }
688
- .grid-cols-8 {
689
- grid-template-columns: repeat(8, minmax(0, 1fr));
690
- }
691
- .grid-cols-9 {
692
- grid-template-columns: repeat(9, minmax(0, 1fr));
693
- }
694
- .grid-cols-10 {
695
- grid-template-columns: repeat(10, minmax(0, 1fr));
696
- }
697
- .grid-cols-11 {
698
- grid-template-columns: repeat(11, minmax(0, 1fr));
699
- }
700
- .grid-cols-12 {
701
- grid-template-columns: repeat(12, minmax(0, 1fr));
702
- }
703
- /* === Grid rows === */
704
- .grid-rows-1 {
705
- grid-template-rows: repeat(1, minmax(0, 1fr));
706
- }
707
- .grid-rows-2 {
708
- grid-template-rows: repeat(2, minmax(0, 1fr));
709
- }
710
- .grid-rows-3 {
711
- grid-template-rows: repeat(3, minmax(0, 1fr));
712
- }
713
- .grid-rows-4 {
714
- grid-template-rows: repeat(4, minmax(0, 1fr));
715
- }
716
- .grid-rows-5 {
717
- grid-template-rows: repeat(5, minmax(0, 1fr));
718
- }
719
- .grid-rows-6 {
720
- grid-template-rows: repeat(6, minmax(0, 1fr));
721
- }
722
- /* === Justify content === */
723
- .justify-center {
724
- justify-content: center;
725
- }
726
- .justify-end {
727
- justify-content: flex-end;
728
- }
729
- .justify-start {
730
- justify-content: flex-start;
731
- }
732
- .justify-around {
733
- justify-content: space-around;
734
- }
735
- .justify-between {
736
- justify-content: space-between;
737
- }
738
- .justify-evenly {
739
- justify-content: space-evenly;
740
- }
741
- /* === Span (column) === */
742
- .col-span-1 {
743
- grid-column: span 1 / span 1;
744
- }
745
- .col-span-2 {
746
- grid-column: span 2 / span 2;
747
- }
748
- .col-span-3 {
749
- grid-column: span 3 / span 3;
750
- }
751
- .col-span-4 {
752
- grid-column: span 4 / span 4;
753
- }
754
- .col-span-5 {
755
- grid-column: span 5 / span 5;
756
- }
757
- .col-span-6 {
758
- grid-column: span 6 / span 6;
759
- }
760
- .col-span-7 {
761
- grid-column: span 7 / span 7;
762
- }
763
- .col-span-8 {
764
- grid-column: span 8 / span 8;
765
- }
766
- .col-span-9 {
767
- grid-column: span 9 / span 9;
768
- }
769
- .col-span-10 {
770
- grid-column: span 10 / span 10;
771
- }
772
- .col-span-11 {
773
- grid-column: span 11 / span 11;
774
- }
775
- .col-span-12 {
776
- grid-column: span 12 / span 12;
777
- }
778
- .col-span-full {
779
- grid-column: 1 / -1;
780
- }
781
- /* === Span (row) === */
782
- .row-span-1 {
783
- grid-row: span 1 / span 1;
784
- }
785
- .row-span-2 {
786
- grid-row: span 2 / span 2;
787
- }
788
- .row-span-3 {
789
- grid-row: span 3 / span 3;
790
- }
791
- .row-span-4 {
792
- grid-row: span 4 / span 4;
793
- }
794
- .row-span-5 {
795
- grid-row: span 5 / span 5;
796
- }
797
- .row-span-6 {
798
- grid-row: span 6 / span 6;
799
- }
800
- .row-span-full {
801
- grid-row: 1 / -1;
802
- }
803
- /* === Responsive design === */
804
- @media (min-width: 640px) {
805
- .sm\:items-baseline {
806
- align-items: baseline;
807
- }
808
- .sm\:items-center {
809
- align-items: center;
810
- }
811
- .sm\:items-end {
812
- align-items: flex-end;
813
- }
814
- .sm\:items-start {
815
- align-items: flex-start;
816
- }
817
- .sm\:items-stretch {
818
- align-items: stretch;
819
- }
820
- .sm\:flex-col {
821
- flex-direction: column;
822
- }
823
- .sm\:flex-row {
824
- flex-direction: row;
825
- }
826
- .sm\:grid-cols-1 {
827
- grid-template-columns: repeat(1, minmax(0, 1fr));
828
- }
829
- .sm\:grid-cols-2 {
830
- grid-template-columns: repeat(2, minmax(0, 1fr));
831
- }
832
- .sm\:grid-cols-3 {
833
- grid-template-columns: repeat(3, minmax(0, 1fr));
834
- }
835
- .sm\:grid-cols-4 {
836
- grid-template-columns: repeat(4, minmax(0, 1fr));
837
- }
838
- .sm\:grid-cols-5 {
839
- grid-template-columns: repeat(5, minmax(0, 1fr));
840
- }
841
- .sm\:grid-cols-6 {
842
- grid-template-columns: repeat(6, minmax(0, 1fr));
843
- }
844
- .sm\:grid-cols-7 {
845
- grid-template-columns: repeat(7, minmax(0, 1fr));
846
- }
847
- .sm\:grid-cols-8 {
848
- grid-template-columns: repeat(8, minmax(0, 1fr));
849
- }
850
- .sm\:grid-cols-9 {
851
- grid-template-columns: repeat(9, minmax(0, 1fr));
852
- }
853
- .sm\:grid-cols-10 {
854
- grid-template-columns: repeat(10, minmax(0, 1fr));
855
- }
856
- .sm\:grid-cols-11 {
857
- grid-template-columns: repeat(11, minmax(0, 1fr));
858
- }
859
- .sm\:grid-cols-12 {
860
- grid-template-columns: repeat(12, minmax(0, 1fr));
861
- }
862
- }
863
- @media (min-width: 768px) {
864
- .md\:items-baseline {
865
- align-items: baseline;
866
- }
867
- .md\:items-center {
868
- align-items: center;
869
- }
870
- .md\:items-end {
871
- align-items: flex-end;
872
- }
873
- .md\:items-start {
874
- align-items: flex-start;
875
- }
876
- .md\:items-stretch {
877
- align-items: stretch;
878
- }
879
- .md\:flex-col {
880
- flex-direction: column;
881
- }
882
- .md\:flex-row {
883
- flex-direction: row;
884
- }
885
- .md\:grid-cols-1 {
886
- grid-template-columns: repeat(1, minmax(0, 1fr));
887
- }
888
- .md\:grid-cols-2 {
889
- grid-template-columns: repeat(2, minmax(0, 1fr));
890
- }
891
- .md\:grid-cols-3 {
892
- grid-template-columns: repeat(3, minmax(0, 1fr));
893
- }
894
- .md\:grid-cols-4 {
895
- grid-template-columns: repeat(4, minmax(0, 1fr));
896
- }
897
- .md\:grid-cols-5 {
898
- grid-template-columns: repeat(5, minmax(0, 1fr));
899
- }
900
- .md\:grid-cols-6 {
901
- grid-template-columns: repeat(6, minmax(0, 1fr));
902
- }
903
- .md\:grid-cols-7 {
904
- grid-template-columns: repeat(7, minmax(0, 1fr));
905
- }
906
- .md\:grid-cols-8 {
907
- grid-template-columns: repeat(8, minmax(0, 1fr));
908
- }
909
- .md\:grid-cols-9 {
910
- grid-template-columns: repeat(9, minmax(0, 1fr));
911
- }
912
- .md\:grid-cols-10 {
913
- grid-template-columns: repeat(10, minmax(0, 1fr));
914
- }
915
- .md\:grid-cols-11 {
916
- grid-template-columns: repeat(11, minmax(0, 1fr));
917
- }
918
- .md\:grid-cols-12 {
919
- grid-template-columns: repeat(12, minmax(0, 1fr));
920
- }
921
- }
922
- @media (min-width: 1024px) {
923
- .lg\:items-baseline {
924
- align-items: baseline;
925
- }
926
- .lg\:items-center {
927
- align-items: center;
928
- }
929
- .lg\:items-end {
930
- align-items: flex-end;
931
- }
932
- .lg\:items-start {
933
- align-items: flex-start;
934
- }
935
- .lg\:items-stretch {
936
- align-items: stretch;
937
- }
938
- .lg\:flex-col {
939
- flex-direction: column;
940
- }
941
- .lg\:flex-row {
942
- flex-direction: row;
943
- }
944
- .lg\:grid-cols-1 {
945
- grid-template-columns: repeat(1, minmax(0, 1fr));
946
- }
947
- .lg\:grid-cols-2 {
948
- grid-template-columns: repeat(2, minmax(0, 1fr));
949
- }
950
- .lg\:grid-cols-3 {
951
- grid-template-columns: repeat(3, minmax(0, 1fr));
952
- }
953
- .lg\:grid-cols-4 {
954
- grid-template-columns: repeat(4, minmax(0, 1fr));
955
- }
956
- .lg\:grid-cols-5 {
957
- grid-template-columns: repeat(5, minmax(0, 1fr));
958
- }
959
- .lg\:grid-cols-6 {
960
- grid-template-columns: repeat(6, minmax(0, 1fr));
961
- }
962
- .lg\:grid-cols-7 {
963
- grid-template-columns: repeat(7, minmax(0, 1fr));
964
- }
965
- .lg\:grid-cols-8 {
966
- grid-template-columns: repeat(8, minmax(0, 1fr));
967
- }
968
- .lg\:grid-cols-9 {
969
- grid-template-columns: repeat(9, minmax(0, 1fr));
970
- }
971
- .lg\:grid-cols-10 {
972
- grid-template-columns: repeat(10, minmax(0, 1fr));
973
- }
974
- .lg\:grid-cols-11 {
975
- grid-template-columns: repeat(11, minmax(0, 1fr));
976
- }
977
- .lg\:grid-cols-12 {
978
- grid-template-columns: repeat(12, minmax(0, 1fr));
979
- }
980
- }
981
- @media (min-width: 1280px) {
982
- .xl\:items-baseline {
983
- align-items: baseline;
984
- }
985
- .xl\:items-center {
986
- align-items: center;
987
- }
988
- .xl\:items-end {
989
- align-items: flex-end;
990
- }
991
- .xl\:items-start {
992
- align-items: flex-start;
993
- }
994
- .xl\:items-stretch {
995
- align-items: stretch;
996
- }
997
- .xl\:flex-col {
998
- flex-direction: column;
999
- }
1000
- .xl\:flex-row {
1001
- flex-direction: row;
1002
- }
1003
- .xl\:grid-cols-1 {
1004
- grid-template-columns: repeat(1, minmax(0, 1fr));
1005
- }
1006
- .xl\:grid-cols-2 {
1007
- grid-template-columns: repeat(2, minmax(0, 1fr));
1008
- }
1009
- .xl\:grid-cols-3 {
1010
- grid-template-columns: repeat(3, minmax(0, 1fr));
1011
- }
1012
- .xl\:grid-cols-4 {
1013
- grid-template-columns: repeat(4, minmax(0, 1fr));
1014
- }
1015
- .xl\:grid-cols-5 {
1016
- grid-template-columns: repeat(5, minmax(0, 1fr));
1017
- }
1018
- .xl\:grid-cols-6 {
1019
- grid-template-columns: repeat(6, minmax(0, 1fr));
1020
- }
1021
- .xl\:grid-cols-7 {
1022
- grid-template-columns: repeat(7, minmax(0, 1fr));
1023
- }
1024
- .xl\:grid-cols-8 {
1025
- grid-template-columns: repeat(8, minmax(0, 1fr));
1026
- }
1027
- .xl\:grid-cols-9 {
1028
- grid-template-columns: repeat(9, minmax(0, 1fr));
1029
- }
1030
- .xl\:grid-cols-10 {
1031
- grid-template-columns: repeat(10, minmax(0, 1fr));
1032
- }
1033
- .xl\:grid-cols-11 {
1034
- grid-template-columns: repeat(11, minmax(0, 1fr));
1035
- }
1036
- .xl\:grid-cols-12 {
1037
- grid-template-columns: repeat(12, minmax(0, 1fr));
1038
- }
1039
- }
1040
- @media (min-width: 1536px) {
1041
- .\32xl\:items-baseline {
1042
- align-items: baseline;
1043
- }
1044
- .\32xl\:items-center {
1045
- align-items: center;
1046
- }
1047
- .\32xl\:items-end {
1048
- align-items: flex-end;
1049
- }
1050
- .\32xl\:items-start {
1051
- align-items: flex-start;
1052
- }
1053
- .\32xl\:items-stretch {
1054
- align-items: stretch;
1055
- }
1056
- .\32xl\:flex-col {
1057
- flex-direction: column;
1058
- }
1059
- .\32xl\:flex-row {
1060
- flex-direction: row;
1061
- }
1062
- .\32xl\:grid-cols-1 {
1063
- grid-template-columns: repeat(1, minmax(0, 1fr));
1064
- }
1065
- .\32xl\:grid-cols-2 {
1066
- grid-template-columns: repeat(2, minmax(0, 1fr));
1067
- }
1068
- .\32xl\:grid-cols-3 {
1069
- grid-template-columns: repeat(3, minmax(0, 1fr));
1070
- }
1071
- .\32xl\:grid-cols-4 {
1072
- grid-template-columns: repeat(4, minmax(0, 1fr));
1073
- }
1074
- .\32xl\:grid-cols-5 {
1075
- grid-template-columns: repeat(5, minmax(0, 1fr));
1076
- }
1077
- .\32xl\:grid-cols-6 {
1078
- grid-template-columns: repeat(6, minmax(0, 1fr));
1079
- }
1080
- .\32xl\:grid-cols-7 {
1081
- grid-template-columns: repeat(7, minmax(0, 1fr));
1082
- }
1083
- .\32xl\:grid-cols-8 {
1084
- grid-template-columns: repeat(8, minmax(0, 1fr));
1085
- }
1086
- .\32xl\:grid-cols-9 {
1087
- grid-template-columns: repeat(9, minmax(0, 1fr));
1088
- }
1089
- .\32xl\:grid-cols-10 {
1090
- grid-template-columns: repeat(10, minmax(0, 1fr));
1091
- }
1092
- .\32xl\:grid-cols-11 {
1093
- grid-template-columns: repeat(11, minmax(0, 1fr));
1094
- }
1095
- .\32xl\:grid-cols-12 {
1096
- grid-template-columns: repeat(12, minmax(0, 1fr));
1097
- }
1098
- }
1099
-
1100
- /* === Aspect ratio === */
1101
- .aspect-square {
1102
- aspect-ratio: 1 / 1;
1103
- }
1104
- .aspect-video {
1105
- aspect-ratio: 16 / 9;
1106
- }
1107
- /* === Box sizing === */
1108
- .box-border {
1109
- box-sizing: border-box;
1110
- }
1111
- .box-content {
1112
- box-sizing: content-box;
1113
- }
1114
- /* === Display === */
1115
- .block {
1116
- display: block;
1117
- }
1118
- .flex {
1119
- display: flex;
1120
- }
1121
- .grid {
1122
- display: grid;
1123
- }
1124
- .hidden {
1125
- display: none;
1126
- }
1127
- .inline {
1128
- display: inline;
1129
- }
1130
- .inline-block {
1131
- display: inline-block;
1132
- }
1133
- .inline-flex {
1134
- display: inline-flex;
1135
- }
1136
- .inline-grid {
1137
- display: inline-grid;
1138
- }
1139
- /* === Overflow === */
1140
- .overflow-auto {
1141
- overflow: auto;
1142
- }
1143
- .overflow-hidden {
1144
- overflow: hidden;
1145
- }
1146
- .overflow-scroll {
1147
- overflow: scroll;
1148
- }
1149
- /* === Position === */
1150
- .absolute {
1151
- position: absolute;
1152
- }
1153
- .fixed {
1154
- position: fixed;
1155
- }
1156
- .static {
1157
- position: static;
1158
- }
1159
- .sticky {
1160
- position: sticky;
1161
- }
1162
- .relative {
1163
- position: relative;
1164
- }
1165
- /* === Top, end, bottom, start === */
1166
- .-bottom-xs {
1167
- bottom: calc(var(--lumo-space-xs) / -1);
1168
- }
1169
- .-bottom-s {
1170
- bottom: calc(var(--lumo-space-s) / -1);
1171
- }
1172
- .-bottom-m {
1173
- bottom: calc(var(--lumo-space-m) / -1);
1174
- }
1175
- .-bottom-l {
1176
- bottom: calc(var(--lumo-space-l) / -1);
1177
- }
1178
- .-bottom-xl {
1179
- bottom: calc(var(--lumo-space-xl) / -1);
1180
- }
1181
- .-bottom-full {
1182
- bottom: -100%;
1183
- }
1184
- .bottom-0 {
1185
- bottom: 0;
1186
- }
1187
- .bottom-xs {
1188
- bottom: var(--lumo-space-xs);
1189
- }
1190
- .bottom-s {
1191
- bottom: var(--lumo-space-s);
1192
- }
1193
- .bottom-m {
1194
- bottom: var(--lumo-space-m);
1195
- }
1196
- .bottom-l {
1197
- bottom: var(--lumo-space-l);
1198
- }
1199
- .bottom-xl {
1200
- bottom: var(--lumo-space-xl);
1201
- }
1202
- .bottom-auto {
1203
- bottom: auto;
1204
- }
1205
- .bottom-full {
1206
- bottom: 100%;
1207
- }
1208
- .-end-xs {
1209
- inset-inline-end: calc(var(--lumo-space-xs) / -1);
1210
- }
1211
- .-end-s {
1212
- inset-inline-end: calc(var(--lumo-space-s) / -1);
1213
- }
1214
- .-end-m {
1215
- inset-inline-end: calc(var(--lumo-space-m) / -1);
1216
- }
1217
- .-end-l {
1218
- inset-inline-end: calc(var(--lumo-space-l) / -1);
1219
- }
1220
- .-end-xl {
1221
- inset-inline-end: calc(var(--lumo-space-xl) / -1);
1222
- }
1223
- .-end-full {
1224
- inset-inline-end: -100%;
1225
- }
1226
- .end-0 {
1227
- inset-inline-end: 0;
1228
- }
1229
- .end-xs {
1230
- inset-inline-end: var(--lumo-space-xs);
1231
- }
1232
- .end-s {
1233
- inset-inline-end: var(--lumo-space-s);
1234
- }
1235
- .end-m {
1236
- inset-inline-end: var(--lumo-space-m);
1237
- }
1238
- .end-l {
1239
- inset-inline-end: var(--lumo-space-l);
1240
- }
1241
- .end-xl {
1242
- inset-inline-end: var(--lumo-space-xl);
1243
- }
1244
- .end-auto {
1245
- inset-inline-end: auto;
1246
- }
1247
- .end-full {
1248
- inset-inline-end: 100%;
1249
- }
1250
- .-start-xs {
1251
- inset-inline-start: calc(var(--lumo-space-xs) / -1);
1252
- }
1253
- .-start-s {
1254
- inset-inline-start: calc(var(--lumo-space-s) / -1);
1255
- }
1256
- .-start-m {
1257
- inset-inline-start: calc(var(--lumo-space-m) / -1);
1258
- }
1259
- .-start-l {
1260
- inset-inline-start: calc(var(--lumo-space-l) / -1);
1261
- }
1262
- .-start-xl {
1263
- inset-inline-start: calc(var(--lumo-space-xl) / -1);
1264
- }
1265
- .-start-full {
1266
- inset-inline-start: -100%;
1267
- }
1268
- .start-0 {
1269
- inset-inline-start: 0;
1270
- }
1271
- .start-xs {
1272
- inset-inline-start: var(--lumo-space-xs);
1273
- }
1274
- .start-s {
1275
- inset-inline-start: var(--lumo-space-s);
1276
- }
1277
- .start-m {
1278
- inset-inline-start: var(--lumo-space-m);
1279
- }
1280
- .start-l {
1281
- inset-inline-start: var(--lumo-space-l);
1282
- }
1283
- .start-xl {
1284
- inset-inline-start: var(--lumo-space-xl);
1285
- }
1286
- .start-auto {
1287
- inset-inline-start: auto;
1288
- }
1289
- .start-full {
1290
- inset-inline-start: 100%;
1291
- }
1292
- .-top-xs {
1293
- top: calc(var(--lumo-space-xs) / -1);
1294
- }
1295
- .-top-s {
1296
- top: calc(var(--lumo-space-s) / -1);
1297
- }
1298
- .-top-m {
1299
- top: calc(var(--lumo-space-m) / -1);
1300
- }
1301
- .-top-l {
1302
- top: calc(var(--lumo-space-l) / -1);
1303
- }
1304
- .-top-xl {
1305
- top: calc(var(--lumo-space-xl) / -1);
1306
- }
1307
- .-top-full {
1308
- top: -100%;
1309
- }
1310
- .top-0 {
1311
- top: 0;
1312
- }
1313
- .top-xs {
1314
- top: var(--lumo-space-xs);
1315
- }
1316
- .top-s {
1317
- top: var(--lumo-space-s);
1318
- }
1319
- .top-m {
1320
- top: var(--lumo-space-m);
1321
- }
1322
- .top-l {
1323
- top: var(--lumo-space-l);
1324
- }
1325
- .top-xl {
1326
- top: var(--lumo-space-xl);
1327
- }
1328
- .top-auto {
1329
- top: auto;
1330
- }
1331
- .top-full {
1332
- top: 100%;
1333
- }
1334
- /* === Visibility === */
1335
- .invisible {
1336
- visibility: hidden;
1337
- }
1338
- .visible {
1339
- visibility: visible;
1340
- }
1341
- /* === Z-index === */
1342
- .z-0 {
1343
- z-index: 0;
1344
- }
1345
- .z-10 {
1346
- z-index: 10;
1347
- }
1348
- .z-20 {
1349
- z-index: 20;
1350
- }
1351
- .z-30 {
1352
- z-index: 30;
1353
- }
1354
- .z-40 {
1355
- z-index: 40;
1356
- }
1357
- .z-50 {
1358
- z-index: 50;
1359
- }
1360
- .z-auto {
1361
- z-index: auto;
1362
- }
1363
- /* === Responsive design === */
1364
- @media (min-width: 640px) {
1365
- /* Display */
1366
- .sm\:block {
1367
- display: block;
1368
- }
1369
- .sm\:flex {
1370
- display: flex;
1371
- }
1372
- .sm\:grid {
1373
- display: grid;
1374
- }
1375
- .sm\:hidden {
1376
- display: none;
1377
- }
1378
- .sm\:inline {
1379
- display: inline;
1380
- }
1381
- .sm\:inline-block {
1382
- display: inline-block;
1383
- }
1384
- .sm\:inline-flex {
1385
- display: inline-flex;
1386
- }
1387
- .sm\:inline-grid {
1388
- display: inline-grid;
1389
- }
1390
- /* Position */
1391
- .sm\:absolute {
1392
- position: absolute;
1393
- }
1394
- .sm\:fixed {
1395
- position: fixed;
1396
- }
1397
- .sm\:relative {
1398
- position: relative;
1399
- }
1400
- .sm\:static {
1401
- position: static;
1402
- }
1403
- .sm\:sticky {
1404
- position: sticky;
1405
- }
1406
- }
1407
- @media (min-width: 768px) {
1408
- /* Display */
1409
- .md\:block {
1410
- display: block;
1411
- }
1412
- .md\:flex {
1413
- display: flex;
1414
- }
1415
- .md\:grid {
1416
- display: grid;
1417
- }
1418
- .md\:hidden {
1419
- display: none;
1420
- }
1421
- .md\:inline {
1422
- display: inline;
1423
- }
1424
- .md\:inline-block {
1425
- display: inline-block;
1426
- }
1427
- .md\:inline-flex {
1428
- display: inline-flex;
1429
- }
1430
- .md\:inline-grid {
1431
- display: inline-grid;
1432
- }
1433
- /* Position */
1434
- .md\:absolute {
1435
- position: absolute;
1436
- }
1437
- .md\:fixed {
1438
- position: fixed;
1439
- }
1440
- .md\:relative {
1441
- position: relative;
1442
- }
1443
- .md\:static {
1444
- position: static;
1445
- }
1446
- .md\:sticky {
1447
- position: sticky;
1448
- }
1449
- }
1450
- @media (min-width: 1024px) {
1451
- /* Display */
1452
- .lg\:block {
1453
- display: block;
1454
- }
1455
- .lg\:flex {
1456
- display: flex;
1457
- }
1458
- .lg\:grid {
1459
- display: grid;
1460
- }
1461
- .lg\:hidden {
1462
- display: none;
1463
- }
1464
- .lg\:inline {
1465
- display: inline;
1466
- }
1467
- .lg\:inline-block {
1468
- display: inline-block;
1469
- }
1470
- .lg\:inline-flex {
1471
- display: inline-flex;
1472
- }
1473
- .lg\:inline-grid {
1474
- display: inline-grid;
1475
- }
1476
- /* Position */
1477
- .lg\:absolute {
1478
- position: absolute;
1479
- }
1480
- .lg\:fixed {
1481
- position: fixed;
1482
- }
1483
- .lg\:relative {
1484
- position: relative;
1485
- }
1486
- .lg\:static {
1487
- position: static;
1488
- }
1489
- .lg\:sticky {
1490
- position: sticky;
1491
- }
1492
- }
1493
- @media (min-width: 1280px) {
1494
- /* Display */
1495
- .xl\:block {
1496
- display: block;
1497
- }
1498
- .xl\:flex {
1499
- display: flex;
1500
- }
1501
- .xl\:grid {
1502
- display: grid;
1503
- }
1504
- .xl\:hidden {
1505
- display: none;
1506
- }
1507
- .xl\:inline {
1508
- display: inline;
1509
- }
1510
- .xl\:inline-block {
1511
- display: inline-block;
1512
- }
1513
- .xl\:inline-flex {
1514
- display: inline-flex;
1515
- }
1516
- .xl\:inline-grid {
1517
- display: inline-grid;
1518
- }
1519
- /* Position */
1520
- .xl\:absolute {
1521
- position: absolute;
1522
- }
1523
- .xl\:fixed {
1524
- position: fixed;
1525
- }
1526
- .xl\:relative {
1527
- position: relative;
1528
- }
1529
- .xl\:static {
1530
- position: static;
1531
- }
1532
- .xl\:sticky {
1533
- position: sticky;
1534
- }
1535
- }
1536
- @media (min-width: 1536px) {
1537
- /* Display */
1538
- .\32xl\:block {
1539
- display: block;
1540
- }
1541
- .\32xl\:flex {
1542
- display: flex;
1543
- }
1544
- .\32xl\:grid {
1545
- display: grid;
1546
- }
1547
- .\32xl\:hidden {
1548
- display: none;
1549
- }
1550
- .\32xl\:inline {
1551
- display: inline;
1552
- }
1553
- .\32xl\:inline-block {
1554
- display: inline-block;
1555
- }
1556
- .\32xl\:inline-flex {
1557
- display: inline-flex;
1558
- }
1559
- .\32xl\:inline-grid {
1560
- display: inline-grid;
1561
- }
1562
- /* Position */
1563
- .\32xl\:absolute {
1564
- position: absolute;
1565
- }
1566
- .\32xl\:fixed {
1567
- position: fixed;
1568
- }
1569
- .\32xl\:relative {
1570
- position: relative;
1571
- }
1572
- .\32xl\:static {
1573
- position: static;
1574
- }
1575
- .\32xl\:sticky {
1576
- position: sticky;
1577
- }
1578
- }
1579
-
1580
- /* === Box shadow === */
1581
- .shadow-none {
1582
- box-shadow: none;
1583
- }
1584
- .shadow-xs {
1585
- box-shadow: var(--lumo-box-shadow-xs);
1586
- }
1587
- .shadow-s {
1588
- box-shadow: var(--lumo-box-shadow-s);
1589
- }
1590
- .shadow-m {
1591
- box-shadow: var(--lumo-box-shadow-m);
1592
- }
1593
- .shadow-l {
1594
- box-shadow: var(--lumo-box-shadow-l);
1595
- }
1596
- .shadow-xl {
1597
- box-shadow: var(--lumo-box-shadow-xl);
1598
- }
1599
-
1600
- /* === Height === */
1601
- .h-0 {
1602
- height: 0;
1603
- }
1604
- .h-xs {
1605
- height: var(--lumo-size-xs);
1606
- }
1607
- .h-s {
1608
- height: var(--lumo-size-s);
1609
- }
1610
- .h-m {
1611
- height: var(--lumo-size-m);
1612
- }
1613
- .h-l {
1614
- height: var(--lumo-size-l);
1615
- }
1616
- .h-xl {
1617
- height: var(--lumo-size-xl);
1618
- }
1619
- .h-auto {
1620
- height: auto;
1621
- }
1622
- .h-full {
1623
- height: 100%;
1624
- }
1625
- .h-screen {
1626
- height: 100vh;
1627
- }
1628
- /* === Height (max) === */
1629
- .max-h-full {
1630
- max-height: 100%;
1631
- }
1632
- .max-h-screen {
1633
- max-height: 100vh;
1634
- }
1635
- /* === Height (min) === */
1636
- .min-h-0 {
1637
- min-height: 0;
1638
- }
1639
- .min-h-full {
1640
- min-height: 100%;
1641
- }
1642
- .min-h-screen {
1643
- min-height: 100vh;
1644
- }
1645
- /* === Icon sizing === */
1646
- .icon-s {
1647
- height: var(--lumo-icon-size-s);
1648
- width: var(--lumo-icon-size-s);
1649
- }
1650
- .icon-m {
1651
- height: var(--lumo-icon-size-m);
1652
- width: var(--lumo-icon-size-m);
1653
- }
1654
- .icon-l {
1655
- height: var(--lumo-icon-size-l);
1656
- width: var(--lumo-icon-size-l);
1657
- }
1658
- /* === Width === */
1659
- .w-xs {
1660
- width: var(--lumo-size-xs);
1661
- }
1662
- .w-s {
1663
- width: var(--lumo-size-s);
1664
- }
1665
- .w-m {
1666
- width: var(--lumo-size-m);
1667
- }
1668
- .w-l {
1669
- width: var(--lumo-size-l);
1670
- }
1671
- .w-xl {
1672
- width: var(--lumo-size-xl);
1673
- }
1674
- .w-auto {
1675
- width: auto;
1676
- }
1677
- .w-full {
1678
- width: 100%;
1679
- }
1680
- /* === Width (max) === */
1681
- .max-w-full {
1682
- max-width: 100%;
1683
- }
1684
- .max-w-screen-sm {
1685
- max-width: 640px;
1686
- }
1687
- .max-w-screen-md {
1688
- max-width: 768px;
1689
- }
1690
- .max-w-screen-lg {
1691
- max-width: 1024px;
1692
- }
1693
- .max-w-screen-xl {
1694
- max-width: 1280px;
1695
- }
1696
- .max-w-screen-2xl {
1697
- max-width: 1536px;
1698
- }
1699
- /* === Width (min) === */
1700
- .min-w-0 {
1701
- min-width: 0;
1702
- }
1703
- .min-w-full {
1704
- min-width: 100%;
1705
- }
1706
-
1707
- /* === Margin === */
1708
- .-m-xs {
1709
- margin: calc(var(--lumo-space-xs) / -1);
1710
- }
1711
- .-m-s {
1712
- margin: calc(var(--lumo-space-s) / -1);
1713
- }
1714
- .-m-m {
1715
- margin: calc(var(--lumo-space-m) / -1);
1716
- }
1717
- .-m-l {
1718
- margin: calc(var(--lumo-space-l) / -1);
1719
- }
1720
- .-m-xl {
1721
- margin: calc(var(--lumo-space-xl) / -1);
1722
- }
1723
- .m-0 {
1724
- margin: 0;
1725
- }
1726
- .m-xs {
1727
- margin: var(--lumo-space-xs);
1728
- }
1729
- .m-s {
1730
- margin: var(--lumo-space-s);
1731
- }
1732
- .m-m {
1733
- margin: var(--lumo-space-m);
1734
- }
1735
- .m-l {
1736
- margin: var(--lumo-space-l);
1737
- }
1738
- .m-xl {
1739
- margin: var(--lumo-space-xl);
1740
- }
1741
- .m-auto {
1742
- margin: auto;
1743
- }
1744
- /* === Margin (bottom) === */
1745
- .-mb-xs {
1746
- margin-bottom: calc(var(--lumo-space-xs) / -1);
1747
- }
1748
- .-mb-s {
1749
- margin-bottom: calc(var(--lumo-space-s) / -1);
1750
- }
1751
- .-mb-m {
1752
- margin-bottom: calc(var(--lumo-space-m) / -1);
1753
- }
1754
- .-mb-l {
1755
- margin-bottom: calc(var(--lumo-space-l) / -1);
1756
- }
1757
- .-mb-xl {
1758
- margin-bottom: calc(var(--lumo-space-xl) / -1);
1759
- }
1760
- .mb-0 {
1761
- margin-bottom: 0;
1762
- }
1763
- .mb-xs {
1764
- margin-bottom: var(--lumo-space-xs);
1765
- }
1766
- .mb-s {
1767
- margin-bottom: var(--lumo-space-s);
1768
- }
1769
- .mb-m {
1770
- margin-bottom: var(--lumo-space-m);
1771
- }
1772
- .mb-l {
1773
- margin-bottom: var(--lumo-space-l);
1774
- }
1775
- .mb-xl {
1776
- margin-bottom: var(--lumo-space-xl);
1777
- }
1778
- .mb-auto {
1779
- margin-bottom: auto;
1780
- }
1781
- /* === Margin (end) === */
1782
- .-me-xs {
1783
- margin-inline-end: calc(var(--lumo-space-xs) / -1);
1784
- }
1785
- .-me-s {
1786
- margin-inline-end: calc(var(--lumo-space-s) / -1);
1787
- }
1788
- .-me-m {
1789
- margin-inline-end: calc(var(--lumo-space-m) / -1);
1790
- }
1791
- .-me-l {
1792
- margin-inline-end: calc(var(--lumo-space-l) / -1);
1793
- }
1794
- .-me-xl {
1795
- margin-inline-end: calc(var(--lumo-space-xl) / -1);
1796
- }
1797
- .me-0 {
1798
- margin-inline-end: 0;
1799
- }
1800
- .me-xs {
1801
- margin-inline-end: var(--lumo-space-xs);
1802
- }
1803
- .me-s {
1804
- margin-inline-end: var(--lumo-space-s);
1805
- }
1806
- .me-m {
1807
- margin-inline-end: var(--lumo-space-m);
1808
- }
1809
- .me-l {
1810
- margin-inline-end: var(--lumo-space-l);
1811
- }
1812
- .me-xl {
1813
- margin-inline-end: var(--lumo-space-xl);
1814
- }
1815
- .me-auto {
1816
- margin-inline-end: auto;
1817
- }
1818
- /* === Margin (horizontal) === */
1819
- .-mx-xs {
1820
- margin-inline: calc(var(--lumo-space-xs) / -1);
1821
- }
1822
- .-mx-s {
1823
- margin-inline: calc(var(--lumo-space-s) / -1);
1824
- }
1825
- .-mx-m {
1826
- margin-inline: calc(var(--lumo-space-m) / -1);
1827
- }
1828
- .-mx-l {
1829
- margin-inline: calc(var(--lumo-space-l) / -1);
1830
- }
1831
- .-mx-xl {
1832
- margin-inline: calc(var(--lumo-space-xl) / -1);
1833
- }
1834
- .mx-0 {
1835
- margin-inline: 0;
1836
- }
1837
- .mx-xs {
1838
- margin-inline: var(--lumo-space-xs);
1839
- }
1840
- .mx-s {
1841
- margin-inline: var(--lumo-space-s);
1842
- }
1843
- .mx-m {
1844
- margin-inline: var(--lumo-space-m);
1845
- }
1846
- .mx-l {
1847
- margin-inline: var(--lumo-space-l);
1848
- }
1849
- .mx-xl {
1850
- margin-inline: var(--lumo-space-xl);
1851
- }
1852
- .mx-auto {
1853
- margin-inline: auto;
1854
- }
1855
- /* === Margin (left) === */
1856
- .-ml-xs {
1857
- margin-left: calc(var(--lumo-space-xs) / -1);
1858
- }
1859
- .-ml-s {
1860
- margin-left: calc(var(--lumo-space-s) / -1);
1861
- }
1862
- .-ml-m {
1863
- margin-left: calc(var(--lumo-space-m) / -1);
1864
- }
1865
- .-ml-l {
1866
- margin-left: calc(var(--lumo-space-l) / -1);
1867
- }
1868
- .-ml-xl {
1869
- margin-left: calc(var(--lumo-space-xl) / -1);
1870
- }
1871
- .ml-0 {
1872
- margin-left: 0;
1873
- }
1874
- .ml-xs {
1875
- margin-left: var(--lumo-space-xs);
1876
- }
1877
- .ml-s {
1878
- margin-left: var(--lumo-space-s);
1879
- }
1880
- .ml-m {
1881
- margin-left: var(--lumo-space-m);
1882
- }
1883
- .ml-l {
1884
- margin-left: var(--lumo-space-l);
1885
- }
1886
- .ml-xl {
1887
- margin-left: var(--lumo-space-xl);
1888
- }
1889
- .ml-auto {
1890
- margin-left: auto;
1891
- }
1892
- /* === Margin (right) === */
1893
- .-mr-xs {
1894
- margin-right: calc(var(--lumo-space-xs) / -1);
1895
- }
1896
- .-mr-s {
1897
- margin-right: calc(var(--lumo-space-s) / -1);
1898
- }
1899
- .-mr-m {
1900
- margin-right: calc(var(--lumo-space-m) / -1);
1901
- }
1902
- .-mr-l {
1903
- margin-right: calc(var(--lumo-space-l) / -1);
1904
- }
1905
- .-mr-xl {
1906
- margin-right: calc(var(--lumo-space-xl) / -1);
1907
- }
1908
- .mr-0 {
1909
- margin-right: 0;
1910
- }
1911
- .mr-xs {
1912
- margin-right: var(--lumo-space-xs);
1913
- }
1914
- .mr-s {
1915
- margin-right: var(--lumo-space-s);
1916
- }
1917
- .mr-m {
1918
- margin-right: var(--lumo-space-m);
1919
- }
1920
- .mr-l {
1921
- margin-right: var(--lumo-space-l);
1922
- }
1923
- .mr-xl {
1924
- margin-right: var(--lumo-space-xl);
1925
- }
1926
- .mr-auto {
1927
- margin-right: auto;
1928
- }
1929
- /* === Margin (start) === */
1930
- .-ms-xs {
1931
- margin-inline-start: calc(var(--lumo-space-xs) / -1);
1932
- }
1933
- .-ms-s {
1934
- margin-inline-start: calc(var(--lumo-space-s) / -1);
1935
- }
1936
- .-ms-m {
1937
- margin-inline-start: calc(var(--lumo-space-m) / -1);
1938
- }
1939
- .-ms-l {
1940
- margin-inline-start: calc(var(--lumo-space-l) / -1);
1941
- }
1942
- .-ms-xl {
1943
- margin-inline-start: calc(var(--lumo-space-xl) / -1);
1944
- }
1945
- .ms-0 {
1946
- margin-inline-start: 0;
1947
- }
1948
- .ms-xs {
1949
- margin-inline-start: var(--lumo-space-xs);
1950
- }
1951
- .ms-s {
1952
- margin-inline-start: var(--lumo-space-s);
1953
- }
1954
- .ms-m {
1955
- margin-inline-start: var(--lumo-space-m);
1956
- }
1957
- .ms-l {
1958
- margin-inline-start: var(--lumo-space-l);
1959
- }
1960
- .ms-xl {
1961
- margin-inline-start: var(--lumo-space-xl);
1962
- }
1963
- .ms-auto {
1964
- margin-inline-start: auto;
1965
- }
1966
- /* === Margin (top) === */
1967
- .-mt-xs {
1968
- margin-top: calc(var(--lumo-space-xs) / -1);
1969
- }
1970
- .-mt-s {
1971
- margin-top: calc(var(--lumo-space-s) / -1);
1972
- }
1973
- .-mt-m {
1974
- margin-top: calc(var(--lumo-space-m) / -1);
1975
- }
1976
- .-mt-l {
1977
- margin-top: calc(var(--lumo-space-l) / -1);
1978
- }
1979
- .-mt-xl {
1980
- margin-top: calc(var(--lumo-space-xl) / -1);
1981
- }
1982
- .mt-0 {
1983
- margin-top: 0;
1984
- }
1985
- .mt-xs {
1986
- margin-top: var(--lumo-space-xs);
1987
- }
1988
- .mt-s {
1989
- margin-top: var(--lumo-space-s);
1990
- }
1991
- .mt-m {
1992
- margin-top: var(--lumo-space-m);
1993
- }
1994
- .mt-l {
1995
- margin-top: var(--lumo-space-l);
1996
- }
1997
- .mt-xl {
1998
- margin-top: var(--lumo-space-xl);
1999
- }
2000
- .mt-auto {
2001
- margin-top: auto;
2002
- }
2003
- /* === Margin (vertical) === */
2004
- .-my-xs {
2005
- margin-block: calc(var(--lumo-space-xs) / -1);
2006
- }
2007
- .-my-s {
2008
- margin-block: calc(var(--lumo-space-s) / -1);
2009
- }
2010
- .-my-m {
2011
- margin-block: calc(var(--lumo-space-m) / -1);
2012
- }
2013
- .-my-l {
2014
- margin-block: calc(var(--lumo-space-l) / -1);
2015
- }
2016
- .-my-xl {
2017
- margin-block: calc(var(--lumo-space-xl) / -1);
2018
- }
2019
- .my-0 {
2020
- margin-block: 0;
2021
- }
2022
- .my-xs {
2023
- margin-block: var(--lumo-space-xs);
2024
- }
2025
- .my-s {
2026
- margin-block: var(--lumo-space-s);
2027
- }
2028
- .my-m {
2029
- margin-block: var(--lumo-space-m);
2030
- }
2031
- .my-l {
2032
- margin-block: var(--lumo-space-l);
2033
- }
2034
- .my-xl {
2035
- margin-block: var(--lumo-space-xl);
2036
- }
2037
- .my-auto {
2038
- margin-block: auto;
2039
- }
2040
- /* === Padding === */
2041
- .p-0 {
2042
- padding: 0;
2043
- }
2044
- .p-xs {
2045
- padding: var(--lumo-space-xs);
2046
- }
2047
- .p-s {
2048
- padding: var(--lumo-space-s);
2049
- }
2050
- .p-m {
2051
- padding: var(--lumo-space-m);
2052
- }
2053
- .p-l {
2054
- padding: var(--lumo-space-l);
2055
- }
2056
- .p-xl {
2057
- padding: var(--lumo-space-xl);
2058
- }
2059
- /* === Padding (bottom) === */
2060
- .pb-0 {
2061
- padding-bottom: 0;
2062
- }
2063
- .pb-xs {
2064
- padding-bottom: var(--lumo-space-xs);
2065
- }
2066
- .pb-s {
2067
- padding-bottom: var(--lumo-space-s);
2068
- }
2069
- .pb-m {
2070
- padding-bottom: var(--lumo-space-m);
2071
- }
2072
- .pb-l {
2073
- padding-bottom: var(--lumo-space-l);
2074
- }
2075
- .pb-xl {
2076
- padding-bottom: var(--lumo-space-xl);
2077
- }
2078
- /* === Padding (end) === */
2079
- .pe-0 {
2080
- padding-inline-end: 0;
2081
- }
2082
- .pe-xs {
2083
- padding-inline-end: var(--lumo-space-xs);
2084
- }
2085
- .pe-s {
2086
- padding-inline-end: var(--lumo-space-s);
2087
- }
2088
- .pe-m {
2089
- padding-inline-end: var(--lumo-space-m);
2090
- }
2091
- .pe-l {
2092
- padding-inline-end: var(--lumo-space-l);
2093
- }
2094
- .pe-xl {
2095
- padding-inline-end: var(--lumo-space-xl);
2096
- }
2097
- /* === Padding (horizontal) === */
2098
- .px-0 {
2099
- padding-left: 0;
2100
- padding-right: 0;
2101
- }
2102
- .px-xs {
2103
- padding-left: var(--lumo-space-xs);
2104
- padding-right: var(--lumo-space-xs);
2105
- }
2106
- .px-s {
2107
- padding-left: var(--lumo-space-s);
2108
- padding-right: var(--lumo-space-s);
2109
- }
2110
- .px-m {
2111
- padding-left: var(--lumo-space-m);
2112
- padding-right: var(--lumo-space-m);
2113
- }
2114
- .px-l {
2115
- padding-left: var(--lumo-space-l);
2116
- padding-right: var(--lumo-space-l);
2117
- }
2118
- .px-xl {
2119
- padding-left: var(--lumo-space-xl);
2120
- padding-right: var(--lumo-space-xl);
2121
- }
2122
- /* === Padding (left) === */
2123
- .pl-0 {
2124
- padding-left: 0;
2125
- }
2126
- .pl-xs {
2127
- padding-left: var(--lumo-space-xs);
2128
- }
2129
- .pl-s {
2130
- padding-left: var(--lumo-space-s);
2131
- }
2132
- .pl-m {
2133
- padding-left: var(--lumo-space-m);
2134
- }
2135
- .pl-l {
2136
- padding-left: var(--lumo-space-l);
2137
- }
2138
- .pl-xl {
2139
- padding-left: var(--lumo-space-xl);
2140
- }
2141
- /* === Padding (right) === */
2142
- .pr-0 {
2143
- padding-right: 0;
2144
- }
2145
- .pr-xs {
2146
- padding-right: var(--lumo-space-xs);
2147
- }
2148
- .pr-s {
2149
- padding-right: var(--lumo-space-s);
2150
- }
2151
- .pr-m {
2152
- padding-right: var(--lumo-space-m);
2153
- }
2154
- .pr-l {
2155
- padding-right: var(--lumo-space-l);
2156
- }
2157
- .pr-xl {
2158
- padding-right: var(--lumo-space-xl);
2159
- }
2160
- /* === Padding (start) === */
2161
- .ps-0 {
2162
- padding-inline-start: 0;
2163
- }
2164
- .ps-xs {
2165
- padding-inline-start: var(--lumo-space-xs);
2166
- }
2167
- .ps-s {
2168
- padding-inline-start: var(--lumo-space-s);
2169
- }
2170
- .ps-m {
2171
- padding-inline-start: var(--lumo-space-m);
2172
- }
2173
- .ps-l {
2174
- padding-inline-start: var(--lumo-space-l);
2175
- }
2176
- .ps-xl {
2177
- padding-inline-start: var(--lumo-space-xl);
2178
- }
2179
- /* === Padding (top) === */
2180
- .pt-0 {
2181
- padding-top: 0;
2182
- }
2183
- .pt-xs {
2184
- padding-top: var(--lumo-space-xs);
2185
- }
2186
- .pt-s {
2187
- padding-top: var(--lumo-space-s);
2188
- }
2189
- .pt-m {
2190
- padding-top: var(--lumo-space-m);
2191
- }
2192
- .pt-l {
2193
- padding-top: var(--lumo-space-l);
2194
- }
2195
- .pt-xl {
2196
- padding-top: var(--lumo-space-xl);
2197
- }
2198
- /* === Padding (vertical) === */
2199
- .py-0 {
2200
- padding-bottom: 0;
2201
- padding-top: 0;
2202
- }
2203
- .py-xs {
2204
- padding-bottom: var(--lumo-space-xs);
2205
- padding-top: var(--lumo-space-xs);
2206
- }
2207
- .py-s {
2208
- padding-bottom: var(--lumo-space-s);
2209
- padding-top: var(--lumo-space-s);
2210
- }
2211
- .py-m {
2212
- padding-bottom: var(--lumo-space-m);
2213
- padding-top: var(--lumo-space-m);
2214
- }
2215
- .py-l {
2216
- padding-bottom: var(--lumo-space-l);
2217
- padding-top: var(--lumo-space-l);
2218
- }
2219
- .py-xl {
2220
- padding-bottom: var(--lumo-space-xl);
2221
- padding-top: var(--lumo-space-xl);
2222
- }
2223
-
2224
- .transition {
2225
- transition-property: -webkit-backdrop-filter, backdrop-filter, background-color, border-color, box-shadow, color,
2226
- fill, filter, opacity, rotate, scale, stroke, text-decoration-color, transform, translate;
2227
- transition-timing-function: var(--lumo-utility-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
2228
- transition-duration: var(--lumo-utility-transition-duration, 150ms);
2229
- }
2230
- .transition-all {
2231
- transition-property: all;
2232
- transition-timing-function: var(--lumo-utility-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
2233
- transition-duration: var(--lumo-utility-transition-duration, 150ms);
2234
- }
2235
- .transition-colors {
2236
- transition-property: background-color, border-color, color, fill, stroke, text-decoration-color;
2237
- transition-timing-function: var(--lumo-utility-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
2238
- transition-duration: var(--lumo-utility-transition-duration, 150ms);
2239
- }
2240
- .transition-opacity {
2241
- transition-property: opacity;
2242
- transition-timing-function: var(--lumo-utility-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
2243
- transition-duration: var(--lumo-utility-transition-duration, 150ms);
2244
- }
2245
- .transition-shadow {
2246
- transition-property: box-shadow;
2247
- transition-timing-function: var(--lumo-utility-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
2248
- transition-duration: var(--lumo-utility-transition-duration, 150ms);
2249
- }
2250
- .transition-transform {
2251
- transition-property: rotate, scale, transform, translate;
2252
- transition-timing-function: var(--lumo-utility-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
2253
- transition-duration: var(--lumo-utility-transition-duration, 150ms);
2254
- }
2255
- .transition-none {
2256
- transition-property: none;
2257
- }
2258
-
2259
- /* === Font size === */
2260
- .text-2xs {
2261
- font-size: var(--lumo-font-size-xxs);
2262
- }
2263
- .text-xs {
2264
- font-size: var(--lumo-font-size-xs);
2265
- }
2266
- .text-s {
2267
- font-size: var(--lumo-font-size-s);
2268
- }
2269
- .text-m {
2270
- font-size: var(--lumo-font-size-m);
2271
- }
2272
- .text-l {
2273
- font-size: var(--lumo-font-size-l);
2274
- }
2275
- .text-xl {
2276
- font-size: var(--lumo-font-size-xl);
2277
- }
2278
- .text-2xl {
2279
- font-size: var(--lumo-font-size-xxl);
2280
- }
2281
- .text-3xl {
2282
- font-size: var(--lumo-font-size-xxxl);
2283
- }
2284
- /* === Font weight === */
2285
- .font-thin {
2286
- font-weight: 100;
2287
- }
2288
- .font-extralight {
2289
- font-weight: 200;
2290
- }
2291
- .font-light {
2292
- font-weight: 300;
2293
- }
2294
- .font-normal {
2295
- font-weight: 400;
2296
- }
2297
- .font-medium {
2298
- font-weight: 500;
2299
- }
2300
- .font-semibold {
2301
- font-weight: 600;
2302
- }
2303
- .font-bold {
2304
- font-weight: 700;
2305
- }
2306
- .font-extrabold {
2307
- font-weight: 800;
2308
- }
2309
- .font-black {
2310
- font-weight: 900;
2311
- }
2312
- /* === Line clamp === */
2313
- [class*='line-clamp-'] {
2314
- display: -webkit-box;
2315
- overflow: hidden;
2316
- -webkit-box-orient: vertical;
2317
- }
2318
- .line-clamp-1 {
2319
- -webkit-line-clamp: 1;
2320
- }
2321
- .line-clamp-2 {
2322
- -webkit-line-clamp: 2;
2323
- }
2324
- .line-clamp-3 {
2325
- -webkit-line-clamp: 3;
2326
- }
2327
- .line-clamp-4 {
2328
- -webkit-line-clamp: 4;
2329
- }
2330
- .line-clamp-5 {
2331
- -webkit-line-clamp: 5;
2332
- }
2333
- .line-clamp-6 {
2334
- -webkit-line-clamp: 6;
2335
- }
2336
- /* === Line height === */
2337
- .leading-none {
2338
- line-height: 1;
2339
- }
2340
- .leading-xs {
2341
- line-height: var(--lumo-line-height-xs);
2342
- }
2343
- .leading-s {
2344
- line-height: var(--lumo-line-height-s);
2345
- }
2346
- .leading-m {
2347
- line-height: var(--lumo-line-height-m);
2348
- }
2349
- /* === List style type === */
2350
- .list-none {
2351
- list-style-type: none;
2352
- }
2353
- /* === Text alignment === */
2354
- .text-left {
2355
- text-align: left;
2356
- }
2357
- .text-center {
2358
- text-align: center;
2359
- }
2360
- .text-right {
2361
- text-align: right;
2362
- }
2363
- .text-justify {
2364
- text-align: justify;
2365
- }
2366
- /* === Text color === */
2367
- .text-header {
2368
- color: var(--lumo-header-text-color);
2369
- }
2370
- .text-body {
2371
- color: var(--lumo-body-text-color);
2372
- }
2373
- .text-secondary {
2374
- color: var(--lumo-secondary-text-color);
2375
- }
2376
- .text-tertiary {
2377
- color: var(--lumo-tertiary-text-color);
2378
- }
2379
- .text-disabled {
2380
- color: var(--lumo-disabled-text-color);
2381
- }
2382
- .text-primary {
2383
- color: var(--lumo-primary-text-color);
2384
- }
2385
- .text-primary-contrast {
2386
- color: var(--lumo-primary-contrast-color);
2387
- }
2388
- .text-error {
2389
- color: var(--lumo-error-text-color);
2390
- }
2391
- .text-error-contrast {
2392
- color: var(--lumo-error-contrast-color);
2393
- }
2394
- .text-success {
2395
- color: var(--lumo-success-text-color);
2396
- }
2397
- .text-success-contrast {
2398
- color: var(--lumo-success-contrast-color);
2399
- }
2400
- .text-warning {
2401
- color: var(--lumo-warning-text-color);
2402
- }
2403
- .text-warning-contrast {
2404
- color: var(--lumo-warning-contrast-color);
2405
- }
2406
- /* == Text decoration === */
2407
- .line-through {
2408
- text-decoration-line: line-through;
2409
- }
2410
- .no-underline {
2411
- text-decoration-line: none;
2412
- }
2413
- .underline {
2414
- text-decoration-line: underline;
2415
- }
2416
- /* === Text overflow === */
2417
- .overflow-clip {
2418
- text-overflow: clip;
2419
- }
2420
- .overflow-ellipsis {
2421
- text-overflow: ellipsis;
2422
- }
2423
- /* === Text transform === */
2424
- .capitalize {
2425
- text-transform: capitalize;
2426
- }
2427
- .lowercase {
2428
- text-transform: lowercase;
2429
- }
2430
- .uppercase {
2431
- text-transform: uppercase;
2432
- }
2433
- /* === Whitespace === */
2434
- .whitespace-normal {
2435
- white-space: normal;
2436
- }
2437
- .whitespace-break-spaces {
2438
- white-space: normal;
2439
- }
2440
- .whitespace-nowrap {
2441
- white-space: nowrap;
2442
- }
2443
- .whitespace-pre {
2444
- white-space: pre;
2445
- }
2446
- .whitespace-pre-line {
2447
- white-space: pre-line;
2448
- }
2449
- .whitespace-pre-wrap {
2450
- white-space: pre-wrap;
2451
- }
2452
- /* === Responsive design === */
2453
- @media (min-width: 640px) {
2454
- .sm\:text-2xs {
2455
- font-size: var(--lumo-font-size-xxs);
2456
- }
2457
- .sm\:text-xs {
2458
- font-size: var(--lumo-font-size-xs);
2459
- }
2460
- .sm\:text-s {
2461
- font-size: var(--lumo-font-size-s);
2462
- }
2463
- .sm\:text-m {
2464
- font-size: var(--lumo-font-size-m);
2465
- }
2466
- .sm\:text-l {
2467
- font-size: var(--lumo-font-size-l);
2468
- }
2469
- .sm\:text-xl {
2470
- font-size: var(--lumo-font-size-xl);
2471
- }
2472
- .sm\:text-2xl {
2473
- font-size: var(--lumo-font-size-xxl);
2474
- }
2475
- .sm\:text-3xl {
2476
- font-size: var(--lumo-font-size-xxxl);
2477
- }
2478
- }
2479
- @media (min-width: 768px) {
2480
- .md\:text-2xs {
2481
- font-size: var(--lumo-font-size-xxs);
2482
- }
2483
- .md\:text-xs {
2484
- font-size: var(--lumo-font-size-xs);
2485
- }
2486
- .md\:text-s {
2487
- font-size: var(--lumo-font-size-s);
2488
- }
2489
- .md\:text-m {
2490
- font-size: var(--lumo-font-size-m);
2491
- }
2492
- .md\:text-l {
2493
- font-size: var(--lumo-font-size-l);
2494
- }
2495
- .md\:text-xl {
2496
- font-size: var(--lumo-font-size-xl);
2497
- }
2498
- .md\:text-2xl {
2499
- font-size: var(--lumo-font-size-xxl);
2500
- }
2501
- .md\:text-3xl {
2502
- font-size: var(--lumo-font-size-xxxl);
2503
- }
2504
- }
2505
- @media (min-width: 1024px) {
2506
- .lg\:text-2xs {
2507
- font-size: var(--lumo-font-size-xxs);
2508
- }
2509
- .lg\:text-xs {
2510
- font-size: var(--lumo-font-size-xs);
2511
- }
2512
- .lg\:text-s {
2513
- font-size: var(--lumo-font-size-s);
2514
- }
2515
- .lg\:text-m {
2516
- font-size: var(--lumo-font-size-m);
2517
- }
2518
- .lg\:text-l {
2519
- font-size: var(--lumo-font-size-l);
2520
- }
2521
- .lg\:text-xl {
2522
- font-size: var(--lumo-font-size-xl);
2523
- }
2524
- .lg\:text-2xl {
2525
- font-size: var(--lumo-font-size-xxl);
2526
- }
2527
- .lg\:text-3xl {
2528
- font-size: var(--lumo-font-size-xxxl);
2529
- }
2530
- }
2531
- @media (min-width: 1280px) {
2532
- .xl\:text-2xs {
2533
- font-size: var(--lumo-font-size-xxs);
2534
- }
2535
- .xl\:text-xs {
2536
- font-size: var(--lumo-font-size-xs);
2537
- }
2538
- .xl\:text-s {
2539
- font-size: var(--lumo-font-size-s);
2540
- }
2541
- .xl\:text-m {
2542
- font-size: var(--lumo-font-size-m);
2543
- }
2544
- .xl\:text-l {
2545
- font-size: var(--lumo-font-size-l);
2546
- }
2547
- .xl\:text-xl {
2548
- font-size: var(--lumo-font-size-xl);
2549
- }
2550
- .xl\:text-2xl {
2551
- font-size: var(--lumo-font-size-xxl);
2552
- }
2553
- .xl\:text-3xl {
2554
- font-size: var(--lumo-font-size-xxxl);
2555
- }
2556
- }
2557
- @media (min-width: 1536px) {
2558
- .\32xl\:text-2xs {
2559
- font-size: var(--lumo-font-size-xxs);
2560
- }
2561
- .\32xl\:text-xs {
2562
- font-size: var(--lumo-font-size-xs);
2563
- }
2564
- .\32xl\:text-s {
2565
- font-size: var(--lumo-font-size-s);
2566
- }
2567
- .\32xl\:text-m {
2568
- font-size: var(--lumo-font-size-m);
2569
- }
2570
- .\32xl\:text-l {
2571
- font-size: var(--lumo-font-size-l);
2572
- }
2573
- .\32xl\:text-xl {
2574
- font-size: var(--lumo-font-size-xl);
2575
- }
2576
- .\32xl\:text-2xl {
2577
- font-size: var(--lumo-font-size-xxl);
2578
- }
2579
- .\32xl\:text-3xl {
2580
- font-size: var(--lumo-font-size-xxxl);
2581
- }
2582
- }