@asyncapi/react-component 1.0.0-next.8 → 1.0.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.
- package/README.md +121 -36
- package/browser/index.js +32 -14
- package/browser/index.js.LICENSE.txt +88 -0
- package/browser/standalone/index.js +32 -43
- package/browser/standalone/index.js.LICENSE.txt +112 -0
- package/browser/standalone/without-parser.js +14 -41
- package/browser/standalone/without-parser.js.LICENSE.txt +110 -0
- package/browser/without-parser.js +14 -12
- package/browser/without-parser.js.LICENSE.txt +86 -0
- package/lib/cjs/components/Bindings.js +14 -5
- package/lib/cjs/components/Bindings.js.map +1 -1
- package/lib/cjs/components/CollapseButton.js +11 -7
- package/lib/cjs/components/CollapseButton.js.map +1 -1
- package/lib/cjs/components/Extensions.js +4 -3
- package/lib/cjs/components/Extensions.js.map +1 -1
- package/lib/cjs/components/Href.js +2 -1
- package/lib/cjs/components/Href.js.map +1 -1
- package/lib/cjs/components/JSONSnippet.js +2 -1
- package/lib/cjs/components/JSONSnippet.js.map +1 -1
- package/lib/cjs/components/Markdown.js +3 -2
- package/lib/cjs/components/Markdown.js.map +1 -1
- package/lib/cjs/components/Schema.js +77 -60
- package/lib/cjs/components/Schema.js.map +1 -1
- package/lib/cjs/components/Tag.js +3 -2
- package/lib/cjs/components/Tag.js.map +1 -1
- package/lib/cjs/components/Tags.js +3 -2
- package/lib/cjs/components/Tags.js.map +1 -1
- package/lib/cjs/components/index.js +5 -1
- package/lib/cjs/components/index.js.map +1 -1
- package/lib/cjs/config/config.js.map +1 -1
- package/lib/cjs/config/default.js +9 -1
- package/lib/cjs/config/default.js.map +1 -1
- package/lib/cjs/config/index.js +5 -1
- package/lib/cjs/config/index.js.map +1 -1
- package/lib/cjs/constants.js +12 -48
- package/lib/cjs/constants.js.map +1 -1
- package/lib/cjs/containers/AsyncApi/AsyncApi.js +28 -12
- package/lib/cjs/containers/AsyncApi/AsyncApi.js.map +1 -1
- package/lib/cjs/containers/AsyncApi/Layout.js +33 -21
- package/lib/cjs/containers/AsyncApi/Layout.js.map +1 -1
- package/lib/cjs/containers/AsyncApi/Standalone.js +8 -2
- package/lib/cjs/containers/AsyncApi/Standalone.js.map +1 -1
- package/lib/cjs/containers/Error/Error.js +4 -3
- package/lib/cjs/containers/Error/Error.js.map +1 -1
- package/lib/cjs/containers/Info/Info.js +11 -10
- package/lib/cjs/containers/Info/Info.js.map +1 -1
- package/lib/cjs/containers/Messages/Message.js +23 -10
- package/lib/cjs/containers/Messages/Message.js.map +1 -1
- package/lib/cjs/containers/Messages/MessageExample.js +25 -13
- package/lib/cjs/containers/Messages/MessageExample.js.map +1 -1
- package/lib/cjs/containers/Messages/Messages.js +14 -9
- package/lib/cjs/containers/Messages/Messages.js.map +1 -1
- package/lib/cjs/containers/Operations/Operation.js +88 -38
- package/lib/cjs/containers/Operations/Operation.js.map +1 -1
- package/lib/cjs/containers/Operations/Operations.js +20 -13
- package/lib/cjs/containers/Operations/Operations.js.map +1 -1
- package/lib/cjs/containers/Schemas/Schema.js +21 -0
- package/lib/cjs/containers/Schemas/Schema.js.map +1 -0
- package/lib/cjs/containers/Schemas/Schemas.js +29 -0
- package/lib/cjs/containers/Schemas/Schemas.js.map +1 -0
- package/lib/cjs/containers/Servers/Security.js +150 -0
- package/lib/cjs/containers/Servers/Security.js.map +1 -0
- package/lib/cjs/containers/Servers/Server.js +15 -8
- package/lib/cjs/containers/Servers/Server.js.map +1 -1
- package/lib/cjs/containers/Servers/Servers.js +12 -7
- package/lib/cjs/containers/Servers/Servers.js.map +1 -1
- package/lib/cjs/containers/Sidebar/Sidebar.js +201 -141
- package/lib/cjs/containers/Sidebar/Sidebar.js.map +1 -1
- package/lib/cjs/contexts/index.js +6 -1
- package/lib/cjs/contexts/index.js.map +1 -1
- package/lib/cjs/contexts/useConfig.js +10 -0
- package/lib/cjs/contexts/useConfig.js.map +1 -0
- package/lib/cjs/contexts/useSpec.js +7 -3
- package/lib/cjs/contexts/useSpec.js.map +1 -1
- package/lib/cjs/helpers/bindingsHelpers.js +24 -0
- package/lib/cjs/helpers/bindingsHelpers.js.map +1 -0
- package/lib/cjs/helpers/common.js +17 -0
- package/lib/cjs/helpers/common.js.map +1 -0
- package/lib/cjs/helpers/index.js +6 -3
- package/lib/cjs/helpers/index.js.map +1 -1
- package/lib/cjs/helpers/marked.js +2 -2
- package/lib/cjs/helpers/marked.js.map +1 -1
- package/lib/cjs/helpers/message.js +39 -9
- package/lib/cjs/helpers/message.js.map +1 -1
- package/lib/cjs/helpers/parser.js +16 -15
- package/lib/cjs/helpers/parser.js.map +1 -1
- package/lib/cjs/helpers/schema.js +186 -149
- package/lib/cjs/helpers/schema.js.map +1 -1
- package/lib/cjs/helpers/server.js +49 -0
- package/lib/cjs/helpers/server.js.map +1 -1
- package/lib/cjs/helpers/specification.js +36 -21
- package/lib/cjs/helpers/specification.js.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/types.js +4 -51
- package/lib/cjs/types.js.map +1 -1
- package/lib/cjs/without-parser.js.map +1 -1
- package/lib/esm/components/Bindings.js +12 -4
- package/lib/esm/components/Bindings.js.map +1 -1
- package/lib/esm/components/CollapseButton.js +9 -6
- package/lib/esm/components/CollapseButton.js.map +1 -1
- package/lib/esm/components/Extensions.js +2 -2
- package/lib/esm/components/Extensions.js.map +1 -1
- package/lib/esm/components/Href.js.map +1 -1
- package/lib/esm/components/JSONSnippet.js.map +1 -1
- package/lib/esm/components/Markdown.js +1 -1
- package/lib/esm/components/Markdown.js.map +1 -1
- package/lib/esm/components/Schema.js +71 -59
- package/lib/esm/components/Schema.js.map +1 -1
- package/lib/esm/components/Tag.js +1 -1
- package/lib/esm/components/Tag.js.map +1 -1
- package/lib/esm/components/Tags.js +1 -1
- package/lib/esm/components/Tags.js.map +1 -1
- package/lib/esm/components/index.js.map +1 -1
- package/lib/esm/config/config.js.map +1 -1
- package/lib/esm/config/default.js +9 -1
- package/lib/esm/config/default.js.map +1 -1
- package/lib/esm/config/index.js.map +1 -1
- package/lib/esm/constants.js +10 -47
- package/lib/esm/constants.js.map +1 -1
- package/lib/esm/containers/AsyncApi/AsyncApi.js +22 -10
- package/lib/esm/containers/AsyncApi/AsyncApi.js.map +1 -1
- package/lib/esm/containers/AsyncApi/Layout.js +28 -20
- package/lib/esm/containers/AsyncApi/Layout.js.map +1 -1
- package/lib/esm/containers/AsyncApi/Standalone.js +3 -1
- package/lib/esm/containers/AsyncApi/Standalone.js.map +1 -1
- package/lib/esm/containers/Error/Error.js +2 -2
- package/lib/esm/containers/Error/Error.js.map +1 -1
- package/lib/esm/containers/Info/Info.js +8 -8
- package/lib/esm/containers/Info/Info.js.map +1 -1
- package/lib/esm/containers/Messages/Message.js +21 -9
- package/lib/esm/containers/Messages/Message.js.map +1 -1
- package/lib/esm/containers/Messages/MessageExample.js +17 -11
- package/lib/esm/containers/Messages/MessageExample.js.map +1 -1
- package/lib/esm/containers/Messages/Messages.js +13 -9
- package/lib/esm/containers/Messages/Messages.js.map +1 -1
- package/lib/esm/containers/Operations/Operation.js +87 -39
- package/lib/esm/containers/Operations/Operation.js.map +1 -1
- package/lib/esm/containers/Operations/Operations.js +19 -13
- package/lib/esm/containers/Operations/Operations.js.map +1 -1
- package/lib/esm/containers/Schemas/Schema.js +14 -0
- package/lib/esm/containers/Schemas/Schema.js.map +1 -0
- package/lib/esm/containers/Schemas/Schemas.js +22 -0
- package/lib/esm/containers/Schemas/Schemas.js.map +1 -0
- package/lib/esm/containers/Servers/Security.js +143 -0
- package/lib/esm/containers/Servers/Security.js.map +1 -0
- package/lib/esm/containers/Servers/Server.js +15 -9
- package/lib/esm/containers/Servers/Server.js.map +1 -1
- package/lib/esm/containers/Servers/Servers.js +11 -7
- package/lib/esm/containers/Servers/Servers.js.map +1 -1
- package/lib/esm/containers/Sidebar/Sidebar.js +191 -136
- package/lib/esm/containers/Sidebar/Sidebar.js.map +1 -1
- package/lib/esm/contexts/index.js +1 -0
- package/lib/esm/contexts/index.js.map +1 -1
- package/lib/esm/contexts/useConfig.js +6 -0
- package/lib/esm/contexts/useConfig.js.map +1 -0
- package/lib/esm/contexts/useSpec.js +2 -2
- package/lib/esm/contexts/useSpec.js.map +1 -1
- package/lib/esm/helpers/bindingsHelpers.js +21 -0
- package/lib/esm/helpers/bindingsHelpers.js.map +1 -0
- package/lib/esm/helpers/common.js +14 -0
- package/lib/esm/helpers/common.js.map +1 -0
- package/lib/esm/helpers/index.js +1 -2
- package/lib/esm/helpers/index.js.map +1 -1
- package/lib/esm/helpers/marked.js +1 -1
- package/lib/esm/helpers/marked.js.map +1 -1
- package/lib/esm/helpers/message.js +38 -8
- package/lib/esm/helpers/message.js.map +1 -1
- package/lib/esm/helpers/parser.js +17 -13
- package/lib/esm/helpers/parser.js.map +1 -1
- package/lib/esm/helpers/schema.js +182 -142
- package/lib/esm/helpers/schema.js.map +1 -1
- package/lib/esm/helpers/server.js +49 -0
- package/lib/esm/helpers/server.js.map +1 -1
- package/lib/esm/helpers/specification.js +36 -18
- package/lib/esm/helpers/specification.js.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/types.js +2 -46
- package/lib/esm/types.js.map +1 -1
- package/lib/esm/without-parser.js.map +1 -1
- package/lib/types/components/Bindings.d.ts +2 -1
- package/lib/types/components/Bindings.d.ts.map +1 -1
- package/lib/types/components/CollapseButton.d.ts +1 -0
- package/lib/types/components/CollapseButton.d.ts.map +1 -1
- package/lib/types/components/Extensions.d.ts.map +1 -1
- package/lib/types/components/Schema.d.ts +5 -4
- package/lib/types/components/Schema.d.ts.map +1 -1
- package/lib/types/components/Tag.d.ts +2 -2
- package/lib/types/components/Tag.d.ts.map +1 -1
- package/lib/types/components/Tags.d.ts +2 -2
- package/lib/types/components/Tags.d.ts.map +1 -1
- package/lib/types/config/config.d.ts +8 -0
- package/lib/types/config/config.d.ts.map +1 -1
- package/lib/types/config/default.d.ts.map +1 -1
- package/lib/types/constants.d.ts +10 -26
- package/lib/types/constants.d.ts.map +1 -1
- package/lib/types/containers/AsyncApi/AsyncApi.d.ts +2 -2
- package/lib/types/containers/AsyncApi/AsyncApi.d.ts.map +1 -1
- package/lib/types/containers/AsyncApi/Layout.d.ts +2 -2
- package/lib/types/containers/AsyncApi/Layout.d.ts.map +1 -1
- package/lib/types/containers/AsyncApi/Standalone.d.ts +2 -2
- package/lib/types/containers/AsyncApi/Standalone.d.ts.map +1 -1
- package/lib/types/containers/Info/Info.d.ts.map +1 -1
- package/lib/types/containers/Messages/Message.d.ts +3 -2
- package/lib/types/containers/Messages/Message.d.ts.map +1 -1
- package/lib/types/containers/Messages/MessageExample.d.ts +5 -4
- package/lib/types/containers/Messages/MessageExample.d.ts.map +1 -1
- package/lib/types/containers/Messages/Messages.d.ts.map +1 -1
- package/lib/types/containers/Operations/Operation.d.ts +4 -3
- package/lib/types/containers/Operations/Operation.d.ts.map +1 -1
- package/lib/types/containers/Operations/Operations.d.ts.map +1 -1
- package/lib/types/containers/Schemas/Schema.d.ts +9 -0
- package/lib/types/containers/Schemas/Schema.d.ts.map +1 -0
- package/lib/types/containers/Schemas/Schemas.d.ts +3 -0
- package/lib/types/containers/Schemas/Schemas.d.ts.map +1 -0
- package/lib/types/containers/Servers/Security.d.ts +10 -0
- package/lib/types/containers/Servers/Security.d.ts.map +1 -0
- package/lib/types/containers/Servers/Server.d.ts +2 -2
- package/lib/types/containers/Servers/Server.d.ts.map +1 -1
- package/lib/types/containers/Servers/Servers.d.ts.map +1 -1
- package/lib/types/containers/Sidebar/Sidebar.d.ts +1 -9
- package/lib/types/containers/Sidebar/Sidebar.d.ts.map +1 -1
- package/lib/types/contexts/index.d.ts +1 -0
- package/lib/types/contexts/index.d.ts.map +1 -1
- package/lib/types/contexts/useConfig.d.ts +5 -0
- package/lib/types/contexts/useConfig.d.ts.map +1 -0
- package/lib/types/contexts/useSpec.d.ts +3 -5
- package/lib/types/contexts/useSpec.d.ts.map +1 -1
- package/lib/types/helpers/bindingsHelpers.d.ts +8 -0
- package/lib/types/helpers/bindingsHelpers.d.ts.map +1 -0
- package/lib/types/helpers/common.d.ts +5 -0
- package/lib/types/helpers/common.d.ts.map +1 -0
- package/lib/types/helpers/index.d.ts +1 -2
- package/lib/types/helpers/index.d.ts.map +1 -1
- package/lib/types/helpers/message.d.ts +4 -3
- package/lib/types/helpers/message.d.ts.map +1 -1
- package/lib/types/helpers/parser.d.ts.map +1 -1
- package/lib/types/helpers/schema.d.ts +16 -12
- package/lib/types/helpers/schema.d.ts.map +1 -1
- package/lib/types/helpers/server.d.ts +6 -1
- package/lib/types/helpers/server.d.ts.map +1 -1
- package/lib/types/helpers/specification.d.ts +7 -4
- package/lib/types/helpers/specification.d.ts.map +1 -1
- package/lib/types/types.d.ts +12 -305
- package/lib/types/types.d.ts.map +1 -1
- package/package.json +30 -17
- package/styles/default.css +752 -658
- package/styles/default.min.css +3 -3
- package/lib/cjs/containers/Servers/ServerSecurity.js +0 -101
- package/lib/cjs/containers/Servers/ServerSecurity.js.map +0 -1
- package/lib/cjs/helpers/bemClasses.js +0 -49
- package/lib/cjs/helpers/bemClasses.js.map +0 -1
- package/lib/cjs/helpers/toKebabCase.js +0 -15
- package/lib/cjs/helpers/toKebabCase.js.map +0 -1
- package/lib/esm/containers/Servers/ServerSecurity.js +0 -95
- package/lib/esm/containers/Servers/ServerSecurity.js.map +0 -1
- package/lib/esm/helpers/bemClasses.js +0 -46
- package/lib/esm/helpers/bemClasses.js.map +0 -1
- package/lib/esm/helpers/toKebabCase.js +0 -11
- package/lib/esm/helpers/toKebabCase.js.map +0 -1
- package/lib/types/containers/Servers/ServerSecurity.d.ts +0 -8
- package/lib/types/containers/Servers/ServerSecurity.d.ts.map +0 -1
- package/lib/types/helpers/bemClasses.d.ts +0 -14
- package/lib/types/helpers/bemClasses.d.ts.map +0 -1
- package/lib/types/helpers/toKebabCase.d.ts +0 -2
- package/lib/types/helpers/toKebabCase.d.ts.map +0 -1
package/styles/default.css
CHANGED
|
@@ -27,7 +27,7 @@ SOFTWARE.
|
|
|
27
27
|
|
|
28
28
|
*/
|
|
29
29
|
|
|
30
|
-
.hljs {
|
|
30
|
+
.aui-root .hljs {
|
|
31
31
|
display: block;
|
|
32
32
|
overflow-x: auto;
|
|
33
33
|
padding: 0.5em;
|
|
@@ -37,187 +37,187 @@ SOFTWARE.
|
|
|
37
37
|
|
|
38
38
|
/* General Purpose */
|
|
39
39
|
|
|
40
|
-
.hljs-keyword {
|
|
40
|
+
.aui-root .hljs-keyword {
|
|
41
41
|
color: #c792ea;
|
|
42
42
|
font-style: italic;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
-
.hljs-built_in {
|
|
45
|
+
.aui-root .hljs-built_in {
|
|
46
46
|
color: #addb67;
|
|
47
47
|
font-style: italic;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
.hljs-type {
|
|
50
|
+
.aui-root .hljs-type {
|
|
51
51
|
color: #82aaff;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
.hljs-literal {
|
|
54
|
+
.aui-root .hljs-literal {
|
|
55
55
|
color: #ff5874;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
.hljs-number {
|
|
58
|
+
.aui-root .hljs-number {
|
|
59
59
|
color: #F78C6C;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
.hljs-regexp {
|
|
62
|
+
.aui-root .hljs-regexp {
|
|
63
63
|
color: #5ca7e4;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
.hljs-string {
|
|
66
|
+
.aui-root .hljs-string {
|
|
67
67
|
color: #ecc48d;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
.hljs-subst {
|
|
70
|
+
.aui-root .hljs-subst {
|
|
71
71
|
color: #d3423e;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
.hljs-symbol {
|
|
74
|
+
.aui-root .hljs-symbol {
|
|
75
75
|
color: #82aaff;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
.hljs-class {
|
|
78
|
+
.aui-root .hljs-class {
|
|
79
79
|
color: #ffcb8b;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
.hljs-function {
|
|
82
|
+
.aui-root .hljs-function {
|
|
83
83
|
color: #82AAFF;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
.hljs-title {
|
|
86
|
+
.aui-root .hljs-title {
|
|
87
87
|
color: #DCDCAA;
|
|
88
88
|
font-style: italic;
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
.hljs-params {
|
|
91
|
+
.aui-root .hljs-params {
|
|
92
92
|
color: #7fdbca;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
/* Meta */
|
|
96
96
|
|
|
97
|
-
.hljs-comment {
|
|
97
|
+
.aui-root .hljs-comment {
|
|
98
98
|
color: #637777;
|
|
99
99
|
font-style: italic;
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
.hljs-doctag {
|
|
102
|
+
.aui-root .hljs-doctag {
|
|
103
103
|
color: #7fdbca;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
.hljs-meta {
|
|
106
|
+
.aui-root .hljs-meta {
|
|
107
107
|
color: #82aaff;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
.hljs-meta-keyword {
|
|
110
|
+
.aui-root .hljs-meta-keyword {
|
|
111
111
|
color: #82aaff;
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
-
.hljs-meta-string {
|
|
114
|
+
.aui-root .hljs-meta-string {
|
|
115
115
|
color: #ecc48d;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
/* Tags, attributes, config */
|
|
119
119
|
|
|
120
|
-
.hljs-section {
|
|
120
|
+
.aui-root .hljs-section {
|
|
121
121
|
color: #82b1ff;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
-
.hljs-tag,
|
|
125
|
-
.hljs-name,
|
|
126
|
-
.hljs-builtin-name {
|
|
124
|
+
.aui-root .hljs-tag,
|
|
125
|
+
.aui-root .hljs-name,
|
|
126
|
+
.aui-root .hljs-builtin-name {
|
|
127
127
|
color: #7fdbca;
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
-
.hljs-attr {
|
|
130
|
+
.aui-root .hljs-attr {
|
|
131
131
|
color: #7fdbca;
|
|
132
132
|
}
|
|
133
133
|
|
|
134
|
-
.hljs-attribute {
|
|
134
|
+
.aui-root .hljs-attribute {
|
|
135
135
|
color: #80cbc4;
|
|
136
136
|
}
|
|
137
137
|
|
|
138
|
-
.hljs-variable {
|
|
138
|
+
.aui-root .hljs-variable {
|
|
139
139
|
color: #addb67;
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
/* Markup */
|
|
143
143
|
|
|
144
|
-
.hljs-bullet {
|
|
144
|
+
.aui-root .hljs-bullet {
|
|
145
145
|
color: #d9f5dd;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
-
.hljs-code {
|
|
148
|
+
.aui-root .hljs-code {
|
|
149
149
|
color: #80CBC4;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
.hljs-emphasis {
|
|
152
|
+
.aui-root .hljs-emphasis {
|
|
153
153
|
color: #c792ea;
|
|
154
154
|
font-style: italic;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
.hljs-strong {
|
|
157
|
+
.aui-root .hljs-strong {
|
|
158
158
|
color: #addb67;
|
|
159
159
|
font-weight: bold;
|
|
160
160
|
}
|
|
161
161
|
|
|
162
|
-
.hljs-formula {
|
|
162
|
+
.aui-root .hljs-formula {
|
|
163
163
|
color: #c792ea;
|
|
164
164
|
}
|
|
165
165
|
|
|
166
|
-
.hljs-link {
|
|
166
|
+
.aui-root .hljs-link {
|
|
167
167
|
color: #ff869a;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
.hljs-quote {
|
|
170
|
+
.aui-root .hljs-quote {
|
|
171
171
|
color: #697098;
|
|
172
172
|
font-style: italic;
|
|
173
173
|
}
|
|
174
174
|
|
|
175
175
|
/* CSS */
|
|
176
176
|
|
|
177
|
-
.hljs-selector-tag {
|
|
177
|
+
.aui-root .hljs-selector-tag {
|
|
178
178
|
color: #ff6363;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
.hljs-selector-id {
|
|
181
|
+
.aui-root .hljs-selector-id {
|
|
182
182
|
color: #fad430;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
|
-
.hljs-selector-class {
|
|
185
|
+
.aui-root .hljs-selector-class {
|
|
186
186
|
color: #addb67;
|
|
187
187
|
font-style: italic;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
-
.hljs-selector-attr,
|
|
191
|
-
.hljs-selector-pseudo {
|
|
190
|
+
.aui-root .hljs-selector-attr,
|
|
191
|
+
.aui-root .hljs-selector-pseudo {
|
|
192
192
|
color: #c792ea;
|
|
193
193
|
font-style: italic;
|
|
194
194
|
}
|
|
195
195
|
|
|
196
196
|
/* Templates */
|
|
197
197
|
|
|
198
|
-
.hljs-template-tag {
|
|
198
|
+
.aui-root .hljs-template-tag {
|
|
199
199
|
color: #c792ea;
|
|
200
200
|
}
|
|
201
201
|
|
|
202
|
-
.hljs-template-variable {
|
|
202
|
+
.aui-root .hljs-template-variable {
|
|
203
203
|
color: #addb67;
|
|
204
204
|
}
|
|
205
205
|
|
|
206
206
|
/* diff */
|
|
207
207
|
|
|
208
|
-
.hljs-addition {
|
|
208
|
+
.aui-root .hljs-addition {
|
|
209
209
|
color: #addb67ff;
|
|
210
210
|
font-style: italic;
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
.hljs-deletion {
|
|
213
|
+
.aui-root .hljs-deletion {
|
|
214
214
|
color: #EF535090;
|
|
215
215
|
font-style: italic;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
-
/*! tailwindcss v2.
|
|
218
|
+
/*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */
|
|
219
219
|
|
|
220
|
-
/*! modern-normalize v1.
|
|
220
|
+
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
221
221
|
|
|
222
222
|
/*
|
|
223
223
|
Document
|
|
@@ -228,9 +228,9 @@ Document
|
|
|
228
228
|
Use a better box model (opinionated).
|
|
229
229
|
*/
|
|
230
230
|
|
|
231
|
-
*,
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
.aui-root *,
|
|
232
|
+
.aui-root ::before,
|
|
233
|
+
.aui-root ::after {
|
|
234
234
|
box-sizing: border-box;
|
|
235
235
|
}
|
|
236
236
|
|
|
@@ -238,7 +238,7 @@ Use a better box model (opinionated).
|
|
|
238
238
|
Use a more readable tab size (opinionated).
|
|
239
239
|
*/
|
|
240
240
|
|
|
241
|
-
|
|
241
|
+
.aui-root html {
|
|
242
242
|
-moz-tab-size: 4;
|
|
243
243
|
-o-tab-size: 4;
|
|
244
244
|
tab-size: 4;
|
|
@@ -249,7 +249,7 @@ Use a more readable tab size (opinionated).
|
|
|
249
249
|
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
250
250
|
*/
|
|
251
251
|
|
|
252
|
-
html {
|
|
252
|
+
.aui-root html {
|
|
253
253
|
line-height: 1.15; /* 1 */
|
|
254
254
|
-webkit-text-size-adjust: 100%; /* 2 */
|
|
255
255
|
}
|
|
@@ -263,7 +263,7 @@ Sections
|
|
|
263
263
|
Remove the margin in all browsers.
|
|
264
264
|
*/
|
|
265
265
|
|
|
266
|
-
body {
|
|
266
|
+
.aui-root body {
|
|
267
267
|
margin: 0;
|
|
268
268
|
}
|
|
269
269
|
|
|
@@ -271,7 +271,7 @@ body {
|
|
|
271
271
|
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
|
|
272
272
|
*/
|
|
273
273
|
|
|
274
|
-
body {
|
|
274
|
+
.aui-root body {
|
|
275
275
|
font-family:
|
|
276
276
|
system-ui,
|
|
277
277
|
-apple-system, /* Firefox supports this but not yet `system-ui` */
|
|
@@ -294,7 +294,7 @@ Grouping content
|
|
|
294
294
|
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
295
295
|
*/
|
|
296
296
|
|
|
297
|
-
hr {
|
|
297
|
+
.aui-root hr {
|
|
298
298
|
height: 0; /* 1 */
|
|
299
299
|
color: inherit; /* 2 */
|
|
300
300
|
}
|
|
@@ -308,7 +308,7 @@ Text-level semantics
|
|
|
308
308
|
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
309
309
|
*/
|
|
310
310
|
|
|
311
|
-
abbr[title] {
|
|
311
|
+
.aui-root abbr[title] {
|
|
312
312
|
-webkit-text-decoration: underline dotted;
|
|
313
313
|
text-decoration: underline dotted;
|
|
314
314
|
}
|
|
@@ -317,8 +317,8 @@ abbr[title] {
|
|
|
317
317
|
Add the correct font weight in Edge and Safari.
|
|
318
318
|
*/
|
|
319
319
|
|
|
320
|
-
b,
|
|
321
|
-
strong {
|
|
320
|
+
.aui-root b,
|
|
321
|
+
.aui-root strong {
|
|
322
322
|
font-weight: bolder;
|
|
323
323
|
}
|
|
324
324
|
|
|
@@ -327,10 +327,10 @@ strong {
|
|
|
327
327
|
2. Correct the odd 'em' font sizing in all browsers.
|
|
328
328
|
*/
|
|
329
329
|
|
|
330
|
-
code,
|
|
331
|
-
kbd,
|
|
332
|
-
samp,
|
|
333
|
-
pre {
|
|
330
|
+
.aui-root code,
|
|
331
|
+
.aui-root kbd,
|
|
332
|
+
.aui-root samp,
|
|
333
|
+
.aui-root pre {
|
|
334
334
|
font-family:
|
|
335
335
|
ui-monospace,
|
|
336
336
|
SFMono-Regular,
|
|
@@ -345,7 +345,7 @@ pre {
|
|
|
345
345
|
Add the correct font size in all browsers.
|
|
346
346
|
*/
|
|
347
347
|
|
|
348
|
-
small {
|
|
348
|
+
.aui-root small {
|
|
349
349
|
font-size: 80%;
|
|
350
350
|
}
|
|
351
351
|
|
|
@@ -353,19 +353,19 @@ small {
|
|
|
353
353
|
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
|
|
354
354
|
*/
|
|
355
355
|
|
|
356
|
-
sub,
|
|
357
|
-
sup {
|
|
356
|
+
.aui-root sub,
|
|
357
|
+
.aui-root sup {
|
|
358
358
|
font-size: 75%;
|
|
359
359
|
line-height: 0;
|
|
360
360
|
position: relative;
|
|
361
361
|
vertical-align: baseline;
|
|
362
362
|
}
|
|
363
363
|
|
|
364
|
-
sub {
|
|
364
|
+
.aui-root sub {
|
|
365
365
|
bottom: -0.25em;
|
|
366
366
|
}
|
|
367
367
|
|
|
368
|
-
sup {
|
|
368
|
+
.aui-root sup {
|
|
369
369
|
top: -0.5em;
|
|
370
370
|
}
|
|
371
371
|
|
|
@@ -379,7 +379,7 @@ Tabular data
|
|
|
379
379
|
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
380
380
|
*/
|
|
381
381
|
|
|
382
|
-
table {
|
|
382
|
+
.aui-root table {
|
|
383
383
|
text-indent: 0; /* 1 */
|
|
384
384
|
border-color: inherit; /* 2 */
|
|
385
385
|
}
|
|
@@ -394,11 +394,11 @@ Forms
|
|
|
394
394
|
2. Remove the margin in Firefox and Safari.
|
|
395
395
|
*/
|
|
396
396
|
|
|
397
|
-
button,
|
|
398
|
-
input,
|
|
399
|
-
optgroup,
|
|
400
|
-
select,
|
|
401
|
-
textarea {
|
|
397
|
+
.aui-root button,
|
|
398
|
+
.aui-root input,
|
|
399
|
+
.aui-root optgroup,
|
|
400
|
+
.aui-root select,
|
|
401
|
+
.aui-root textarea {
|
|
402
402
|
font-family: inherit; /* 1 */
|
|
403
403
|
font-size: 100%; /* 1 */
|
|
404
404
|
line-height: 1.15; /* 1 */
|
|
@@ -410,8 +410,8 @@ Remove the inheritance of text transform in Edge and Firefox.
|
|
|
410
410
|
1. Remove the inheritance of text transform in Firefox.
|
|
411
411
|
*/
|
|
412
412
|
|
|
413
|
-
button,
|
|
414
|
-
select { /* 1 */
|
|
413
|
+
.aui-root button,
|
|
414
|
+
.aui-root select { /* 1 */
|
|
415
415
|
text-transform: none;
|
|
416
416
|
}
|
|
417
417
|
|
|
@@ -419,8 +419,8 @@ select { /* 1 */
|
|
|
419
419
|
Correct the inability to style clickable types in iOS and Safari.
|
|
420
420
|
*/
|
|
421
421
|
|
|
422
|
-
button,
|
|
423
|
-
[type='button'] {
|
|
422
|
+
.aui-root button,
|
|
423
|
+
.aui-root [type='button'] {
|
|
424
424
|
-webkit-appearance: button;
|
|
425
425
|
}
|
|
426
426
|
|
|
@@ -441,7 +441,7 @@ See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d4
|
|
|
441
441
|
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
442
442
|
*/
|
|
443
443
|
|
|
444
|
-
legend {
|
|
444
|
+
.aui-root legend {
|
|
445
445
|
padding: 0;
|
|
446
446
|
}
|
|
447
447
|
|
|
@@ -449,7 +449,7 @@ legend {
|
|
|
449
449
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
450
450
|
*/
|
|
451
451
|
|
|
452
|
-
progress {
|
|
452
|
+
.aui-root progress {
|
|
453
453
|
vertical-align: baseline;
|
|
454
454
|
}
|
|
455
455
|
|
|
@@ -480,7 +480,7 @@ Interactive
|
|
|
480
480
|
Add the correct display in Chrome and Safari.
|
|
481
481
|
*/
|
|
482
482
|
|
|
483
|
-
summary {
|
|
483
|
+
.aui-root summary {
|
|
484
484
|
display: list-item;
|
|
485
485
|
}
|
|
486
486
|
|
|
@@ -494,44 +494,34 @@ summary {
|
|
|
494
494
|
* Removes the default spacing and border for appropriate elements.
|
|
495
495
|
*/
|
|
496
496
|
|
|
497
|
-
blockquote,
|
|
498
|
-
dl,
|
|
499
|
-
dd,
|
|
500
|
-
h1,
|
|
501
|
-
h2,
|
|
502
|
-
h3,
|
|
503
|
-
h4,
|
|
504
|
-
h5,
|
|
505
|
-
h6,
|
|
506
|
-
hr,
|
|
507
|
-
figure,
|
|
508
|
-
p,
|
|
509
|
-
pre {
|
|
497
|
+
.aui-root blockquote,
|
|
498
|
+
.aui-root dl,
|
|
499
|
+
.aui-root dd,
|
|
500
|
+
.aui-root h1,
|
|
501
|
+
.aui-root h2,
|
|
502
|
+
.aui-root h3,
|
|
503
|
+
.aui-root h4,
|
|
504
|
+
.aui-root h5,
|
|
505
|
+
.aui-root h6,
|
|
506
|
+
.aui-root hr,
|
|
507
|
+
.aui-root figure,
|
|
508
|
+
.aui-root p,
|
|
509
|
+
.aui-root pre {
|
|
510
510
|
margin: 0;
|
|
511
511
|
}
|
|
512
512
|
|
|
513
|
-
button {
|
|
513
|
+
.aui-root button {
|
|
514
514
|
background-color: transparent;
|
|
515
515
|
background-image: none;
|
|
516
516
|
}
|
|
517
517
|
|
|
518
|
-
|
|
519
|
-
* Work around a Firefox/IE bug where the transparent `button` background
|
|
520
|
-
* results in a loss of the default `button` focus styles.
|
|
521
|
-
*/
|
|
522
|
-
|
|
523
|
-
button:focus {
|
|
524
|
-
outline: 1px dotted;
|
|
525
|
-
outline: 5px auto -webkit-focus-ring-color;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
fieldset {
|
|
518
|
+
.aui-root fieldset {
|
|
529
519
|
margin: 0;
|
|
530
520
|
padding: 0;
|
|
531
521
|
}
|
|
532
522
|
|
|
533
|
-
ol,
|
|
534
|
-
ul {
|
|
523
|
+
.aui-root ol,
|
|
524
|
+
.aui-root ul {
|
|
535
525
|
list-style: none;
|
|
536
526
|
margin: 0;
|
|
537
527
|
padding: 0;
|
|
@@ -548,7 +538,7 @@ ul {
|
|
|
548
538
|
* to override it to ensure consistency even when using the default theme.
|
|
549
539
|
*/
|
|
550
540
|
|
|
551
|
-
html {
|
|
541
|
+
.aui-root html {
|
|
552
542
|
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
|
|
553
543
|
line-height: 1.5; /* 2 */
|
|
554
544
|
}
|
|
@@ -558,7 +548,7 @@ html {
|
|
|
558
548
|
* a class directly on the `html` element.
|
|
559
549
|
*/
|
|
560
550
|
|
|
561
|
-
body {
|
|
551
|
+
.aui-root body {
|
|
562
552
|
font-family: inherit;
|
|
563
553
|
line-height: inherit;
|
|
564
554
|
}
|
|
@@ -589,20 +579,20 @@ body {
|
|
|
589
579
|
* https://github.com/tailwindcss/tailwindcss/pull/116
|
|
590
580
|
*/
|
|
591
581
|
|
|
592
|
-
*,
|
|
593
|
-
::before,
|
|
594
|
-
::after {
|
|
582
|
+
.aui-root *,
|
|
583
|
+
.aui-root ::before,
|
|
584
|
+
.aui-root ::after {
|
|
595
585
|
box-sizing: border-box; /* 1 */
|
|
596
586
|
border-width: 0; /* 2 */
|
|
597
587
|
border-style: solid; /* 2 */
|
|
598
|
-
border-color:
|
|
588
|
+
border-color: currentColor; /* 2 */
|
|
599
589
|
}
|
|
600
590
|
|
|
601
591
|
/*
|
|
602
592
|
* Ensure horizontal rules are visible by default
|
|
603
593
|
*/
|
|
604
594
|
|
|
605
|
-
hr {
|
|
595
|
+
.aui-root hr {
|
|
606
596
|
border-top-width: 1px;
|
|
607
597
|
}
|
|
608
598
|
|
|
@@ -616,44 +606,52 @@ hr {
|
|
|
616
606
|
* https://github.com/tailwindcss/tailwindcss/issues/362
|
|
617
607
|
*/
|
|
618
608
|
|
|
619
|
-
img {
|
|
609
|
+
.aui-root img {
|
|
620
610
|
border-style: solid;
|
|
621
611
|
}
|
|
622
612
|
|
|
623
|
-
textarea {
|
|
613
|
+
.aui-root textarea {
|
|
624
614
|
resize: vertical;
|
|
625
615
|
}
|
|
626
616
|
|
|
627
|
-
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
617
|
+
.aui-root input::-moz-placeholder, .aui-root textarea::-moz-placeholder {
|
|
628
618
|
opacity: 1;
|
|
629
619
|
color: #cbd5e0;
|
|
630
620
|
}
|
|
631
621
|
|
|
632
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
622
|
+
.aui-root input:-ms-input-placeholder, .aui-root textarea:-ms-input-placeholder {
|
|
633
623
|
opacity: 1;
|
|
634
624
|
color: #cbd5e0;
|
|
635
625
|
}
|
|
636
626
|
|
|
637
|
-
input::placeholder,
|
|
638
|
-
textarea::placeholder {
|
|
627
|
+
.aui-root input::placeholder,
|
|
628
|
+
.aui-root textarea::placeholder {
|
|
639
629
|
opacity: 1;
|
|
640
630
|
color: #cbd5e0;
|
|
641
631
|
}
|
|
642
632
|
|
|
643
|
-
button {
|
|
633
|
+
.aui-root button {
|
|
644
634
|
cursor: pointer;
|
|
645
635
|
}
|
|
646
636
|
|
|
647
|
-
|
|
637
|
+
/**
|
|
638
|
+
* Override legacy focus reset from Normalize with modern Firefox focus styles.
|
|
639
|
+
*
|
|
640
|
+
* This is actually an improvement over the new defaults in Firefox in our testing,
|
|
641
|
+
* as it triggers the better focus styles even for links, which still use a dotted
|
|
642
|
+
* outline in Firefox by default.
|
|
643
|
+
*/
|
|
644
|
+
|
|
645
|
+
.aui-root table {
|
|
648
646
|
border-collapse: collapse;
|
|
649
647
|
}
|
|
650
648
|
|
|
651
|
-
h1,
|
|
652
|
-
h2,
|
|
653
|
-
h3,
|
|
654
|
-
h4,
|
|
655
|
-
h5,
|
|
656
|
-
h6 {
|
|
649
|
+
.aui-root h1,
|
|
650
|
+
.aui-root h2,
|
|
651
|
+
.aui-root h3,
|
|
652
|
+
.aui-root h4,
|
|
653
|
+
.aui-root h5,
|
|
654
|
+
.aui-root h6 {
|
|
657
655
|
font-size: inherit;
|
|
658
656
|
font-weight: inherit;
|
|
659
657
|
}
|
|
@@ -663,7 +661,7 @@ h6 {
|
|
|
663
661
|
* opt-out.
|
|
664
662
|
*/
|
|
665
663
|
|
|
666
|
-
a {
|
|
664
|
+
.aui-root a {
|
|
667
665
|
color: inherit;
|
|
668
666
|
text-decoration: inherit;
|
|
669
667
|
}
|
|
@@ -676,11 +674,11 @@ a {
|
|
|
676
674
|
* normalize.css.
|
|
677
675
|
*/
|
|
678
676
|
|
|
679
|
-
button,
|
|
680
|
-
input,
|
|
681
|
-
optgroup,
|
|
682
|
-
select,
|
|
683
|
-
textarea {
|
|
677
|
+
.aui-root button,
|
|
678
|
+
.aui-root input,
|
|
679
|
+
.aui-root optgroup,
|
|
680
|
+
.aui-root select,
|
|
681
|
+
.aui-root textarea {
|
|
684
682
|
padding: 0;
|
|
685
683
|
line-height: inherit;
|
|
686
684
|
color: inherit;
|
|
@@ -693,31 +691,40 @@ textarea {
|
|
|
693
691
|
* 'mono' font family.
|
|
694
692
|
*/
|
|
695
693
|
|
|
696
|
-
pre,
|
|
697
|
-
code,
|
|
698
|
-
kbd,
|
|
699
|
-
samp {
|
|
694
|
+
.aui-root pre,
|
|
695
|
+
.aui-root code,
|
|
696
|
+
.aui-root kbd,
|
|
697
|
+
.aui-root samp {
|
|
700
698
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
701
699
|
}
|
|
702
700
|
|
|
703
701
|
/**
|
|
704
|
-
* Make replaced elements `display: block` by default as that's
|
|
705
|
-
*
|
|
706
|
-
*
|
|
702
|
+
* 1. Make replaced elements `display: block` by default as that's
|
|
703
|
+
* the behavior you want almost all of the time. Inspired by
|
|
704
|
+
* CSS Remedy, with `svg` added as well.
|
|
707
705
|
*
|
|
708
|
-
*
|
|
706
|
+
* https://github.com/mozdevs/cssremedy/issues/14
|
|
707
|
+
*
|
|
708
|
+
* 2. Add `vertical-align: middle` to align replaced elements more
|
|
709
|
+
* sensibly by default when overriding `display` by adding a
|
|
710
|
+
* utility like `inline`.
|
|
711
|
+
*
|
|
712
|
+
* This can trigger a poorly considered linting error in some
|
|
713
|
+
* tools but is included by design.
|
|
714
|
+
*
|
|
715
|
+
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
|
|
709
716
|
*/
|
|
710
717
|
|
|
711
|
-
img,
|
|
712
|
-
svg,
|
|
713
|
-
video,
|
|
714
|
-
canvas,
|
|
715
|
-
audio,
|
|
716
|
-
iframe,
|
|
717
|
-
embed,
|
|
718
|
-
object {
|
|
719
|
-
display: block;
|
|
720
|
-
vertical-align: middle;
|
|
718
|
+
.aui-root img,
|
|
719
|
+
.aui-root svg,
|
|
720
|
+
.aui-root video,
|
|
721
|
+
.aui-root canvas,
|
|
722
|
+
.aui-root audio,
|
|
723
|
+
.aui-root iframe,
|
|
724
|
+
.aui-root embed,
|
|
725
|
+
.aui-root object {
|
|
726
|
+
display: block; /* 1 */
|
|
727
|
+
vertical-align: middle; /* 2 */
|
|
721
728
|
}
|
|
722
729
|
|
|
723
730
|
/**
|
|
@@ -727,18 +734,65 @@ object {
|
|
|
727
734
|
* https://github.com/mozdevs/cssremedy/issues/14
|
|
728
735
|
*/
|
|
729
736
|
|
|
730
|
-
img,
|
|
731
|
-
video {
|
|
737
|
+
.aui-root img,
|
|
738
|
+
.aui-root video {
|
|
732
739
|
max-width: 100%;
|
|
733
740
|
height: auto;
|
|
734
741
|
}
|
|
735
742
|
|
|
736
|
-
|
|
743
|
+
/**
|
|
744
|
+
* Ensure the default browser behavior of the `hidden` attribute.
|
|
745
|
+
*/
|
|
746
|
+
|
|
747
|
+
.aui-root [hidden] {
|
|
748
|
+
display: none;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.aui-root *, .aui-root ::before, .aui-root ::after{
|
|
752
|
+
--tw-border-opacity: 1;
|
|
753
|
+
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.aui-root .container{
|
|
757
|
+
width: 100%;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
@media (min-width: 640px){
|
|
761
|
+
.aui-root .container{
|
|
762
|
+
max-width: 640px;
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
@media (min-width: 768px){
|
|
767
|
+
.aui-root .container{
|
|
768
|
+
max-width: 768px;
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
@media (min-width: 1024px){
|
|
773
|
+
.aui-root .container{
|
|
774
|
+
max-width: 1024px;
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
@media (min-width: 1280px){
|
|
779
|
+
.aui-root .container{
|
|
780
|
+
max-width: 1280px;
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
|
|
784
|
+
@media (min-width: 1536px){
|
|
785
|
+
.aui-root .container{
|
|
786
|
+
max-width: 1536px;
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.aui-root .prose{
|
|
737
791
|
color: #4a5568;
|
|
738
792
|
max-width: 65ch;
|
|
739
793
|
}
|
|
740
794
|
|
|
741
|
-
.prose [class~="lead"]{
|
|
795
|
+
.aui-root .prose [class~="lead"]{
|
|
742
796
|
color: #718096;
|
|
743
797
|
font-size: 1.25em;
|
|
744
798
|
line-height: 1.6;
|
|
@@ -746,35 +800,43 @@ video {
|
|
|
746
800
|
margin-bottom: 1.2em;
|
|
747
801
|
}
|
|
748
802
|
|
|
749
|
-
.prose a{
|
|
803
|
+
.aui-root .prose a{
|
|
750
804
|
color: #1a202c;
|
|
751
805
|
text-decoration: underline;
|
|
752
806
|
font-weight: 500;
|
|
753
807
|
}
|
|
754
808
|
|
|
755
|
-
.prose strong{
|
|
809
|
+
.aui-root .prose strong{
|
|
756
810
|
color: #1a202c;
|
|
757
811
|
font-weight: 600;
|
|
758
812
|
}
|
|
759
813
|
|
|
760
|
-
.prose ol[type="a"]{
|
|
814
|
+
.aui-root .prose ol[type="a"]{
|
|
815
|
+
--list-counter-style: lower-alpha;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
.aui-root .prose ol[type="a" s]{
|
|
761
819
|
--list-counter-style: lower-alpha;
|
|
762
820
|
}
|
|
763
821
|
|
|
764
|
-
.prose ol[type="i"]{
|
|
822
|
+
.aui-root .prose ol[type="i"]{
|
|
765
823
|
--list-counter-style: lower-roman;
|
|
766
824
|
}
|
|
767
825
|
|
|
768
|
-
.prose ol[type="
|
|
826
|
+
.aui-root .prose ol[type="i" s]{
|
|
827
|
+
--list-counter-style: lower-roman;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.aui-root .prose ol[type="1"]{
|
|
769
831
|
--list-counter-style: decimal;
|
|
770
832
|
}
|
|
771
833
|
|
|
772
|
-
.prose ol > li{
|
|
834
|
+
.aui-root .prose ol > li{
|
|
773
835
|
position: relative;
|
|
774
836
|
padding-left: 1.75em;
|
|
775
837
|
}
|
|
776
838
|
|
|
777
|
-
.prose ol > li::before{
|
|
839
|
+
.aui-root .prose ol > li::before{
|
|
778
840
|
content: counter(list-item, var(--list-counter-style, decimal)) ".";
|
|
779
841
|
position: absolute;
|
|
780
842
|
font-weight: 400;
|
|
@@ -782,12 +844,12 @@ video {
|
|
|
782
844
|
left: 0;
|
|
783
845
|
}
|
|
784
846
|
|
|
785
|
-
.prose ul > li{
|
|
847
|
+
.aui-root .prose ul > li{
|
|
786
848
|
position: relative;
|
|
787
849
|
padding-left: 1.75em;
|
|
788
850
|
}
|
|
789
851
|
|
|
790
|
-
.prose ul > li::before{
|
|
852
|
+
.aui-root .prose ul > li::before{
|
|
791
853
|
content: "";
|
|
792
854
|
position: absolute;
|
|
793
855
|
background-color: #e2e8f0;
|
|
@@ -798,14 +860,14 @@ video {
|
|
|
798
860
|
left: 0.25em;
|
|
799
861
|
}
|
|
800
862
|
|
|
801
|
-
.prose hr{
|
|
863
|
+
.aui-root .prose hr{
|
|
802
864
|
border-color: #edf2f7;
|
|
803
865
|
border-top-width: 1px;
|
|
804
866
|
margin-top: 3em;
|
|
805
867
|
margin-bottom: 3em;
|
|
806
868
|
}
|
|
807
869
|
|
|
808
|
-
.prose blockquote{
|
|
870
|
+
.aui-root .prose blockquote{
|
|
809
871
|
font-weight: 500;
|
|
810
872
|
font-style: italic;
|
|
811
873
|
color: #1a202c;
|
|
@@ -817,15 +879,15 @@ video {
|
|
|
817
879
|
padding-left: 1em;
|
|
818
880
|
}
|
|
819
881
|
|
|
820
|
-
.prose blockquote p:first-of-type::before{
|
|
882
|
+
.aui-root .prose blockquote p:first-of-type::before{
|
|
821
883
|
content: open-quote;
|
|
822
884
|
}
|
|
823
885
|
|
|
824
|
-
.prose blockquote p:last-of-type::after{
|
|
886
|
+
.aui-root .prose blockquote p:last-of-type::after{
|
|
825
887
|
content: close-quote;
|
|
826
888
|
}
|
|
827
889
|
|
|
828
|
-
.prose h1{
|
|
890
|
+
.aui-root .prose h1{
|
|
829
891
|
color: #1a202c;
|
|
830
892
|
font-weight: 800;
|
|
831
893
|
font-size: 2.25em;
|
|
@@ -834,7 +896,7 @@ video {
|
|
|
834
896
|
line-height: 1.1111111;
|
|
835
897
|
}
|
|
836
898
|
|
|
837
|
-
.prose h2{
|
|
899
|
+
.aui-root .prose h2{
|
|
838
900
|
color: #1a202c;
|
|
839
901
|
font-weight: 700;
|
|
840
902
|
font-size: 1.5em;
|
|
@@ -843,7 +905,7 @@ video {
|
|
|
843
905
|
line-height: 1.3333333;
|
|
844
906
|
}
|
|
845
907
|
|
|
846
|
-
.prose h3{
|
|
908
|
+
.aui-root .prose h3{
|
|
847
909
|
color: #1a202c;
|
|
848
910
|
font-weight: 600;
|
|
849
911
|
font-size: 1.25em;
|
|
@@ -852,7 +914,7 @@ video {
|
|
|
852
914
|
line-height: 1.6;
|
|
853
915
|
}
|
|
854
916
|
|
|
855
|
-
.prose h4{
|
|
917
|
+
.aui-root .prose h4{
|
|
856
918
|
color: #1a202c;
|
|
857
919
|
font-weight: 600;
|
|
858
920
|
margin-top: 1.5em;
|
|
@@ -860,32 +922,32 @@ video {
|
|
|
860
922
|
line-height: 1.5;
|
|
861
923
|
}
|
|
862
924
|
|
|
863
|
-
.prose figure figcaption{
|
|
925
|
+
.aui-root .prose figure figcaption{
|
|
864
926
|
color: #a0aec0;
|
|
865
927
|
font-size: 0.875em;
|
|
866
928
|
line-height: 1.4285714;
|
|
867
929
|
margin-top: 0.8571429em;
|
|
868
930
|
}
|
|
869
931
|
|
|
870
|
-
.prose code{
|
|
932
|
+
.aui-root .prose code{
|
|
871
933
|
color: #1a202c;
|
|
872
934
|
font-weight: 600;
|
|
873
935
|
font-size: 0.875em;
|
|
874
936
|
}
|
|
875
937
|
|
|
876
|
-
.prose code::before{
|
|
938
|
+
.aui-root .prose code::before{
|
|
877
939
|
content: "`";
|
|
878
940
|
}
|
|
879
941
|
|
|
880
|
-
.prose code::after{
|
|
942
|
+
.aui-root .prose code::after{
|
|
881
943
|
content: "`";
|
|
882
944
|
}
|
|
883
945
|
|
|
884
|
-
.prose a code{
|
|
946
|
+
.aui-root .prose a code{
|
|
885
947
|
color: #1a202c;
|
|
886
948
|
}
|
|
887
949
|
|
|
888
|
-
.prose pre{
|
|
950
|
+
.aui-root .prose pre{
|
|
889
951
|
color: #edf2f7;
|
|
890
952
|
background-color: #1a202c;
|
|
891
953
|
overflow-x: auto;
|
|
@@ -900,7 +962,7 @@ video {
|
|
|
900
962
|
padding-left: 1.1428571em;
|
|
901
963
|
}
|
|
902
964
|
|
|
903
|
-
.prose pre code{
|
|
965
|
+
.aui-root .prose pre code{
|
|
904
966
|
background-color: transparent;
|
|
905
967
|
border-width: 0;
|
|
906
968
|
border-radius: 0;
|
|
@@ -912,15 +974,15 @@ video {
|
|
|
912
974
|
line-height: inherit;
|
|
913
975
|
}
|
|
914
976
|
|
|
915
|
-
.prose pre code::before{
|
|
977
|
+
.aui-root .prose pre code::before{
|
|
916
978
|
content: none;
|
|
917
979
|
}
|
|
918
980
|
|
|
919
|
-
.prose pre code::after{
|
|
981
|
+
.aui-root .prose pre code::after{
|
|
920
982
|
content: none;
|
|
921
983
|
}
|
|
922
984
|
|
|
923
|
-
.prose table{
|
|
985
|
+
.aui-root .prose table{
|
|
924
986
|
width: 100%;
|
|
925
987
|
table-layout: auto;
|
|
926
988
|
text-align: left;
|
|
@@ -930,30 +992,30 @@ video {
|
|
|
930
992
|
line-height: 1.7142857;
|
|
931
993
|
}
|
|
932
994
|
|
|
933
|
-
.prose thead{
|
|
995
|
+
.aui-root .prose thead{
|
|
934
996
|
color: #1a202c;
|
|
935
997
|
font-weight: 600;
|
|
936
998
|
border-bottom-width: 1px;
|
|
937
999
|
border-bottom-color: #e2e8f0;
|
|
938
1000
|
}
|
|
939
1001
|
|
|
940
|
-
.prose thead th{
|
|
1002
|
+
.aui-root .prose thead th{
|
|
941
1003
|
vertical-align: bottom;
|
|
942
1004
|
padding-right: 0.5714286em;
|
|
943
1005
|
padding-bottom: 0.5714286em;
|
|
944
1006
|
padding-left: 0.5714286em;
|
|
945
1007
|
}
|
|
946
1008
|
|
|
947
|
-
.prose tbody tr{
|
|
1009
|
+
.aui-root .prose tbody tr{
|
|
948
1010
|
border-bottom-width: 1px;
|
|
949
1011
|
border-bottom-color: #edf2f7;
|
|
950
1012
|
}
|
|
951
1013
|
|
|
952
|
-
.prose tbody tr:last-child{
|
|
1014
|
+
.aui-root .prose tbody tr:last-child{
|
|
953
1015
|
border-bottom-width: 0;
|
|
954
1016
|
}
|
|
955
1017
|
|
|
956
|
-
.prose tbody td{
|
|
1018
|
+
.aui-root .prose tbody td{
|
|
957
1019
|
vertical-align: top;
|
|
958
1020
|
padding-top: 0.5714286em;
|
|
959
1021
|
padding-right: 0.5714286em;
|
|
@@ -961,950 +1023,964 @@ video {
|
|
|
961
1023
|
padding-left: 0.5714286em;
|
|
962
1024
|
}
|
|
963
1025
|
|
|
964
|
-
.prose{
|
|
1026
|
+
.aui-root .prose{
|
|
965
1027
|
font-size: 1rem;
|
|
966
1028
|
line-height: 1.75;
|
|
967
1029
|
}
|
|
968
1030
|
|
|
969
|
-
.prose p{
|
|
1031
|
+
.aui-root .prose p{
|
|
970
1032
|
margin-top: 1.25em;
|
|
971
1033
|
margin-bottom: 1.25em;
|
|
972
1034
|
}
|
|
973
1035
|
|
|
974
|
-
.prose img{
|
|
1036
|
+
.aui-root .prose img{
|
|
975
1037
|
margin-top: 2em;
|
|
976
1038
|
margin-bottom: 2em;
|
|
977
1039
|
}
|
|
978
1040
|
|
|
979
|
-
.prose video{
|
|
1041
|
+
.aui-root .prose video{
|
|
980
1042
|
margin-top: 2em;
|
|
981
1043
|
margin-bottom: 2em;
|
|
982
1044
|
}
|
|
983
1045
|
|
|
984
|
-
.prose figure{
|
|
1046
|
+
.aui-root .prose figure{
|
|
985
1047
|
margin-top: 2em;
|
|
986
1048
|
margin-bottom: 2em;
|
|
987
1049
|
}
|
|
988
1050
|
|
|
989
|
-
.prose figure > *{
|
|
1051
|
+
.aui-root .prose figure > *{
|
|
990
1052
|
margin-top: 0;
|
|
991
1053
|
margin-bottom: 0;
|
|
992
1054
|
}
|
|
993
1055
|
|
|
994
|
-
.prose h2 code{
|
|
1056
|
+
.aui-root .prose h2 code{
|
|
995
1057
|
font-size: 0.875em;
|
|
996
1058
|
}
|
|
997
1059
|
|
|
998
|
-
.prose h3 code{
|
|
1060
|
+
.aui-root .prose h3 code{
|
|
999
1061
|
font-size: 0.9em;
|
|
1000
1062
|
}
|
|
1001
1063
|
|
|
1002
|
-
.prose ol{
|
|
1064
|
+
.aui-root .prose ol{
|
|
1003
1065
|
margin-top: 1.25em;
|
|
1004
1066
|
margin-bottom: 1.25em;
|
|
1005
1067
|
}
|
|
1006
1068
|
|
|
1007
|
-
.prose ul{
|
|
1069
|
+
.aui-root .prose ul{
|
|
1008
1070
|
margin-top: 1.25em;
|
|
1009
1071
|
margin-bottom: 1.25em;
|
|
1010
1072
|
}
|
|
1011
1073
|
|
|
1012
|
-
.prose li{
|
|
1074
|
+
.aui-root .prose li{
|
|
1013
1075
|
margin-top: 0.5em;
|
|
1014
1076
|
margin-bottom: 0.5em;
|
|
1015
1077
|
}
|
|
1016
1078
|
|
|
1017
|
-
.prose > ul > li p{
|
|
1079
|
+
.aui-root .prose > ul > li p{
|
|
1018
1080
|
margin-top: 0.75em;
|
|
1019
1081
|
margin-bottom: 0.75em;
|
|
1020
1082
|
}
|
|
1021
1083
|
|
|
1022
|
-
.prose > ul > li > *:first-child{
|
|
1084
|
+
.aui-root .prose > ul > li > *:first-child{
|
|
1023
1085
|
margin-top: 1.25em;
|
|
1024
1086
|
}
|
|
1025
1087
|
|
|
1026
|
-
.prose > ul > li > *:last-child{
|
|
1088
|
+
.aui-root .prose > ul > li > *:last-child{
|
|
1027
1089
|
margin-bottom: 1.25em;
|
|
1028
1090
|
}
|
|
1029
1091
|
|
|
1030
|
-
.prose > ol > li > *:first-child{
|
|
1092
|
+
.aui-root .prose > ol > li > *:first-child{
|
|
1031
1093
|
margin-top: 1.25em;
|
|
1032
1094
|
}
|
|
1033
1095
|
|
|
1034
|
-
.prose > ol > li > *:last-child{
|
|
1096
|
+
.aui-root .prose > ol > li > *:last-child{
|
|
1035
1097
|
margin-bottom: 1.25em;
|
|
1036
1098
|
}
|
|
1037
1099
|
|
|
1038
|
-
.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
|
|
1100
|
+
.aui-root .prose ul ul, .aui-root .prose ul ol, .aui-root .prose ol ul, .aui-root .prose ol ol{
|
|
1039
1101
|
margin-top: 0.75em;
|
|
1040
1102
|
margin-bottom: 0.75em;
|
|
1041
1103
|
}
|
|
1042
1104
|
|
|
1043
|
-
.prose hr + *{
|
|
1105
|
+
.aui-root .prose hr + *{
|
|
1044
1106
|
margin-top: 0;
|
|
1045
1107
|
}
|
|
1046
1108
|
|
|
1047
|
-
.prose h2 + *{
|
|
1109
|
+
.aui-root .prose h2 + *{
|
|
1048
1110
|
margin-top: 0;
|
|
1049
1111
|
}
|
|
1050
1112
|
|
|
1051
|
-
.prose h3 + *{
|
|
1113
|
+
.aui-root .prose h3 + *{
|
|
1052
1114
|
margin-top: 0;
|
|
1053
1115
|
}
|
|
1054
1116
|
|
|
1055
|
-
.prose h4 + *{
|
|
1117
|
+
.aui-root .prose h4 + *{
|
|
1056
1118
|
margin-top: 0;
|
|
1057
1119
|
}
|
|
1058
1120
|
|
|
1059
|
-
.prose thead th:first-child{
|
|
1121
|
+
.aui-root .prose thead th:first-child{
|
|
1060
1122
|
padding-left: 0;
|
|
1061
1123
|
}
|
|
1062
1124
|
|
|
1063
|
-
.prose thead th:last-child{
|
|
1125
|
+
.aui-root .prose thead th:last-child{
|
|
1064
1126
|
padding-right: 0;
|
|
1065
1127
|
}
|
|
1066
1128
|
|
|
1067
|
-
.prose tbody td:first-child{
|
|
1129
|
+
.aui-root .prose tbody td:first-child{
|
|
1068
1130
|
padding-left: 0;
|
|
1069
1131
|
}
|
|
1070
1132
|
|
|
1071
|
-
.prose tbody td:last-child{
|
|
1133
|
+
.aui-root .prose tbody td:last-child{
|
|
1072
1134
|
padding-right: 0;
|
|
1073
1135
|
}
|
|
1074
1136
|
|
|
1075
|
-
.prose > :first-child{
|
|
1137
|
+
.aui-root .prose > :first-child{
|
|
1076
1138
|
margin-top: 0;
|
|
1077
1139
|
}
|
|
1078
1140
|
|
|
1079
|
-
.prose > :last-child{
|
|
1141
|
+
.aui-root .prose > :last-child{
|
|
1080
1142
|
margin-bottom: 0;
|
|
1081
1143
|
}
|
|
1082
1144
|
|
|
1083
1145
|
@media (min-width: 1024px){
|
|
1084
|
-
.container\:base .burger-menu{
|
|
1146
|
+
.aui-root .container\:base .burger-menu{
|
|
1085
1147
|
display: none;
|
|
1086
1148
|
}
|
|
1087
1149
|
}
|
|
1088
1150
|
|
|
1089
|
-
.container\:xl .burger-menu {
|
|
1151
|
+
.aui-root .container\:xl .burger-menu {
|
|
1090
1152
|
}
|
|
1091
1153
|
|
|
1092
1154
|
@media (min-width: 1024px){
|
|
1093
|
-
.container\:base .sidebar{
|
|
1155
|
+
.aui-root .container\:base .sidebar{
|
|
1156
|
+
position: relative;
|
|
1094
1157
|
display: block;
|
|
1095
1158
|
height: auto;
|
|
1096
|
-
position: relative;
|
|
1097
1159
|
width: 16rem;
|
|
1098
1160
|
}
|
|
1099
1161
|
}
|
|
1100
1162
|
|
|
1101
|
-
.container\:xl .sidebar {
|
|
1163
|
+
.aui-root .container\:xl .sidebar {
|
|
1102
1164
|
}
|
|
1103
1165
|
|
|
1104
1166
|
@media (min-width: 1024px){
|
|
1105
|
-
.container\:base .sidebar--content{
|
|
1167
|
+
.aui-root .container\:base .sidebar--content{
|
|
1106
1168
|
width: 14rem;
|
|
1107
1169
|
}
|
|
1108
1170
|
}
|
|
1109
1171
|
|
|
1110
|
-
.container\:xl .sidebar--content {
|
|
1172
|
+
.aui-root .container\:xl .sidebar--content {
|
|
1111
1173
|
position: absolute;
|
|
1112
1174
|
left: 50%;
|
|
1113
1175
|
transform: translate(-50%, 0);
|
|
1114
1176
|
}
|
|
1115
1177
|
|
|
1116
1178
|
@media (min-width: 1536px){
|
|
1117
|
-
.container\:base .panel-item{
|
|
1179
|
+
.aui-root .container\:base .panel-item{
|
|
1118
1180
|
display: flex;
|
|
1119
1181
|
}
|
|
1120
1182
|
}
|
|
1121
1183
|
|
|
1122
|
-
.container\:xl .panel-item {
|
|
1184
|
+
.aui-root .container\:xl .panel-item {
|
|
1123
1185
|
display: block;
|
|
1124
1186
|
}
|
|
1125
1187
|
|
|
1126
1188
|
@media (min-width: 1536px){
|
|
1127
|
-
.container\:base .panel--center .panel-item--center{
|
|
1189
|
+
.aui-root .container\:base .panel--center .panel-item--center{
|
|
1128
1190
|
width: 58.333333%;
|
|
1129
1191
|
}
|
|
1130
1192
|
}
|
|
1131
1193
|
|
|
1132
1194
|
@media (min-width: 1536px){
|
|
1133
|
-
.container\:base .panel--center .panel-item--right{
|
|
1195
|
+
.aui-root .container\:base .panel--center .panel-item--right{
|
|
1134
1196
|
width: 41.666667%;
|
|
1135
1197
|
}
|
|
1136
1198
|
}
|
|
1137
1199
|
|
|
1138
|
-
.container\:xl .panel--center .panel-item--center {
|
|
1200
|
+
.aui-root .container\:xl .panel--center .panel-item--center {
|
|
1139
1201
|
width: 100%;
|
|
1140
1202
|
}
|
|
1141
1203
|
|
|
1142
|
-
.container\:xl .panel--center .panel-item--right {
|
|
1204
|
+
.aui-root .container\:xl .panel--center .panel-item--right {
|
|
1143
1205
|
width: 100%;
|
|
1144
1206
|
}
|
|
1145
1207
|
|
|
1146
1208
|
@media (min-width: 1536px){
|
|
1147
|
-
.container\:base .examples{
|
|
1209
|
+
.aui-root .container\:base .examples{
|
|
1148
1210
|
margin-top: 0px;
|
|
1149
1211
|
padding: 0px;
|
|
1150
1212
|
}
|
|
1151
1213
|
}
|
|
1152
1214
|
|
|
1153
|
-
.container\:xl .examples {
|
|
1215
|
+
.aui-root .container\:xl .examples {
|
|
1154
1216
|
}
|
|
1155
1217
|
|
|
1156
|
-
.container\:base .panel--right {
|
|
1218
|
+
.aui-root .container\:base .panel--right {
|
|
1157
1219
|
display: none;
|
|
1158
1220
|
}
|
|
1159
1221
|
|
|
1160
1222
|
@media (min-width: 1536px){
|
|
1161
|
-
.container\:base .panel--right{
|
|
1223
|
+
.aui-root .container\:base .panel--right{
|
|
1162
1224
|
display: block;
|
|
1163
1225
|
width: 41.666667%;
|
|
1164
1226
|
}
|
|
1165
1227
|
}
|
|
1166
1228
|
|
|
1167
|
-
.container\:xl .panel--right {
|
|
1229
|
+
.aui-root .container\:xl .panel--right {
|
|
1168
1230
|
display: none;
|
|
1169
1231
|
}
|
|
1170
1232
|
|
|
1171
|
-
.
|
|
1172
|
-
|
|
1173
|
-
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1174
|
-
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1233
|
+
.aui-root .prose pre {
|
|
1234
|
+
white-space: pre-wrap;
|
|
1175
1235
|
}
|
|
1176
1236
|
|
|
1177
|
-
.
|
|
1178
|
-
|
|
1179
|
-
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1180
|
-
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1237
|
+
.aui-root .fixed{
|
|
1238
|
+
position: fixed;
|
|
1181
1239
|
}
|
|
1182
1240
|
|
|
1183
|
-
.
|
|
1184
|
-
|
|
1185
|
-
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
1241
|
+
.aui-root .absolute{
|
|
1242
|
+
position: absolute;
|
|
1186
1243
|
}
|
|
1187
1244
|
|
|
1188
|
-
.
|
|
1189
|
-
|
|
1190
|
-
background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
|
|
1245
|
+
.aui-root .relative{
|
|
1246
|
+
position: relative;
|
|
1191
1247
|
}
|
|
1192
1248
|
|
|
1193
|
-
.
|
|
1194
|
-
|
|
1195
|
-
background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
|
|
1249
|
+
.aui-root .top-0{
|
|
1250
|
+
top: 0px;
|
|
1196
1251
|
}
|
|
1197
1252
|
|
|
1198
|
-
.
|
|
1199
|
-
|
|
1200
|
-
background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
|
|
1253
|
+
.aui-root .right-0{
|
|
1254
|
+
right: 0px;
|
|
1201
1255
|
}
|
|
1202
1256
|
|
|
1203
|
-
.
|
|
1204
|
-
|
|
1205
|
-
background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
|
|
1257
|
+
.aui-root .right-8{
|
|
1258
|
+
right: 2rem;
|
|
1206
1259
|
}
|
|
1207
1260
|
|
|
1208
|
-
.
|
|
1209
|
-
|
|
1210
|
-
background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
|
|
1261
|
+
.aui-root .bottom-16{
|
|
1262
|
+
bottom: 4rem;
|
|
1211
1263
|
}
|
|
1212
1264
|
|
|
1213
|
-
.
|
|
1214
|
-
|
|
1215
|
-
background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
|
|
1265
|
+
.aui-root .z-10{
|
|
1266
|
+
z-index: 10;
|
|
1216
1267
|
}
|
|
1217
1268
|
|
|
1218
|
-
.
|
|
1219
|
-
|
|
1220
|
-
background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
|
|
1269
|
+
.aui-root .z-20{
|
|
1270
|
+
z-index: 20;
|
|
1221
1271
|
}
|
|
1222
1272
|
|
|
1223
|
-
.
|
|
1224
|
-
|
|
1225
|
-
background-color: rgba(66, 153, 225, var(--tw-bg-opacity));
|
|
1273
|
+
.aui-root .z-30{
|
|
1274
|
+
z-index: 30;
|
|
1226
1275
|
}
|
|
1227
1276
|
|
|
1228
|
-
.
|
|
1229
|
-
|
|
1230
|
-
|
|
1277
|
+
.aui-root .mx-2{
|
|
1278
|
+
margin-left: 0.5rem;
|
|
1279
|
+
margin-right: 0.5rem;
|
|
1231
1280
|
}
|
|
1232
1281
|
|
|
1233
|
-
.
|
|
1234
|
-
|
|
1235
|
-
|
|
1282
|
+
.aui-root .-mx-8{
|
|
1283
|
+
margin-left: -2rem;
|
|
1284
|
+
margin-right: -2rem;
|
|
1236
1285
|
}
|
|
1237
1286
|
|
|
1238
|
-
.
|
|
1239
|
-
|
|
1240
|
-
|
|
1287
|
+
.aui-root .my-2{
|
|
1288
|
+
margin-top: 0.5rem;
|
|
1289
|
+
margin-bottom: 0.5rem;
|
|
1241
1290
|
}
|
|
1242
1291
|
|
|
1243
|
-
.
|
|
1244
|
-
|
|
1245
|
-
background-color: rgba(251, 211, 141, var(--tw-bg-opacity));
|
|
1292
|
+
.aui-root .mt-1{
|
|
1293
|
+
margin-top: 0.25rem;
|
|
1246
1294
|
}
|
|
1247
1295
|
|
|
1248
|
-
.
|
|
1249
|
-
|
|
1250
|
-
background-color: rgba(144, 205, 244, var(--tw-bg-opacity));
|
|
1296
|
+
.aui-root .mt-2{
|
|
1297
|
+
margin-top: 0.5rem;
|
|
1251
1298
|
}
|
|
1252
1299
|
|
|
1253
|
-
.
|
|
1254
|
-
|
|
1255
|
-
background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
|
|
1300
|
+
.aui-root .mt-4{
|
|
1301
|
+
margin-top: 1rem;
|
|
1256
1302
|
}
|
|
1257
1303
|
|
|
1258
|
-
.
|
|
1259
|
-
|
|
1260
|
-
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
1304
|
+
.aui-root .mt-9{
|
|
1305
|
+
margin-top: 2.25rem;
|
|
1261
1306
|
}
|
|
1262
1307
|
|
|
1263
|
-
.
|
|
1264
|
-
|
|
1265
|
-
border-color: rgba(245, 101, 101, var(--tw-border-opacity));
|
|
1308
|
+
.aui-root .mt-10{
|
|
1309
|
+
margin-top: 2.5rem;
|
|
1266
1310
|
}
|
|
1267
1311
|
|
|
1268
|
-
.
|
|
1269
|
-
|
|
1270
|
-
border-color: rgba(251, 211, 141, var(--tw-border-opacity));
|
|
1312
|
+
.aui-root .mt-16{
|
|
1313
|
+
margin-top: 4rem;
|
|
1271
1314
|
}
|
|
1272
1315
|
|
|
1273
|
-
.
|
|
1274
|
-
|
|
1275
|
-
border-color: rgba(56, 161, 105, var(--tw-border-opacity));
|
|
1316
|
+
.aui-root .mr-1{
|
|
1317
|
+
margin-right: 0.25rem;
|
|
1276
1318
|
}
|
|
1277
1319
|
|
|
1278
|
-
.
|
|
1279
|
-
|
|
1280
|
-
border-color: rgba(144, 205, 244, var(--tw-border-opacity));
|
|
1320
|
+
.aui-root .mr-2{
|
|
1321
|
+
margin-right: 0.5rem;
|
|
1281
1322
|
}
|
|
1282
1323
|
|
|
1283
|
-
.
|
|
1284
|
-
|
|
1285
|
-
border-color: rgba(49, 130, 206, var(--tw-border-opacity));
|
|
1324
|
+
.aui-root .mb-2{
|
|
1325
|
+
margin-bottom: 0.5rem;
|
|
1286
1326
|
}
|
|
1287
1327
|
|
|
1288
|
-
.
|
|
1289
|
-
|
|
1290
|
-
border-color: rgba(214, 188, 250, var(--tw-border-opacity));
|
|
1328
|
+
.aui-root .mb-3{
|
|
1329
|
+
margin-bottom: 0.75rem;
|
|
1291
1330
|
}
|
|
1292
1331
|
|
|
1293
|
-
.
|
|
1294
|
-
|
|
1332
|
+
.aui-root .mb-4{
|
|
1333
|
+
margin-bottom: 1rem;
|
|
1295
1334
|
}
|
|
1296
1335
|
|
|
1297
|
-
.
|
|
1298
|
-
|
|
1336
|
+
.aui-root .mb-12{
|
|
1337
|
+
margin-bottom: 3rem;
|
|
1299
1338
|
}
|
|
1300
1339
|
|
|
1301
|
-
.
|
|
1302
|
-
|
|
1340
|
+
.aui-root .-mb-1{
|
|
1341
|
+
margin-bottom: -0.25rem;
|
|
1303
1342
|
}
|
|
1304
1343
|
|
|
1305
|
-
.
|
|
1306
|
-
|
|
1344
|
+
.aui-root .ml-0{
|
|
1345
|
+
margin-left: 0px;
|
|
1307
1346
|
}
|
|
1308
1347
|
|
|
1309
|
-
.
|
|
1310
|
-
|
|
1348
|
+
.aui-root .ml-1{
|
|
1349
|
+
margin-left: 0.25rem;
|
|
1311
1350
|
}
|
|
1312
1351
|
|
|
1313
|
-
.
|
|
1314
|
-
|
|
1352
|
+
.aui-root .ml-2{
|
|
1353
|
+
margin-left: 0.5rem;
|
|
1354
|
+
}
|
|
1355
|
+
|
|
1356
|
+
.aui-root .ml-0\.5{
|
|
1357
|
+
margin-left: 0.125rem;
|
|
1315
1358
|
}
|
|
1316
1359
|
|
|
1317
|
-
.block{
|
|
1360
|
+
.aui-root .block{
|
|
1318
1361
|
display: block;
|
|
1319
1362
|
}
|
|
1320
1363
|
|
|
1321
|
-
.inline-block{
|
|
1364
|
+
.aui-root .inline-block{
|
|
1322
1365
|
display: inline-block;
|
|
1323
1366
|
}
|
|
1324
1367
|
|
|
1325
|
-
.flex{
|
|
1368
|
+
.aui-root .flex{
|
|
1326
1369
|
display: flex;
|
|
1327
1370
|
}
|
|
1328
1371
|
|
|
1329
|
-
.table{
|
|
1372
|
+
.aui-root .table{
|
|
1330
1373
|
display: table;
|
|
1331
1374
|
}
|
|
1332
1375
|
|
|
1333
|
-
.hidden{
|
|
1376
|
+
.aui-root .hidden{
|
|
1334
1377
|
display: none;
|
|
1335
1378
|
}
|
|
1336
1379
|
|
|
1337
|
-
.
|
|
1338
|
-
|
|
1380
|
+
.aui-root .h-5{
|
|
1381
|
+
height: 1.25rem;
|
|
1339
1382
|
}
|
|
1340
1383
|
|
|
1341
|
-
.
|
|
1342
|
-
|
|
1384
|
+
.aui-root .h-6{
|
|
1385
|
+
height: 1.5rem;
|
|
1343
1386
|
}
|
|
1344
1387
|
|
|
1345
|
-
.
|
|
1346
|
-
|
|
1388
|
+
.aui-root .h-16{
|
|
1389
|
+
height: 4rem;
|
|
1347
1390
|
}
|
|
1348
1391
|
|
|
1349
|
-
.
|
|
1350
|
-
|
|
1392
|
+
.aui-root .h-full{
|
|
1393
|
+
height: 100%;
|
|
1351
1394
|
}
|
|
1352
1395
|
|
|
1353
|
-
.
|
|
1354
|
-
|
|
1396
|
+
.aui-root .max-h-screen{
|
|
1397
|
+
max-height: 100vh;
|
|
1355
1398
|
}
|
|
1356
1399
|
|
|
1357
|
-
.
|
|
1358
|
-
|
|
1400
|
+
.aui-root .w-5{
|
|
1401
|
+
width: 1.25rem;
|
|
1359
1402
|
}
|
|
1360
1403
|
|
|
1361
|
-
.
|
|
1362
|
-
|
|
1404
|
+
.aui-root .w-16{
|
|
1405
|
+
width: 4rem;
|
|
1363
1406
|
}
|
|
1364
1407
|
|
|
1365
|
-
.
|
|
1366
|
-
|
|
1408
|
+
.aui-root .w-20{
|
|
1409
|
+
width: 5rem;
|
|
1367
1410
|
}
|
|
1368
1411
|
|
|
1369
|
-
.
|
|
1370
|
-
|
|
1412
|
+
.aui-root .w-64{
|
|
1413
|
+
width: 16rem;
|
|
1371
1414
|
}
|
|
1372
1415
|
|
|
1373
|
-
.
|
|
1374
|
-
|
|
1416
|
+
.aui-root .w-full{
|
|
1417
|
+
width: 100%;
|
|
1375
1418
|
}
|
|
1376
1419
|
|
|
1377
|
-
.
|
|
1378
|
-
|
|
1420
|
+
.aui-root .min-w-1\/4{
|
|
1421
|
+
min-width: 25%;
|
|
1379
1422
|
}
|
|
1380
1423
|
|
|
1381
|
-
.
|
|
1382
|
-
|
|
1424
|
+
.aui-root .max-w-none{
|
|
1425
|
+
max-width: none;
|
|
1383
1426
|
}
|
|
1384
1427
|
|
|
1385
|
-
.
|
|
1386
|
-
|
|
1428
|
+
.aui-root .flex-1{
|
|
1429
|
+
flex: 1 1 0%;
|
|
1387
1430
|
}
|
|
1388
1431
|
|
|
1389
|
-
.
|
|
1390
|
-
|
|
1432
|
+
.aui-root .transform{
|
|
1433
|
+
--tw-translate-x: 0;
|
|
1434
|
+
--tw-translate-y: 0;
|
|
1435
|
+
--tw-rotate: 0;
|
|
1436
|
+
--tw-skew-x: 0;
|
|
1437
|
+
--tw-skew-y: 0;
|
|
1438
|
+
--tw-scale-x: 1;
|
|
1439
|
+
--tw-scale-y: 1;
|
|
1440
|
+
transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1391
1441
|
}
|
|
1392
1442
|
|
|
1393
|
-
.
|
|
1394
|
-
|
|
1443
|
+
.aui-root .-rotate-180{
|
|
1444
|
+
--tw-rotate: -180deg;
|
|
1395
1445
|
}
|
|
1396
1446
|
|
|
1397
|
-
.
|
|
1398
|
-
|
|
1447
|
+
.aui-root .-rotate-90{
|
|
1448
|
+
--tw-rotate: -90deg;
|
|
1399
1449
|
}
|
|
1400
1450
|
|
|
1401
|
-
|
|
1402
|
-
|
|
1451
|
+
@-webkit-keyframes spin{
|
|
1452
|
+
to{
|
|
1453
|
+
transform: rotate(360deg);
|
|
1454
|
+
}
|
|
1403
1455
|
}
|
|
1404
1456
|
|
|
1405
|
-
|
|
1406
|
-
|
|
1457
|
+
@keyframes spin{
|
|
1458
|
+
to{
|
|
1459
|
+
transform: rotate(360deg);
|
|
1460
|
+
}
|
|
1407
1461
|
}
|
|
1408
1462
|
|
|
1409
|
-
|
|
1410
|
-
|
|
1463
|
+
@-webkit-keyframes ping{
|
|
1464
|
+
75%, 100%{
|
|
1465
|
+
transform: scale(2);
|
|
1466
|
+
opacity: 0;
|
|
1467
|
+
}
|
|
1411
1468
|
}
|
|
1412
1469
|
|
|
1413
|
-
|
|
1414
|
-
|
|
1470
|
+
@keyframes ping{
|
|
1471
|
+
75%, 100%{
|
|
1472
|
+
transform: scale(2);
|
|
1473
|
+
opacity: 0;
|
|
1474
|
+
}
|
|
1415
1475
|
}
|
|
1416
1476
|
|
|
1417
|
-
|
|
1418
|
-
|
|
1477
|
+
@-webkit-keyframes pulse{
|
|
1478
|
+
50%{
|
|
1479
|
+
opacity: .5;
|
|
1480
|
+
}
|
|
1419
1481
|
}
|
|
1420
1482
|
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1483
|
+
@keyframes pulse{
|
|
1484
|
+
50%{
|
|
1485
|
+
opacity: .5;
|
|
1486
|
+
}
|
|
1424
1487
|
}
|
|
1425
1488
|
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1489
|
+
@-webkit-keyframes bounce{
|
|
1490
|
+
0%, 100%{
|
|
1491
|
+
transform: translateY(-25%);
|
|
1492
|
+
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1493
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1494
|
+
}
|
|
1430
1495
|
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1496
|
+
50%{
|
|
1497
|
+
transform: none;
|
|
1498
|
+
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1499
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1500
|
+
}
|
|
1434
1501
|
}
|
|
1435
1502
|
|
|
1436
|
-
|
|
1437
|
-
|
|
1503
|
+
@keyframes bounce{
|
|
1504
|
+
0%, 100%{
|
|
1505
|
+
transform: translateY(-25%);
|
|
1506
|
+
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1507
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1508
|
+
}
|
|
1509
|
+
|
|
1510
|
+
50%{
|
|
1511
|
+
transform: none;
|
|
1512
|
+
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1513
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1514
|
+
}
|
|
1438
1515
|
}
|
|
1439
1516
|
|
|
1440
|
-
.
|
|
1441
|
-
|
|
1517
|
+
.aui-root .cursor-pointer{
|
|
1518
|
+
cursor: pointer;
|
|
1442
1519
|
}
|
|
1443
1520
|
|
|
1444
|
-
.
|
|
1445
|
-
|
|
1521
|
+
.aui-root .flex-wrap{
|
|
1522
|
+
flex-wrap: wrap;
|
|
1446
1523
|
}
|
|
1447
1524
|
|
|
1448
|
-
.
|
|
1449
|
-
|
|
1525
|
+
.aui-root .items-center{
|
|
1526
|
+
align-items: center;
|
|
1450
1527
|
}
|
|
1451
1528
|
|
|
1452
|
-
.
|
|
1453
|
-
|
|
1529
|
+
.aui-root .justify-center{
|
|
1530
|
+
justify-content: center;
|
|
1454
1531
|
}
|
|
1455
1532
|
|
|
1456
|
-
.
|
|
1457
|
-
|
|
1533
|
+
.aui-root .space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
1534
|
+
--tw-space-x-reverse: 0;
|
|
1535
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1536
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1458
1537
|
}
|
|
1459
1538
|
|
|
1460
|
-
.
|
|
1461
|
-
|
|
1539
|
+
.aui-root .space-y-2 > :not([hidden]) ~ :not([hidden]){
|
|
1540
|
+
--tw-space-y-reverse: 0;
|
|
1541
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1542
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1462
1543
|
}
|
|
1463
1544
|
|
|
1464
|
-
.
|
|
1465
|
-
|
|
1545
|
+
.aui-root .overflow-auto{
|
|
1546
|
+
overflow: auto;
|
|
1466
1547
|
}
|
|
1467
1548
|
|
|
1468
|
-
.
|
|
1469
|
-
|
|
1549
|
+
.aui-root .overflow-y-auto{
|
|
1550
|
+
overflow-y: auto;
|
|
1470
1551
|
}
|
|
1471
1552
|
|
|
1472
|
-
.
|
|
1473
|
-
|
|
1553
|
+
.aui-root .whitespace-pre-wrap{
|
|
1554
|
+
white-space: pre-wrap;
|
|
1474
1555
|
}
|
|
1475
1556
|
|
|
1476
|
-
.
|
|
1477
|
-
|
|
1557
|
+
.aui-root .break-words{
|
|
1558
|
+
overflow-wrap: break-word;
|
|
1478
1559
|
}
|
|
1479
1560
|
|
|
1480
|
-
.
|
|
1481
|
-
|
|
1561
|
+
.aui-root .break-all{
|
|
1562
|
+
word-break: break-all;
|
|
1482
1563
|
}
|
|
1483
1564
|
|
|
1484
|
-
.
|
|
1485
|
-
|
|
1565
|
+
.aui-root .rounded{
|
|
1566
|
+
border-radius: 0.25rem;
|
|
1486
1567
|
}
|
|
1487
1568
|
|
|
1488
|
-
.
|
|
1489
|
-
|
|
1569
|
+
.aui-root .rounded-full{
|
|
1570
|
+
border-radius: 9999px;
|
|
1490
1571
|
}
|
|
1491
1572
|
|
|
1492
|
-
|
|
1493
|
-
|
|
1573
|
+
.aui-root .border{
|
|
1574
|
+
border-width: 1px;
|
|
1494
1575
|
}
|
|
1495
1576
|
|
|
1496
|
-
.
|
|
1497
|
-
|
|
1577
|
+
.aui-root .border-l-8{
|
|
1578
|
+
border-left-width: 8px;
|
|
1498
1579
|
}
|
|
1499
1580
|
|
|
1500
|
-
.
|
|
1501
|
-
|
|
1581
|
+
.aui-root .border-solid{
|
|
1582
|
+
border-style: solid;
|
|
1502
1583
|
}
|
|
1503
1584
|
|
|
1504
|
-
.
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
min-width: min-content;
|
|
1585
|
+
.aui-root .border-gray-400{
|
|
1586
|
+
--tw-border-opacity: 1;
|
|
1587
|
+
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
1508
1588
|
}
|
|
1509
1589
|
|
|
1510
|
-
.
|
|
1511
|
-
|
|
1512
|
-
|
|
1590
|
+
.aui-root .border-red-500{
|
|
1591
|
+
--tw-border-opacity: 1;
|
|
1592
|
+
border-color: rgba(245, 101, 101, var(--tw-border-opacity));
|
|
1513
1593
|
}
|
|
1514
1594
|
|
|
1515
|
-
.
|
|
1516
|
-
|
|
1595
|
+
.aui-root .border-orange-300{
|
|
1596
|
+
--tw-border-opacity: 1;
|
|
1597
|
+
border-color: rgba(251, 211, 141, var(--tw-border-opacity));
|
|
1517
1598
|
}
|
|
1518
1599
|
|
|
1519
|
-
.
|
|
1520
|
-
|
|
1600
|
+
.aui-root .border-green-600{
|
|
1601
|
+
--tw-border-opacity: 1;
|
|
1602
|
+
border-color: rgba(56, 161, 105, var(--tw-border-opacity));
|
|
1521
1603
|
}
|
|
1522
1604
|
|
|
1523
|
-
.
|
|
1524
|
-
|
|
1605
|
+
.aui-root .border-blue-300{
|
|
1606
|
+
--tw-border-opacity: 1;
|
|
1607
|
+
border-color: rgba(144, 205, 244, var(--tw-border-opacity));
|
|
1525
1608
|
}
|
|
1526
1609
|
|
|
1527
|
-
.
|
|
1528
|
-
|
|
1610
|
+
.aui-root .border-blue-600{
|
|
1611
|
+
--tw-border-opacity: 1;
|
|
1612
|
+
border-color: rgba(49, 130, 206, var(--tw-border-opacity));
|
|
1529
1613
|
}
|
|
1530
1614
|
|
|
1531
|
-
.
|
|
1532
|
-
|
|
1615
|
+
.aui-root .border-purple-300{
|
|
1616
|
+
--tw-border-opacity: 1;
|
|
1617
|
+
border-color: rgba(214, 188, 250, var(--tw-border-opacity));
|
|
1533
1618
|
}
|
|
1534
1619
|
|
|
1535
|
-
.
|
|
1536
|
-
|
|
1620
|
+
.aui-root .bg-white{
|
|
1621
|
+
--tw-bg-opacity: 1;
|
|
1622
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
1537
1623
|
}
|
|
1538
1624
|
|
|
1539
|
-
.
|
|
1540
|
-
|
|
1541
|
-
|
|
1625
|
+
.aui-root .bg-gray-100{
|
|
1626
|
+
--tw-bg-opacity: 1;
|
|
1627
|
+
background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
|
|
1542
1628
|
}
|
|
1543
1629
|
|
|
1544
|
-
.
|
|
1545
|
-
|
|
1546
|
-
|
|
1630
|
+
.aui-root .bg-gray-200{
|
|
1631
|
+
--tw-bg-opacity: 1;
|
|
1632
|
+
background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
|
|
1547
1633
|
}
|
|
1548
1634
|
|
|
1549
|
-
.
|
|
1550
|
-
|
|
1551
|
-
|
|
1635
|
+
.aui-root .bg-gray-800{
|
|
1636
|
+
--tw-bg-opacity: 1;
|
|
1637
|
+
background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
|
|
1552
1638
|
}
|
|
1553
1639
|
|
|
1554
|
-
.
|
|
1555
|
-
|
|
1556
|
-
|
|
1640
|
+
.aui-root .bg-yellow-600{
|
|
1641
|
+
--tw-bg-opacity: 1;
|
|
1642
|
+
background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
|
|
1557
1643
|
}
|
|
1558
1644
|
|
|
1559
|
-
.
|
|
1560
|
-
|
|
1561
|
-
|
|
1645
|
+
.aui-root .bg-green-600{
|
|
1646
|
+
--tw-bg-opacity: 1;
|
|
1647
|
+
background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
|
|
1562
1648
|
}
|
|
1563
1649
|
|
|
1564
|
-
.
|
|
1565
|
-
|
|
1566
|
-
|
|
1650
|
+
.aui-root .bg-teal-500{
|
|
1651
|
+
--tw-bg-opacity: 1;
|
|
1652
|
+
background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
|
|
1567
1653
|
}
|
|
1568
1654
|
|
|
1569
|
-
.
|
|
1570
|
-
|
|
1571
|
-
|
|
1655
|
+
.aui-root .bg-blue-400{
|
|
1656
|
+
--tw-bg-opacity: 1;
|
|
1657
|
+
background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
|
|
1572
1658
|
}
|
|
1573
1659
|
|
|
1574
|
-
.
|
|
1575
|
-
|
|
1576
|
-
|
|
1660
|
+
.aui-root .bg-blue-500{
|
|
1661
|
+
--tw-bg-opacity: 1;
|
|
1662
|
+
background-color: rgba(66, 153, 225, var(--tw-bg-opacity));
|
|
1577
1663
|
}
|
|
1578
1664
|
|
|
1579
|
-
.
|
|
1580
|
-
|
|
1581
|
-
|
|
1665
|
+
.aui-root .bg-blue-600{
|
|
1666
|
+
--tw-bg-opacity: 1;
|
|
1667
|
+
background-color: rgba(49, 130, 206, var(--tw-bg-opacity));
|
|
1582
1668
|
}
|
|
1583
1669
|
|
|
1584
|
-
.
|
|
1585
|
-
|
|
1586
|
-
|
|
1670
|
+
.aui-root .bg-indigo-400{
|
|
1671
|
+
--tw-bg-opacity: 1;
|
|
1672
|
+
background-color: rgba(127, 156, 245, var(--tw-bg-opacity));
|
|
1587
1673
|
}
|
|
1588
1674
|
|
|
1589
|
-
.
|
|
1590
|
-
|
|
1675
|
+
.aui-root .bg-purple-600{
|
|
1676
|
+
--tw-bg-opacity: 1;
|
|
1677
|
+
background-color: rgba(128, 90, 213, var(--tw-bg-opacity));
|
|
1591
1678
|
}
|
|
1592
1679
|
|
|
1593
|
-
.
|
|
1594
|
-
|
|
1680
|
+
.aui-root .hover\:bg-orange-300:hover{
|
|
1681
|
+
--tw-bg-opacity: 1;
|
|
1682
|
+
background-color: rgba(251, 211, 141, var(--tw-bg-opacity));
|
|
1595
1683
|
}
|
|
1596
1684
|
|
|
1597
|
-
.
|
|
1598
|
-
|
|
1685
|
+
.aui-root .hover\:bg-blue-300:hover{
|
|
1686
|
+
--tw-bg-opacity: 1;
|
|
1687
|
+
background-color: rgba(144, 205, 244, var(--tw-bg-opacity));
|
|
1599
1688
|
}
|
|
1600
1689
|
|
|
1601
|
-
.
|
|
1602
|
-
|
|
1690
|
+
.aui-root .hover\:bg-purple-300:hover{
|
|
1691
|
+
--tw-bg-opacity: 1;
|
|
1692
|
+
background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
|
|
1603
1693
|
}
|
|
1604
1694
|
|
|
1605
|
-
.
|
|
1606
|
-
|
|
1695
|
+
.aui-root .fill-current{
|
|
1696
|
+
fill: currentColor;
|
|
1607
1697
|
}
|
|
1608
1698
|
|
|
1609
|
-
.
|
|
1610
|
-
|
|
1699
|
+
.aui-root .p-1{
|
|
1700
|
+
padding: 0.25rem;
|
|
1611
1701
|
}
|
|
1612
1702
|
|
|
1613
|
-
.
|
|
1614
|
-
|
|
1703
|
+
.aui-root .p-2{
|
|
1704
|
+
padding: 0.5rem;
|
|
1615
1705
|
}
|
|
1616
1706
|
|
|
1617
|
-
.
|
|
1618
|
-
|
|
1707
|
+
.aui-root .p-4{
|
|
1708
|
+
padding: 1rem;
|
|
1619
1709
|
}
|
|
1620
1710
|
|
|
1621
|
-
.
|
|
1622
|
-
|
|
1711
|
+
.aui-root .p-8{
|
|
1712
|
+
padding: 2rem;
|
|
1623
1713
|
}
|
|
1624
1714
|
|
|
1625
|
-
|
|
1626
|
-
|
|
1715
|
+
.aui-root .px-1{
|
|
1716
|
+
padding-left: 0.25rem;
|
|
1717
|
+
padding-right: 0.25rem;
|
|
1627
1718
|
}
|
|
1628
1719
|
|
|
1629
|
-
.
|
|
1630
|
-
|
|
1631
|
-
|
|
1720
|
+
.aui-root .px-2{
|
|
1721
|
+
padding-left: 0.5rem;
|
|
1722
|
+
padding-right: 0.5rem;
|
|
1632
1723
|
}
|
|
1633
1724
|
|
|
1634
|
-
.
|
|
1635
|
-
|
|
1636
|
-
|
|
1725
|
+
.aui-root .px-3{
|
|
1726
|
+
padding-left: 0.75rem;
|
|
1727
|
+
padding-right: 0.75rem;
|
|
1637
1728
|
}
|
|
1638
1729
|
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
--tw-ring-offset-color: #fff;
|
|
1643
|
-
--tw-ring-color: rgba(66, 153, 225, 0.5);
|
|
1644
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1645
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
1730
|
+
.aui-root .px-4{
|
|
1731
|
+
padding-left: 1rem;
|
|
1732
|
+
padding-right: 1rem;
|
|
1646
1733
|
}
|
|
1647
1734
|
|
|
1648
|
-
.
|
|
1649
|
-
|
|
1735
|
+
.aui-root .px-8{
|
|
1736
|
+
padding-left: 2rem;
|
|
1737
|
+
padding-right: 2rem;
|
|
1650
1738
|
}
|
|
1651
1739
|
|
|
1652
|
-
.
|
|
1653
|
-
|
|
1740
|
+
.aui-root .py-0{
|
|
1741
|
+
padding-top: 0px;
|
|
1742
|
+
padding-bottom: 0px;
|
|
1654
1743
|
}
|
|
1655
1744
|
|
|
1656
|
-
.
|
|
1657
|
-
|
|
1658
|
-
|
|
1745
|
+
.aui-root .py-1{
|
|
1746
|
+
padding-top: 0.25rem;
|
|
1747
|
+
padding-bottom: 0.25rem;
|
|
1659
1748
|
}
|
|
1660
1749
|
|
|
1661
|
-
.
|
|
1662
|
-
|
|
1663
|
-
|
|
1750
|
+
.aui-root .py-2{
|
|
1751
|
+
padding-top: 0.5rem;
|
|
1752
|
+
padding-bottom: 0.5rem;
|
|
1664
1753
|
}
|
|
1665
1754
|
|
|
1666
|
-
.
|
|
1667
|
-
|
|
1668
|
-
|
|
1755
|
+
.aui-root .py-4{
|
|
1756
|
+
padding-top: 1rem;
|
|
1757
|
+
padding-bottom: 1rem;
|
|
1669
1758
|
}
|
|
1670
1759
|
|
|
1671
|
-
.
|
|
1672
|
-
|
|
1673
|
-
|
|
1760
|
+
.aui-root .py-8{
|
|
1761
|
+
padding-top: 2rem;
|
|
1762
|
+
padding-bottom: 2rem;
|
|
1674
1763
|
}
|
|
1675
1764
|
|
|
1676
|
-
.
|
|
1677
|
-
|
|
1678
|
-
|
|
1765
|
+
.aui-root .py-0\.5{
|
|
1766
|
+
padding-top: 0.125rem;
|
|
1767
|
+
padding-bottom: 0.125rem;
|
|
1679
1768
|
}
|
|
1680
1769
|
|
|
1681
|
-
.
|
|
1682
|
-
|
|
1683
|
-
color: rgba(229, 62, 62, var(--tw-text-opacity));
|
|
1770
|
+
.aui-root .pt-8{
|
|
1771
|
+
padding-top: 2rem;
|
|
1684
1772
|
}
|
|
1685
1773
|
|
|
1686
|
-
.
|
|
1687
|
-
|
|
1688
|
-
color: rgba(237, 137, 54, var(--tw-text-opacity));
|
|
1774
|
+
.aui-root .pb-16{
|
|
1775
|
+
padding-bottom: 4rem;
|
|
1689
1776
|
}
|
|
1690
1777
|
|
|
1691
|
-
.text-
|
|
1692
|
-
|
|
1693
|
-
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1778
|
+
.aui-root .text-left{
|
|
1779
|
+
text-align: left;
|
|
1694
1780
|
}
|
|
1695
1781
|
|
|
1696
|
-
.text-
|
|
1697
|
-
|
|
1698
|
-
color: rgba(56, 161, 105, var(--tw-text-opacity));
|
|
1782
|
+
.aui-root .text-center{
|
|
1783
|
+
text-align: center;
|
|
1699
1784
|
}
|
|
1700
1785
|
|
|
1701
|
-
.
|
|
1702
|
-
|
|
1703
|
-
color: rgba(56, 178, 172, var(--tw-text-opacity));
|
|
1786
|
+
.aui-root .align-baseline{
|
|
1787
|
+
vertical-align: baseline;
|
|
1704
1788
|
}
|
|
1705
1789
|
|
|
1706
|
-
.
|
|
1707
|
-
|
|
1708
|
-
color: rgba(66, 153, 225, var(--tw-text-opacity));
|
|
1790
|
+
.aui-root .font-sans{
|
|
1791
|
+
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
1709
1792
|
}
|
|
1710
1793
|
|
|
1711
|
-
.
|
|
1712
|
-
|
|
1713
|
-
color: rgba(159, 122, 234, var(--tw-text-opacity));
|
|
1794
|
+
.aui-root .font-mono{
|
|
1795
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1714
1796
|
}
|
|
1715
1797
|
|
|
1716
|
-
.
|
|
1717
|
-
|
|
1718
|
-
color: rgba(26, 32, 44, var(--tw-text-opacity));
|
|
1798
|
+
.aui-root .text-xs{
|
|
1799
|
+
font-size: 0.75rem;
|
|
1719
1800
|
}
|
|
1720
1801
|
|
|
1721
|
-
.
|
|
1722
|
-
|
|
1723
|
-
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1802
|
+
.aui-root .text-sm{
|
|
1803
|
+
font-size: 0.875rem;
|
|
1724
1804
|
}
|
|
1725
1805
|
|
|
1726
|
-
.
|
|
1727
|
-
|
|
1728
|
-
color: rgba(49, 130, 206, var(--tw-text-opacity));
|
|
1806
|
+
.aui-root .text-base{
|
|
1807
|
+
font-size: 1rem;
|
|
1729
1808
|
}
|
|
1730
1809
|
|
|
1731
|
-
.
|
|
1732
|
-
|
|
1733
|
-
color: rgba(128, 90, 213, var(--tw-text-opacity));
|
|
1810
|
+
.aui-root .text-lg{
|
|
1811
|
+
font-size: 1.125rem;
|
|
1734
1812
|
}
|
|
1735
1813
|
|
|
1736
|
-
.
|
|
1737
|
-
font-
|
|
1814
|
+
.aui-root .text-2xl{
|
|
1815
|
+
font-size: 1.5rem;
|
|
1738
1816
|
}
|
|
1739
1817
|
|
|
1740
|
-
.
|
|
1741
|
-
|
|
1818
|
+
.aui-root .text-3xl{
|
|
1819
|
+
font-size: 1.875rem;
|
|
1742
1820
|
}
|
|
1743
1821
|
|
|
1744
|
-
.
|
|
1745
|
-
|
|
1822
|
+
.aui-root .text-4xl{
|
|
1823
|
+
font-size: 2.25rem;
|
|
1746
1824
|
}
|
|
1747
1825
|
|
|
1748
|
-
.
|
|
1749
|
-
|
|
1826
|
+
.aui-root .font-thin{
|
|
1827
|
+
font-weight: 100;
|
|
1750
1828
|
}
|
|
1751
1829
|
|
|
1752
|
-
.
|
|
1753
|
-
|
|
1830
|
+
.aui-root .font-extralight{
|
|
1831
|
+
font-weight: 200;
|
|
1754
1832
|
}
|
|
1755
1833
|
|
|
1756
|
-
.
|
|
1757
|
-
|
|
1834
|
+
.aui-root .font-light{
|
|
1835
|
+
font-weight: 300;
|
|
1758
1836
|
}
|
|
1759
1837
|
|
|
1760
|
-
.
|
|
1761
|
-
|
|
1838
|
+
.aui-root .font-bold{
|
|
1839
|
+
font-weight: 700;
|
|
1762
1840
|
}
|
|
1763
1841
|
|
|
1764
|
-
.
|
|
1765
|
-
|
|
1842
|
+
.aui-root .uppercase{
|
|
1843
|
+
text-transform: uppercase;
|
|
1766
1844
|
}
|
|
1767
1845
|
|
|
1768
|
-
.
|
|
1769
|
-
|
|
1846
|
+
.aui-root .lowercase{
|
|
1847
|
+
text-transform: lowercase;
|
|
1770
1848
|
}
|
|
1771
1849
|
|
|
1772
|
-
.
|
|
1773
|
-
|
|
1850
|
+
.aui-root .capitalize{
|
|
1851
|
+
text-transform: capitalize;
|
|
1774
1852
|
}
|
|
1775
1853
|
|
|
1776
|
-
.
|
|
1777
|
-
|
|
1854
|
+
.aui-root .italic{
|
|
1855
|
+
font-style: italic;
|
|
1778
1856
|
}
|
|
1779
1857
|
|
|
1780
|
-
.
|
|
1781
|
-
|
|
1858
|
+
.aui-root .leading-normal{
|
|
1859
|
+
line-height: 1.5;
|
|
1782
1860
|
}
|
|
1783
1861
|
|
|
1784
|
-
.
|
|
1785
|
-
|
|
1862
|
+
.aui-root .text-white{
|
|
1863
|
+
--tw-text-opacity: 1;
|
|
1864
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
1786
1865
|
}
|
|
1787
1866
|
|
|
1788
|
-
.
|
|
1789
|
-
|
|
1867
|
+
.aui-root .text-gray-200{
|
|
1868
|
+
--tw-text-opacity: 1;
|
|
1869
|
+
color: rgba(237, 242, 247, var(--tw-text-opacity));
|
|
1790
1870
|
}
|
|
1791
1871
|
|
|
1792
|
-
.
|
|
1793
|
-
|
|
1872
|
+
.aui-root .text-gray-500{
|
|
1873
|
+
--tw-text-opacity: 1;
|
|
1874
|
+
color: rgba(160, 174, 192, var(--tw-text-opacity));
|
|
1794
1875
|
}
|
|
1795
1876
|
|
|
1796
|
-
.
|
|
1797
|
-
|
|
1877
|
+
.aui-root .text-gray-600{
|
|
1878
|
+
--tw-text-opacity: 1;
|
|
1879
|
+
color: rgba(113, 128, 150, var(--tw-text-opacity));
|
|
1798
1880
|
}
|
|
1799
1881
|
|
|
1800
|
-
.
|
|
1801
|
-
|
|
1882
|
+
.aui-root .text-gray-700{
|
|
1883
|
+
--tw-text-opacity: 1;
|
|
1884
|
+
color: rgba(74, 85, 104, var(--tw-text-opacity));
|
|
1802
1885
|
}
|
|
1803
1886
|
|
|
1804
|
-
.
|
|
1805
|
-
|
|
1887
|
+
.aui-root .text-gray-800{
|
|
1888
|
+
--tw-text-opacity: 1;
|
|
1889
|
+
color: rgba(45, 55, 72, var(--tw-text-opacity));
|
|
1806
1890
|
}
|
|
1807
1891
|
|
|
1808
|
-
.
|
|
1809
|
-
--tw-
|
|
1810
|
-
--tw-
|
|
1811
|
-
--tw-rotate: 0;
|
|
1812
|
-
--tw-skew-x: 0;
|
|
1813
|
-
--tw-skew-y: 0;
|
|
1814
|
-
--tw-scale-x: 1;
|
|
1815
|
-
--tw-scale-y: 1;
|
|
1816
|
-
transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1892
|
+
.aui-root .text-red-600{
|
|
1893
|
+
--tw-text-opacity: 1;
|
|
1894
|
+
color: rgba(229, 62, 62, var(--tw-text-opacity));
|
|
1817
1895
|
}
|
|
1818
1896
|
|
|
1819
|
-
|
|
1820
|
-
--tw-
|
|
1897
|
+
.aui-root .text-orange-500{
|
|
1898
|
+
--tw-text-opacity: 1;
|
|
1899
|
+
color: rgba(237, 137, 54, var(--tw-text-opacity));
|
|
1821
1900
|
}
|
|
1822
1901
|
|
|
1823
|
-
|
|
1824
|
-
--tw-
|
|
1902
|
+
.aui-root .text-orange-600{
|
|
1903
|
+
--tw-text-opacity: 1;
|
|
1904
|
+
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1825
1905
|
}
|
|
1826
1906
|
|
|
1827
|
-
.
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
transition-duration: 150ms;
|
|
1907
|
+
.aui-root .text-green-600{
|
|
1908
|
+
--tw-text-opacity: 1;
|
|
1909
|
+
color: rgba(56, 161, 105, var(--tw-text-opacity));
|
|
1831
1910
|
}
|
|
1832
1911
|
|
|
1833
|
-
.
|
|
1834
|
-
|
|
1912
|
+
.aui-root .text-teal-500{
|
|
1913
|
+
--tw-text-opacity: 1;
|
|
1914
|
+
color: rgba(56, 178, 172, var(--tw-text-opacity));
|
|
1835
1915
|
}
|
|
1836
1916
|
|
|
1837
|
-
.
|
|
1838
|
-
|
|
1917
|
+
.aui-root .text-blue-500{
|
|
1918
|
+
--tw-text-opacity: 1;
|
|
1919
|
+
color: rgba(66, 153, 225, var(--tw-text-opacity));
|
|
1839
1920
|
}
|
|
1840
1921
|
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
}
|
|
1922
|
+
.aui-root .text-purple-500{
|
|
1923
|
+
--tw-text-opacity: 1;
|
|
1924
|
+
color: rgba(159, 122, 234, var(--tw-text-opacity));
|
|
1845
1925
|
}
|
|
1846
1926
|
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
}
|
|
1927
|
+
.aui-root .hover\:text-gray-900:hover{
|
|
1928
|
+
--tw-text-opacity: 1;
|
|
1929
|
+
color: rgba(26, 32, 44, var(--tw-text-opacity));
|
|
1851
1930
|
}
|
|
1852
1931
|
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
opacity: 0;
|
|
1857
|
-
}
|
|
1932
|
+
.aui-root .hover\:text-orange-600:hover{
|
|
1933
|
+
--tw-text-opacity: 1;
|
|
1934
|
+
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1858
1935
|
}
|
|
1859
1936
|
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
opacity: 0;
|
|
1864
|
-
}
|
|
1937
|
+
.aui-root .hover\:text-blue-600:hover{
|
|
1938
|
+
--tw-text-opacity: 1;
|
|
1939
|
+
color: rgba(49, 130, 206, var(--tw-text-opacity));
|
|
1865
1940
|
}
|
|
1866
1941
|
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
}
|
|
1942
|
+
.aui-root .hover\:text-purple-600:hover{
|
|
1943
|
+
--tw-text-opacity: 1;
|
|
1944
|
+
color: rgba(128, 90, 213, var(--tw-text-opacity));
|
|
1871
1945
|
}
|
|
1872
1946
|
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
opacity: .5;
|
|
1876
|
-
}
|
|
1947
|
+
.aui-root .underline{
|
|
1948
|
+
text-decoration: underline;
|
|
1877
1949
|
}
|
|
1878
1950
|
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1883
|
-
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1884
|
-
}
|
|
1951
|
+
.aui-root .no-underline{
|
|
1952
|
+
text-decoration: none;
|
|
1953
|
+
}
|
|
1885
1954
|
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1889
|
-
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1890
|
-
}
|
|
1955
|
+
.aui-root *, .aui-root ::before, .aui-root ::after{
|
|
1956
|
+
--tw-shadow: 0 0 #0000;
|
|
1891
1957
|
}
|
|
1892
1958
|
|
|
1893
|
-
|
|
1894
|
-
0
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1898
|
-
}
|
|
1959
|
+
.aui-root .shadow{
|
|
1960
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1961
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1962
|
+
}
|
|
1899
1963
|
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1964
|
+
.aui-root .shadow-md{
|
|
1965
|
+
--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
1966
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1967
|
+
}
|
|
1968
|
+
|
|
1969
|
+
.aui-root .focus\:outline-none:focus{
|
|
1970
|
+
outline: 2px solid transparent;
|
|
1971
|
+
outline-offset: 2px;
|
|
1905
1972
|
}
|
|
1906
1973
|
|
|
1907
|
-
.
|
|
1974
|
+
.aui-root *, .aui-root ::before, .aui-root ::after{
|
|
1975
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
1976
|
+
--tw-ring-offset-width: 0px;
|
|
1977
|
+
--tw-ring-offset-color: #fff;
|
|
1978
|
+
--tw-ring-color: rgba(66, 153, 225, 0.5);
|
|
1979
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1980
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1981
|
+
}
|
|
1982
|
+
|
|
1983
|
+
.aui-root .filter{
|
|
1908
1984
|
--tw-blur: var(--tw-empty,/*!*/ /*!*/);
|
|
1909
1985
|
--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
|
|
1910
1986
|
--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
|
|
@@ -1917,11 +1993,29 @@ video {
|
|
|
1917
1993
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1918
1994
|
}
|
|
1919
1995
|
|
|
1996
|
+
.aui-root .transition-transform{
|
|
1997
|
+
transition-property: transform;
|
|
1998
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1999
|
+
transition-duration: 150ms;
|
|
2000
|
+
}
|
|
2001
|
+
|
|
2002
|
+
.aui-root .duration-150{
|
|
2003
|
+
transition-duration: 150ms;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
.aui-root .ease-linear{
|
|
2007
|
+
transition-timing-function: linear;
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
.aui-root .break-anywhere {
|
|
2011
|
+
overflow-wrap: anywhere;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
1920
2014
|
@media (min-width: 640px){
|
|
1921
2015
|
}
|
|
1922
2016
|
|
|
1923
2017
|
@media (min-width: 768px){
|
|
1924
|
-
.md\:flex{
|
|
2018
|
+
.aui-root .md\:flex{
|
|
1925
2019
|
display: flex;
|
|
1926
2020
|
}
|
|
1927
2021
|
}
|
|
@@ -1933,21 +2027,21 @@ video {
|
|
|
1933
2027
|
}
|
|
1934
2028
|
|
|
1935
2029
|
@media (min-width: 1536px){
|
|
1936
|
-
.\32xl\:
|
|
1937
|
-
border-radius: 0.25rem;
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
.\32xl\:mx-0{
|
|
2030
|
+
.aui-root .\32xl\:mx-0{
|
|
1941
2031
|
margin-left: 0px;
|
|
1942
2032
|
margin-right: 0px;
|
|
1943
2033
|
}
|
|
1944
2034
|
|
|
1945
|
-
.\32xl\:
|
|
1946
|
-
|
|
1947
|
-
padding-right: 1rem;
|
|
2035
|
+
.aui-root .\32xl\:w-7\/12{
|
|
2036
|
+
width: 58.333333%;
|
|
1948
2037
|
}
|
|
1949
2038
|
|
|
1950
|
-
.\32xl\:
|
|
1951
|
-
|
|
2039
|
+
.aui-root .\32xl\:rounded{
|
|
2040
|
+
border-radius: 0.25rem;
|
|
2041
|
+
}
|
|
2042
|
+
|
|
2043
|
+
.aui-root .\32xl\:px-4{
|
|
2044
|
+
padding-left: 1rem;
|
|
2045
|
+
padding-right: 1rem;
|
|
1952
2046
|
}
|
|
1953
2047
|
}
|