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