@digigov/css 0.5.0 → 0.7.0

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 (61) hide show
  1. package/CHANGELOG.json +73 -0
  2. package/CHANGELOG.md +38 -1
  3. package/colors/color-values.js +57 -87
  4. package/colors/index.js +4 -15
  5. package/dist/base/index.css +5 -3
  6. package/dist/base.css +5 -3
  7. package/dist/base.js +1 -1
  8. package/dist/components.css +1 -1
  9. package/dist/components.js +1 -1
  10. package/dist/digigov.css +5 -3
  11. package/dist/utilities/index.css +1 -1
  12. package/dist/utilities.css +1 -1
  13. package/dist/utilities.js +1 -1
  14. package/package.json +5 -4
  15. package/postcss.config.js +1 -1
  16. package/src/base/base.css +1 -0
  17. package/src/base/index.css +8 -0
  18. package/src/base/postcss.config.js +31 -0
  19. package/src/base/tailwind.config.js +11 -0
  20. package/src/components/accordion.css +57 -0
  21. package/src/components/admin-form.css +5 -0
  22. package/src/components/admin-header.css +9 -0
  23. package/src/components/admin-layout.css +56 -0
  24. package/src/components/breadcrumps.css +36 -0
  25. package/src/components/button.css +72 -0
  26. package/src/components/card.css +24 -0
  27. package/src/components/checkboxes.css +67 -0
  28. package/src/components/components.css +2 -0
  29. package/src/components/details.css +22 -0
  30. package/src/components/filter.css +129 -0
  31. package/src/components/footer.css +75 -0
  32. package/src/components/form.css +111 -0
  33. package/src/components/header.css +54 -0
  34. package/src/components/index.css +24 -0
  35. package/src/components/layout.css +61 -0
  36. package/src/components/misc.css +84 -0
  37. package/src/components/nav.css +83 -0
  38. package/src/components/notification-banner.css +44 -0
  39. package/src/components/panel.css +12 -0
  40. package/src/components/phase-banner.css +17 -0
  41. package/src/components/postcss.config.js +20 -0
  42. package/src/components/radios.css +61 -0
  43. package/src/components/summary-list.css +45 -0
  44. package/src/components/table.css +108 -0
  45. package/src/components/tabs.css +59 -0
  46. package/src/components/tailwind.config.js +10 -0
  47. package/src/components/typography.css +171 -0
  48. package/src/index.css +5 -0
  49. package/src/pages/_app.js +5 -0
  50. package/src/pages/admin-filtering-data.js +155 -0
  51. package/src/pages/admin.js +61 -0
  52. package/src/pages/form.js +253 -0
  53. package/src/pages/headings/service-heading.js +20 -0
  54. package/src/pages/index.js +495 -0
  55. package/src/pages/table.js +308 -0
  56. package/src/utilities/index.css +81 -0
  57. package/src/utilities/postcss.config.js +20 -0
  58. package/src/utilities/tailwind.config.js +1 -0
  59. package/src/utilities/utilities.css +87 -0
  60. package/tailwind.config.js +21 -0
  61. package/colors/windi.js +0 -12
package/CHANGELOG.json CHANGED
@@ -1,6 +1,79 @@
1
1
  {
2
2
  "name": "@digigov/css",
3
3
  "entries": [
4
+ {
5
+ "version": "0.7.0",
6
+ "tag": "@digigov/css_v0.7.0",
7
+ "date": "Tue, 01 Feb 2022 15:38:26 GMT",
8
+ "comments": {
9
+ "minor": [
10
+ {
11
+ "comment": "update color variables, remove tailwind color palette, remove static colors at focus and update focus styling at buttons"
12
+ },
13
+ {
14
+ "comment": "implement Hidden component"
15
+ }
16
+ ],
17
+ "none": [
18
+ {
19
+ "comment": "fix bug in header container max-width overflowing the correct width"
20
+ }
21
+ ]
22
+ }
23
+ },
24
+ {
25
+ "version": "0.6.2",
26
+ "tag": "@digigov/css_v0.6.2",
27
+ "date": "Mon, 31 Jan 2022 13:42:21 GMT",
28
+ "comments": {
29
+ "patch": [
30
+ {
31
+ "comment": "Fix postcss.config"
32
+ }
33
+ ]
34
+ }
35
+ },
36
+ {
37
+ "version": "0.6.1",
38
+ "tag": "@digigov/css_v0.6.1",
39
+ "date": "Thu, 20 Jan 2022 10:45:21 GMT",
40
+ "comments": {
41
+ "patch": [
42
+ {
43
+ "comment": "Minor indentation fix"
44
+ },
45
+ {
46
+ "comment": "change class name form govgr-form-group to govgr-field "
47
+ },
48
+ {
49
+ "comment": "Add rules to govgr-footer class in order to render the blue border on the footer's top"
50
+ },
51
+ {
52
+ "comment": "Add the entire src directory to the NPM dist package"
53
+ }
54
+ ]
55
+ }
56
+ },
57
+ {
58
+ "version": "0.6.0",
59
+ "tag": "@digigov/css_v0.6.0",
60
+ "date": "Mon, 17 Jan 2022 14:50:34 GMT",
61
+ "comments": {
62
+ "minor": [
63
+ {
64
+ "comment": "Add new feature in Card component and fix spacing"
65
+ },
66
+ {
67
+ "comment": "Remove underline text in HeaderTitle, fix Button styles after changing `CallToAction` arrow icon to SVG, remove `.govgr-width-container` from footer.css. Finally, add classes for full-width layout support"
68
+ }
69
+ ],
70
+ "patch": [
71
+ {
72
+ "comment": "refactor width container and full width container to fix mobile view on guide"
73
+ }
74
+ ]
75
+ }
76
+ },
4
77
  {
5
78
  "version": "0.5.0",
6
79
  "tag": "@digigov/css_v0.5.0",
package/CHANGELOG.md CHANGED
@@ -1,6 +1,43 @@
1
1
  # Change Log - @digigov/css
2
2
 
3
- This log was last generated on Thu, 30 Dec 2021 12:54:03 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 01 Feb 2022 15:38:26 GMT and should not be manually modified.
4
+
5
+ ## 0.7.0
6
+ Tue, 01 Feb 2022 15:38:26 GMT
7
+
8
+ ### Minor changes
9
+
10
+ - update color variables, remove tailwind color palette, remove static colors at focus and update focus styling at buttons
11
+ - implement Hidden component
12
+
13
+ ## 0.6.2
14
+ Mon, 31 Jan 2022 13:42:21 GMT
15
+
16
+ ### Patches
17
+
18
+ - Fix postcss.config
19
+
20
+ ## 0.6.1
21
+ Thu, 20 Jan 2022 10:45:21 GMT
22
+
23
+ ### Patches
24
+
25
+ - Minor indentation fix
26
+ - change class name form govgr-form-group to govgr-field
27
+ - Add rules to govgr-footer class in order to render the blue border on the footer's top
28
+ - Add the entire src directory to the NPM dist package
29
+
30
+ ## 0.6.0
31
+ Mon, 17 Jan 2022 14:50:34 GMT
32
+
33
+ ### Minor changes
34
+
35
+ - Add new feature in Card component and fix spacing
36
+ - Remove underline text in HeaderTitle, fix Button styles after changing `CallToAction` arrow icon to SVG, remove `.govgr-width-container` from footer.css. Finally, add classes for full-width layout support
37
+
38
+ ### Patches
39
+
40
+ - refactor width container and full width container to fix mobile view on guide
4
41
 
5
42
  ## 0.5.0
6
43
  Thu, 30 Dec 2021 12:54:03 GMT
@@ -1,92 +1,62 @@
1
- const blue_100 = {name: "s", value: "194 100% 65%"};
2
- const blue_200 = {name: "s", value: "196 100% 47%"}; // secondary
3
- const blue_300 = {name: "sf", value: "204 100% 42%"};
4
- const blue_400 = {name: "s3", value: "206 100% 35%"};
5
- const blue_500 = {name: "s4", value: "212 100% 29%"};
6
- const blue_800 = {name: "p", value: "214 100% 23% "}; // primary
7
- const blue_900 = {name: "p", value: "216 100% 16% "};
8
-
9
- const green = {name: "su", value: "152 100% 22%"};
10
- const green_darker = {name: "suh", value: "152 100% 14%"};
11
- const orange = {name: "wa", value: "36 100% 50%"};
12
- const red = {name: "er", value: "0 63% 49%"};
13
- const red_darker = {name: "er", value: "0 66% 39%"};
14
- const purple = {name: "lv", value: "259 54% 37%"};
15
- const white = {name: "pc", value: "0 0% 100%"};
16
- const yellow = {name: "pc", value: "52 100% 50%"};
17
-
18
- const gray_50 = {name: "g05", value: "0 0% 80%"};
19
- const gray_100 = {name: "g10", value: "0 0% 92%"};
20
- const gray_200 = {name: "g20", value: "300 1% 70%"};
21
- const gray_300 = {name: "g30", value: "279 1% 60%"};
22
- const gray_400 = {name: "g40", value: "269 2% 51%"};
23
- const gray_500 = {name: "g50", value: "254 3% 43%"};
24
- const gray_600 = {name: "g60", value: "240 4% 35%"};
25
- const gray_700 = {name: "g70", value: "227 6% 28%"};
26
- const gray_800 = {name: "g80", value: "221 12% 22%"};
27
- const gray_900 = {name: "g90", value: "208 18% 16%"};
28
-
29
1
  module.exports = {
30
2
 
31
- "primary" : blue_800,
32
- "primary-focus" : blue_500,
33
- "primary-200" : blue_900,
34
-
35
- "secondary-50" : blue_100,
36
- "secondary-200" : blue_200,
37
- "secondary" : blue_200,
38
- "secondary-focus" : blue_300,
39
- "secondary-400" : blue_300,
40
- "secondary-600" : blue_400,
41
- "secondary-800" : blue_500,
42
-
43
- "content-dark" : white,
44
- "content" : gray_900,
45
- "content-secondary" : gray_600,
46
-
47
- "accent" : {name: "a", value: "174 60% 51%"},
48
- "accent-focus" : {name: "af", value: "174 60% 41%"},
49
- "accent-content" : white,
50
-
51
- "neutral" : gray_700,
52
- "neutral-focus" : gray_800,
53
- "neutral-content" : white,
54
-
55
- "base-100" : gray_100,
56
- "base-150" : gray_200,
57
- "base-200" : gray_300,
58
- "base-300" : gray_600,
59
- "base-300-content" : white,
60
-
61
- "base-content" : gray_900,
62
- "base-content-secondary" : gray_600,
63
- "base-content-invert" : white,
64
-
65
- "info" : blue_200,
66
- "success" : green,
67
- "success-hover" : green_darker,
68
- "warning" : orange,
69
- "error" : red,
70
- "error-hover" : red_darker,
71
-
72
- "focus" : yellow,
73
-
74
- "link" : blue_300,
75
- "link-hover" : blue_800,
76
- "link-visited" : purple,
77
- "link-active" : blue_900,
78
-
79
- "gray-50" : gray_50,
80
- "gray-100" : gray_100,
81
- "gray-200" : gray_200,
82
- "base-bg" : gray_200,
83
- "gray-300" : gray_300,
84
- "gray-400" : gray_400,
85
- "gray-500" : gray_500,
86
- "gray-600" : gray_600,
87
- "gray-700" : gray_700,
88
- "gray-800" : gray_800,
89
- "gray-900" : gray_900,
3
+ "primary":"#003375",
4
+ "primary-focus":"#004594",
5
+ "primary-200":"#002152",
6
+
7
+ "secondary-50":"#4dd5ff",
8
+ "secondary-200":"#00b0f0",
9
+ "secondary":"#00b0f0",
10
+ "secondary-focus":"#0081d6",
11
+ "secondary-400":"#0081d6",
12
+ "secondary-600":"#0065b3",
13
+ "secondary-800":"#004594",
14
+
15
+ "content-dark":"#fff",
16
+ "content":"#212930",
17
+ "content-secondary":"#56565d",
18
+
19
+ "accent":"#37cdbe",
20
+ "accent-focus":"#2aa79b",
21
+ "accent-content":"#fff",
22
+ "neutral":"#43454c",
23
+ "neutral-focus":"#31363f",
24
+ "neutral-content":"#fff",
25
+
26
+ "base-100":"#ebebeb",
27
+ "base-150":"#b3b2b3",
28
+ "base-200":"#99989a",
29
+ "base-300":"#56565d",
30
+ "base-300-content":"#fff",
31
+ "base-content":"#212930",
32
+ "base-content-secondary":"#56565d",
33
+ "base-content-invert":"#fff",
34
+
35
+ "info":"#00b0f0",
36
+ "success":"#00703c",
37
+ "success-hover":"#004726",
38
+ "warning":"#f90",
39
+ "error":"#cc2e2e",
40
+ "error-hover":"#a52222",
41
+ "focus":"#fd0",
42
+ "link":"#0081d6",
43
+ "link-hover":"#003375",
44
+ "link-visited":"#4c2b91",
45
+ "link-active":"#002152",
46
+
47
+ "white":"#fff",
48
+ "gray-50":"#ccc",
49
+ "gray-100":"#ebebeb",
50
+ "gray-200":"#b3b2b3",
51
+ "base-bg":"#b3b2b3",
52
+ "gray-300":"#99989a",
53
+ "gray-400":"#828085",
54
+ "gray-500":"#6c6a71",
55
+ "gray-600":"#56565d",
56
+ "gray-700":"#43454c",
57
+ "gray-800":"#31363f",
58
+ "gray-900":"#212930",
59
+ "black":"#000",
90
60
 
91
61
  }
92
62
 
package/colors/index.js CHANGED
@@ -1,21 +1,10 @@
1
- const colors = require('tailwindcss/colors');
2
- const colorValues = require('./color-values')
3
-
1
+ const colorValues = require('./color-values');
4
2
  let colorObject = {
5
3
  "transparent": "transparent",
6
4
  "current": "currentColor",
7
5
  }
8
6
 
9
- for (const [key, item] of Object.entries(colorValues)) {
10
- colorObject[key] = ({ opacityVariable, opacityValue }) => {
11
- if (opacityValue !== undefined) {
12
- return `hsla(var(--`+ item['name'] +`, `+ item['value'] +`) / ${opacityValue})`
13
- }
14
- if (opacityVariable !== undefined) {
15
- return `hsla(var(--`+ item['name'] +`, `+ item['value'] +`) / var(${opacityVariable}, 1))`
16
- }
17
- return `hsl(var(--`+ item['name'] +`, `+ item['value']+ `))`
18
- }
7
+ for (const [key, value] of Object.entries(colorValues)) {
8
+ colorObject[key] = value.startsWith('#')?value:value.startsWith('rgb')?value:`hsl(${value})`
19
9
  }
20
-
21
- module.exports = {...colors, ...colorObject};
10
+ module.exports = {...colorObject};
@@ -1,7 +1,9 @@
1
1
  /*!
2
- * @digigov/css: 0.5.0
2
+ * @digigov/css: 0.7.0
3
3
  *
4
4
  * Author: grnet-devs
5
- * Date: 2021-12-30
5
+ * Date: 2022-2-1
6
6
  */
7
- html{-webkit-tap-highlight-color:transparent}body{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:hsla(var(--g90,208 18% 16%)/var(--tw-text-opacity))}
7
+ /*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com*/
8
+
9
+ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-moz-tab-size:4;-o-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{box-sizing:border-box;border:0 solid}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::placeholder,textarea::placeholder{opacity:1;color:#a1a1aa}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}*,:after,:before{border-color:currentColor}html{-webkit-tap-highlight-color:transparent}body{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:rgba(33,41,48,var(--tw-text-opacity))}
package/dist/base.css CHANGED
@@ -1,7 +1,9 @@
1
1
  /*!
2
- * @digigov/css: 0.5.0
2
+ * @digigov/css: 0.7.0
3
3
  *
4
4
  * Author: grnet-devs
5
- * Date: 2021-12-30
5
+ * Date: 2022-2-1
6
6
  */
7
- html{-webkit-tap-highlight-color:transparent}body{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:hsla(var(--g90,208 18% 16%)/var(--tw-text-opacity))}
7
+ /*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com*/
8
+
9
+ /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */html{-moz-tab-size:4;-o-tab-size:4;tab-size:4}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji}hr{height:0;color:inherit}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}fieldset{margin:0;padding:0}ol,ul{list-style:none;margin:0;padding:0}html{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}body{font-family:inherit;line-height:inherit}*,:after,:before{box-sizing:border-box;border:0 solid}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#a1a1aa}input:-ms-input-placeholder,textarea:-ms-input-placeholder{opacity:1;color:#a1a1aa}input::placeholder,textarea::placeholder{opacity:1;color:#a1a1aa}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}*,:after,:before{border-color:currentColor}html{-webkit-tap-highlight-color:transparent}body{font-family:Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;--tw-text-opacity:1;color:rgba(33,41,48,var(--tw-text-opacity))}
package/dist/base.js CHANGED
@@ -1 +1 @@
1
- module.exports = {"html":{"WebkitTapHighlightColor":"transparent"},"body":{"fontFamily":"Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji","-TwTextOpacity":"1","color":"hsla(var(--g90,208 18% 16%)/var(--tw-text-opacity))"}};
1
+ module.exports = {"html":{"MozTabSize":"4","OTabSize":"4","tabSize":"4","lineHeight":["1.15","1.5"],"WebkitTextSizeAdjust":"100%","fontFamily":"Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji","WebkitTapHighlightColor":"transparent"},"body":{"margin":"0","fontFamily":["system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji","inherit","Roboto,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji"],"lineHeight":"inherit","-TwTextOpacity":"1","color":"rgba(33,41,48,var(--tw-text-opacity))"},"hr":{"height":"0","color":"inherit","borderTopWidth":"1px"},"abbr[title]":{"WebkitTextDecoration":"underline dotted","textDecoration":"underline dotted"},"b,strong":{"fontWeight":"bolder"},"code,kbd,pre,samp":{"fontFamily":["ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace","ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"],"fontSize":"1em"},"small":{"fontSize":"80%"},"sub,sup":{"fontSize":"75%","lineHeight":"0","position":"relative","verticalAlign":"baseline"},"sub":{"bottom":"-.25em"},"sup":{"top":"-.5em"},"table":{"textIndent":"0","borderColor":"inherit","borderCollapse":"collapse"},"button,input,optgroup,select,textarea":{"fontFamily":"inherit","fontSize":"100%","lineHeight":["1.15","inherit"],"margin":"0","padding":"0","color":"inherit"},"button,select":{"textTransform":"none"},"[type=button],[type=reset],[type=submit],button":{"WebkitAppearance":"button"},"::-moz-focus-inner":{"borderStyle":"none","padding":"0"},":-moz-focusring":{"outline":"1px dotted ButtonText"},":-moz-ui-invalid":{"boxShadow":"none"},"legend":{"padding":"0"},"progress":{"verticalAlign":"baseline"},"::-webkit-inner-spin-button,::-webkit-outer-spin-button":{"height":"auto"},"[type=search]":{"WebkitAppearance":"textfield","outlineOffset":"-2px"},"::-webkit-search-decoration":{"WebkitAppearance":"none"},"::-webkit-file-upload-button":{"WebkitAppearance":"button","font":"inherit"},"summary":{"display":"list-item"},"blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre":{"margin":"0"},"button":{"backgroundColor":"transparent","backgroundImage":"none"},"fieldset":{"margin":"0","padding":"0"},"ol,ul":{"listStyle":"none","margin":"0","padding":"0"},"*,:after,:before":{"boxSizing":"border-box","border":"0 solid","borderColor":"currentColor"},"img":{"borderStyle":"solid"},"textarea":{"resize":"vertical"},"input::-moz-placeholder,textarea::-moz-placeholder":{"opacity":"1","color":"#a1a1aa"},"input:-ms-input-placeholder,textarea:-ms-input-placeholder":{"opacity":"1","color":"#a1a1aa"},"input::placeholder,textarea::placeholder":{"opacity":"1","color":"#a1a1aa"},"[role=button],button":{"cursor":"pointer"},"h1,h2,h3,h4,h5,h6":{"fontSize":"inherit","fontWeight":"inherit"},"a":{"color":"inherit","textDecoration":"inherit"},"audio,canvas,embed,iframe,img,object,svg,video":{"display":"block","verticalAlign":"middle"},"img,video":{"maxWidth":"100%","height":"auto"}};