@asyncapi/react-component 1.0.0-next.5 → 1.0.0-next.51
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 +8 -14
- package/browser/index.js.LICENSE.txt +88 -0
- package/browser/standalone/index.js +8 -0
- package/browser/standalone/index.js.LICENSE.txt +112 -0
- package/browser/standalone/without-parser.js +8 -0
- package/browser/standalone/without-parser.js.LICENSE.txt +110 -0
- package/browser/without-parser.js +8 -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 +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 +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 +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 +29 -13
- 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 +9 -3
- 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 +15 -7
- 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 +32 -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 +11 -6
- 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 +15 -16
- 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 +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 +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 +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 +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 +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 +23 -11
- 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 +4 -2
- 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 +14 -7
- 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 +25 -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 +10 -6
- 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 +16 -14
- 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 +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 +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/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 +4 -4
- 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 +4 -4
- 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 +929 -646
- 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
|
|
|
@@ -211,6 +428,11 @@ button,
|
|
|
211
428
|
Remove the inner border and padding in Firefox.
|
|
212
429
|
*/
|
|
213
430
|
|
|
431
|
+
.aui-root ::-moz-focus-inner {
|
|
432
|
+
border-style: none;
|
|
433
|
+
padding: 0;
|
|
434
|
+
}
|
|
435
|
+
|
|
214
436
|
/**
|
|
215
437
|
Restore the focus styles unset by the previous rule.
|
|
216
438
|
*/
|
|
@@ -224,7 +446,7 @@ See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d4
|
|
|
224
446
|
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
|
|
225
447
|
*/
|
|
226
448
|
|
|
227
|
-
legend {
|
|
449
|
+
.aui-root legend {
|
|
228
450
|
padding: 0;
|
|
229
451
|
}
|
|
230
452
|
|
|
@@ -232,7 +454,7 @@ legend {
|
|
|
232
454
|
Add the correct vertical alignment in Chrome and Firefox.
|
|
233
455
|
*/
|
|
234
456
|
|
|
235
|
-
progress {
|
|
457
|
+
.aui-root progress {
|
|
236
458
|
vertical-align: baseline;
|
|
237
459
|
}
|
|
238
460
|
|
|
@@ -240,20 +462,39 @@ progress {
|
|
|
240
462
|
Correct the cursor style of increment and decrement buttons in Safari.
|
|
241
463
|
*/
|
|
242
464
|
|
|
465
|
+
.aui-root ::-webkit-inner-spin-button,
|
|
466
|
+
.aui-root ::-webkit-outer-spin-button {
|
|
467
|
+
height: auto;
|
|
468
|
+
}
|
|
469
|
+
|
|
243
470
|
/**
|
|
244
471
|
1. Correct the odd appearance in Chrome and Safari.
|
|
245
472
|
2. Correct the outline style in Safari.
|
|
246
473
|
*/
|
|
247
474
|
|
|
475
|
+
.aui-root [type='search'] {
|
|
476
|
+
-webkit-appearance: textfield; /* 1 */
|
|
477
|
+
outline-offset: -2px; /* 2 */
|
|
478
|
+
}
|
|
479
|
+
|
|
248
480
|
/**
|
|
249
481
|
Remove the inner padding in Chrome and Safari on macOS.
|
|
250
482
|
*/
|
|
251
483
|
|
|
484
|
+
.aui-root ::-webkit-search-decoration {
|
|
485
|
+
-webkit-appearance: none;
|
|
486
|
+
}
|
|
487
|
+
|
|
252
488
|
/**
|
|
253
489
|
1. Correct the inability to style clickable types in iOS and Safari.
|
|
254
490
|
2. Change font properties to 'inherit' in Safari.
|
|
255
491
|
*/
|
|
256
492
|
|
|
493
|
+
.aui-root ::-webkit-file-upload-button {
|
|
494
|
+
-webkit-appearance: button; /* 1 */
|
|
495
|
+
font: inherit; /* 2 */
|
|
496
|
+
}
|
|
497
|
+
|
|
257
498
|
/*
|
|
258
499
|
Interactive
|
|
259
500
|
===========
|
|
@@ -263,7 +504,7 @@ Interactive
|
|
|
263
504
|
Add the correct display in Chrome and Safari.
|
|
264
505
|
*/
|
|
265
506
|
|
|
266
|
-
summary {
|
|
507
|
+
.aui-root summary {
|
|
267
508
|
display: list-item;
|
|
268
509
|
}
|
|
269
510
|
|
|
@@ -277,44 +518,34 @@ summary {
|
|
|
277
518
|
* Removes the default spacing and border for appropriate elements.
|
|
278
519
|
*/
|
|
279
520
|
|
|
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 {
|
|
521
|
+
.aui-root blockquote,
|
|
522
|
+
.aui-root dl,
|
|
523
|
+
.aui-root dd,
|
|
524
|
+
.aui-root h1,
|
|
525
|
+
.aui-root h2,
|
|
526
|
+
.aui-root h3,
|
|
527
|
+
.aui-root h4,
|
|
528
|
+
.aui-root h5,
|
|
529
|
+
.aui-root h6,
|
|
530
|
+
.aui-root hr,
|
|
531
|
+
.aui-root figure,
|
|
532
|
+
.aui-root p,
|
|
533
|
+
.aui-root pre {
|
|
293
534
|
margin: 0;
|
|
294
535
|
}
|
|
295
536
|
|
|
296
|
-
button {
|
|
537
|
+
.aui-root button {
|
|
297
538
|
background-color: transparent;
|
|
298
539
|
background-image: none;
|
|
299
540
|
}
|
|
300
541
|
|
|
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 {
|
|
542
|
+
.aui-root fieldset {
|
|
312
543
|
margin: 0;
|
|
313
544
|
padding: 0;
|
|
314
545
|
}
|
|
315
546
|
|
|
316
|
-
ol,
|
|
317
|
-
ul {
|
|
547
|
+
.aui-root ol,
|
|
548
|
+
.aui-root ul {
|
|
318
549
|
list-style: none;
|
|
319
550
|
margin: 0;
|
|
320
551
|
padding: 0;
|
|
@@ -331,7 +562,7 @@ ul {
|
|
|
331
562
|
* to override it to ensure consistency even when using the default theme.
|
|
332
563
|
*/
|
|
333
564
|
|
|
334
|
-
html {
|
|
565
|
+
.aui-root html {
|
|
335
566
|
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
567
|
line-height: 1.5; /* 2 */
|
|
337
568
|
}
|
|
@@ -341,7 +572,7 @@ html {
|
|
|
341
572
|
* a class directly on the `html` element.
|
|
342
573
|
*/
|
|
343
574
|
|
|
344
|
-
body {
|
|
575
|
+
.aui-root body {
|
|
345
576
|
font-family: inherit;
|
|
346
577
|
line-height: inherit;
|
|
347
578
|
}
|
|
@@ -372,20 +603,20 @@ body {
|
|
|
372
603
|
* https://github.com/tailwindcss/tailwindcss/pull/116
|
|
373
604
|
*/
|
|
374
605
|
|
|
375
|
-
*,
|
|
376
|
-
::before,
|
|
377
|
-
::after {
|
|
606
|
+
.aui-root *,
|
|
607
|
+
.aui-root ::before,
|
|
608
|
+
.aui-root ::after {
|
|
378
609
|
box-sizing: border-box; /* 1 */
|
|
379
610
|
border-width: 0; /* 2 */
|
|
380
611
|
border-style: solid; /* 2 */
|
|
381
|
-
border-color:
|
|
612
|
+
border-color: currentColor; /* 2 */
|
|
382
613
|
}
|
|
383
614
|
|
|
384
615
|
/*
|
|
385
616
|
* Ensure horizontal rules are visible by default
|
|
386
617
|
*/
|
|
387
618
|
|
|
388
|
-
hr {
|
|
619
|
+
.aui-root hr {
|
|
389
620
|
border-top-width: 1px;
|
|
390
621
|
}
|
|
391
622
|
|
|
@@ -399,44 +630,47 @@ hr {
|
|
|
399
630
|
* https://github.com/tailwindcss/tailwindcss/issues/362
|
|
400
631
|
*/
|
|
401
632
|
|
|
402
|
-
img {
|
|
633
|
+
.aui-root img {
|
|
403
634
|
border-style: solid;
|
|
404
635
|
}
|
|
405
636
|
|
|
406
|
-
textarea {
|
|
637
|
+
.aui-root textarea {
|
|
407
638
|
resize: vertical;
|
|
408
639
|
}
|
|
409
640
|
|
|
410
|
-
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
411
|
-
opacity: 1;
|
|
412
|
-
color: #cbd5e0;
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
641
|
+
.aui-root input::-moz-placeholder, .aui-root textarea::-moz-placeholder {
|
|
416
642
|
opacity: 1;
|
|
417
643
|
color: #cbd5e0;
|
|
418
644
|
}
|
|
419
645
|
|
|
420
|
-
input::placeholder,
|
|
421
|
-
textarea::placeholder {
|
|
646
|
+
.aui-root input::placeholder,
|
|
647
|
+
.aui-root textarea::placeholder {
|
|
422
648
|
opacity: 1;
|
|
423
649
|
color: #cbd5e0;
|
|
424
650
|
}
|
|
425
651
|
|
|
426
|
-
button {
|
|
652
|
+
.aui-root button {
|
|
427
653
|
cursor: pointer;
|
|
428
654
|
}
|
|
429
655
|
|
|
430
|
-
|
|
656
|
+
/**
|
|
657
|
+
* Override legacy focus reset from Normalize with modern Firefox focus styles.
|
|
658
|
+
*
|
|
659
|
+
* This is actually an improvement over the new defaults in Firefox in our testing,
|
|
660
|
+
* as it triggers the better focus styles even for links, which still use a dotted
|
|
661
|
+
* outline in Firefox by default.
|
|
662
|
+
*/
|
|
663
|
+
|
|
664
|
+
.aui-root table {
|
|
431
665
|
border-collapse: collapse;
|
|
432
666
|
}
|
|
433
667
|
|
|
434
|
-
h1,
|
|
435
|
-
h2,
|
|
436
|
-
h3,
|
|
437
|
-
h4,
|
|
438
|
-
h5,
|
|
439
|
-
h6 {
|
|
668
|
+
.aui-root h1,
|
|
669
|
+
.aui-root h2,
|
|
670
|
+
.aui-root h3,
|
|
671
|
+
.aui-root h4,
|
|
672
|
+
.aui-root h5,
|
|
673
|
+
.aui-root h6 {
|
|
440
674
|
font-size: inherit;
|
|
441
675
|
font-weight: inherit;
|
|
442
676
|
}
|
|
@@ -446,7 +680,7 @@ h6 {
|
|
|
446
680
|
* opt-out.
|
|
447
681
|
*/
|
|
448
682
|
|
|
449
|
-
a {
|
|
683
|
+
.aui-root a {
|
|
450
684
|
color: inherit;
|
|
451
685
|
text-decoration: inherit;
|
|
452
686
|
}
|
|
@@ -459,11 +693,11 @@ a {
|
|
|
459
693
|
* normalize.css.
|
|
460
694
|
*/
|
|
461
695
|
|
|
462
|
-
button,
|
|
463
|
-
input,
|
|
464
|
-
optgroup,
|
|
465
|
-
select,
|
|
466
|
-
textarea {
|
|
696
|
+
.aui-root button,
|
|
697
|
+
.aui-root input,
|
|
698
|
+
.aui-root optgroup,
|
|
699
|
+
.aui-root select,
|
|
700
|
+
.aui-root textarea {
|
|
467
701
|
padding: 0;
|
|
468
702
|
line-height: inherit;
|
|
469
703
|
color: inherit;
|
|
@@ -476,31 +710,40 @@ textarea {
|
|
|
476
710
|
* 'mono' font family.
|
|
477
711
|
*/
|
|
478
712
|
|
|
479
|
-
pre,
|
|
480
|
-
code,
|
|
481
|
-
kbd,
|
|
482
|
-
samp {
|
|
713
|
+
.aui-root pre,
|
|
714
|
+
.aui-root code,
|
|
715
|
+
.aui-root kbd,
|
|
716
|
+
.aui-root samp {
|
|
483
717
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
484
718
|
}
|
|
485
719
|
|
|
486
720
|
/**
|
|
487
|
-
* Make replaced elements `display: block` by default as that's
|
|
488
|
-
*
|
|
489
|
-
*
|
|
721
|
+
* 1. Make replaced elements `display: block` by default as that's
|
|
722
|
+
* the behavior you want almost all of the time. Inspired by
|
|
723
|
+
* CSS Remedy, with `svg` added as well.
|
|
490
724
|
*
|
|
491
|
-
*
|
|
725
|
+
* https://github.com/mozdevs/cssremedy/issues/14
|
|
726
|
+
*
|
|
727
|
+
* 2. Add `vertical-align: middle` to align replaced elements more
|
|
728
|
+
* sensibly by default when overriding `display` by adding a
|
|
729
|
+
* utility like `inline`.
|
|
730
|
+
*
|
|
731
|
+
* This can trigger a poorly considered linting error in some
|
|
732
|
+
* tools but is included by design.
|
|
733
|
+
*
|
|
734
|
+
* https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
|
|
492
735
|
*/
|
|
493
736
|
|
|
494
|
-
img,
|
|
495
|
-
svg,
|
|
496
|
-
video,
|
|
497
|
-
canvas,
|
|
498
|
-
audio,
|
|
499
|
-
iframe,
|
|
500
|
-
embed,
|
|
501
|
-
object {
|
|
502
|
-
display: block;
|
|
503
|
-
vertical-align: middle;
|
|
737
|
+
.aui-root img,
|
|
738
|
+
.aui-root svg,
|
|
739
|
+
.aui-root video,
|
|
740
|
+
.aui-root canvas,
|
|
741
|
+
.aui-root audio,
|
|
742
|
+
.aui-root iframe,
|
|
743
|
+
.aui-root embed,
|
|
744
|
+
.aui-root object {
|
|
745
|
+
display: block; /* 1 */
|
|
746
|
+
vertical-align: middle; /* 2 */
|
|
504
747
|
}
|
|
505
748
|
|
|
506
749
|
/**
|
|
@@ -510,18 +753,65 @@ object {
|
|
|
510
753
|
* https://github.com/mozdevs/cssremedy/issues/14
|
|
511
754
|
*/
|
|
512
755
|
|
|
513
|
-
img,
|
|
514
|
-
video {
|
|
756
|
+
.aui-root img,
|
|
757
|
+
.aui-root video {
|
|
515
758
|
max-width: 100%;
|
|
516
759
|
height: auto;
|
|
517
760
|
}
|
|
518
761
|
|
|
519
|
-
|
|
762
|
+
/**
|
|
763
|
+
* Ensure the default browser behavior of the `hidden` attribute.
|
|
764
|
+
*/
|
|
765
|
+
|
|
766
|
+
.aui-root [hidden] {
|
|
767
|
+
display: none;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
.aui-root *, .aui-root ::before, .aui-root ::after{
|
|
771
|
+
--tw-border-opacity: 1;
|
|
772
|
+
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.aui-root .container{
|
|
776
|
+
width: 100%;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
@media (min-width: 640px){
|
|
780
|
+
.aui-root .container{
|
|
781
|
+
max-width: 640px;
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
@media (min-width: 768px){
|
|
786
|
+
.aui-root .container{
|
|
787
|
+
max-width: 768px;
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
@media (min-width: 1024px){
|
|
792
|
+
.aui-root .container{
|
|
793
|
+
max-width: 1024px;
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
@media (min-width: 1280px){
|
|
798
|
+
.aui-root .container{
|
|
799
|
+
max-width: 1280px;
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
@media (min-width: 1536px){
|
|
804
|
+
.aui-root .container{
|
|
805
|
+
max-width: 1536px;
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.aui-root .prose{
|
|
520
810
|
color: #4a5568;
|
|
521
811
|
max-width: 65ch;
|
|
522
812
|
}
|
|
523
813
|
|
|
524
|
-
.prose [class~="lead"]
|
|
814
|
+
.aui-root .prose [class~="lead"]{
|
|
525
815
|
color: #718096;
|
|
526
816
|
font-size: 1.25em;
|
|
527
817
|
line-height: 1.6;
|
|
@@ -529,35 +819,43 @@ video {
|
|
|
529
819
|
margin-bottom: 1.2em;
|
|
530
820
|
}
|
|
531
821
|
|
|
532
|
-
.prose a
|
|
822
|
+
.aui-root .prose a{
|
|
533
823
|
color: #1a202c;
|
|
534
824
|
text-decoration: underline;
|
|
535
825
|
font-weight: 500;
|
|
536
826
|
}
|
|
537
827
|
|
|
538
|
-
.prose strong
|
|
828
|
+
.aui-root .prose strong{
|
|
539
829
|
color: #1a202c;
|
|
540
830
|
font-weight: 600;
|
|
541
831
|
}
|
|
542
832
|
|
|
543
|
-
.prose ol[type="a"]
|
|
833
|
+
.aui-root .prose ol[type="a"]{
|
|
834
|
+
--list-counter-style: lower-alpha;
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
.aui-root .prose ol[type="a" s]{
|
|
544
838
|
--list-counter-style: lower-alpha;
|
|
545
839
|
}
|
|
546
840
|
|
|
547
|
-
.prose ol[type="i"]
|
|
841
|
+
.aui-root .prose ol[type="i"]{
|
|
842
|
+
--list-counter-style: lower-roman;
|
|
843
|
+
}
|
|
844
|
+
|
|
845
|
+
.aui-root .prose ol[type="i" s]{
|
|
548
846
|
--list-counter-style: lower-roman;
|
|
549
847
|
}
|
|
550
848
|
|
|
551
|
-
.prose ol[type="1"]
|
|
849
|
+
.aui-root .prose ol[type="1"]{
|
|
552
850
|
--list-counter-style: decimal;
|
|
553
851
|
}
|
|
554
852
|
|
|
555
|
-
.prose ol > li
|
|
853
|
+
.aui-root .prose ol > li{
|
|
556
854
|
position: relative;
|
|
557
855
|
padding-left: 1.75em;
|
|
558
856
|
}
|
|
559
857
|
|
|
560
|
-
.prose ol > li::before
|
|
858
|
+
.aui-root .prose ol > li::before{
|
|
561
859
|
content: counter(list-item, var(--list-counter-style, decimal)) ".";
|
|
562
860
|
position: absolute;
|
|
563
861
|
font-weight: 400;
|
|
@@ -565,12 +863,12 @@ video {
|
|
|
565
863
|
left: 0;
|
|
566
864
|
}
|
|
567
865
|
|
|
568
|
-
.prose ul > li
|
|
866
|
+
.aui-root .prose ul > li{
|
|
569
867
|
position: relative;
|
|
570
868
|
padding-left: 1.75em;
|
|
571
869
|
}
|
|
572
870
|
|
|
573
|
-
.prose ul > li::before
|
|
871
|
+
.aui-root .prose ul > li::before{
|
|
574
872
|
content: "";
|
|
575
873
|
position: absolute;
|
|
576
874
|
background-color: #e2e8f0;
|
|
@@ -581,14 +879,14 @@ video {
|
|
|
581
879
|
left: 0.25em;
|
|
582
880
|
}
|
|
583
881
|
|
|
584
|
-
.prose hr
|
|
882
|
+
.aui-root .prose hr{
|
|
585
883
|
border-color: #edf2f7;
|
|
586
884
|
border-top-width: 1px;
|
|
587
885
|
margin-top: 3em;
|
|
588
886
|
margin-bottom: 3em;
|
|
589
887
|
}
|
|
590
888
|
|
|
591
|
-
.prose blockquote
|
|
889
|
+
.aui-root .prose blockquote{
|
|
592
890
|
font-weight: 500;
|
|
593
891
|
font-style: italic;
|
|
594
892
|
color: #1a202c;
|
|
@@ -600,15 +898,15 @@ video {
|
|
|
600
898
|
padding-left: 1em;
|
|
601
899
|
}
|
|
602
900
|
|
|
603
|
-
.prose blockquote p:first-of-type::before
|
|
901
|
+
.aui-root .prose blockquote p:first-of-type::before{
|
|
604
902
|
content: open-quote;
|
|
605
903
|
}
|
|
606
904
|
|
|
607
|
-
.prose blockquote p:last-of-type::after
|
|
905
|
+
.aui-root .prose blockquote p:last-of-type::after{
|
|
608
906
|
content: close-quote;
|
|
609
907
|
}
|
|
610
908
|
|
|
611
|
-
.prose h1
|
|
909
|
+
.aui-root .prose h1{
|
|
612
910
|
color: #1a202c;
|
|
613
911
|
font-weight: 800;
|
|
614
912
|
font-size: 2.25em;
|
|
@@ -617,7 +915,7 @@ video {
|
|
|
617
915
|
line-height: 1.1111111;
|
|
618
916
|
}
|
|
619
917
|
|
|
620
|
-
.prose h2
|
|
918
|
+
.aui-root .prose h2{
|
|
621
919
|
color: #1a202c;
|
|
622
920
|
font-weight: 700;
|
|
623
921
|
font-size: 1.5em;
|
|
@@ -626,7 +924,7 @@ video {
|
|
|
626
924
|
line-height: 1.3333333;
|
|
627
925
|
}
|
|
628
926
|
|
|
629
|
-
.prose h3
|
|
927
|
+
.aui-root .prose h3{
|
|
630
928
|
color: #1a202c;
|
|
631
929
|
font-weight: 600;
|
|
632
930
|
font-size: 1.25em;
|
|
@@ -635,7 +933,7 @@ video {
|
|
|
635
933
|
line-height: 1.6;
|
|
636
934
|
}
|
|
637
935
|
|
|
638
|
-
.prose h4
|
|
936
|
+
.aui-root .prose h4{
|
|
639
937
|
color: #1a202c;
|
|
640
938
|
font-weight: 600;
|
|
641
939
|
margin-top: 1.5em;
|
|
@@ -643,34 +941,34 @@ video {
|
|
|
643
941
|
line-height: 1.5;
|
|
644
942
|
}
|
|
645
943
|
|
|
646
|
-
.prose figure figcaption
|
|
944
|
+
.aui-root .prose figure figcaption{
|
|
647
945
|
color: #a0aec0;
|
|
648
946
|
font-size: 0.875em;
|
|
649
947
|
line-height: 1.4285714;
|
|
650
948
|
margin-top: 0.8571429em;
|
|
651
949
|
}
|
|
652
950
|
|
|
653
|
-
.prose code
|
|
951
|
+
.aui-root .prose code{
|
|
654
952
|
color: #1a202c;
|
|
655
953
|
font-weight: 600;
|
|
656
954
|
font-size: 0.875em;
|
|
657
955
|
}
|
|
658
956
|
|
|
659
|
-
.prose code::before
|
|
957
|
+
.aui-root .prose code::before{
|
|
660
958
|
content: "`";
|
|
661
959
|
}
|
|
662
960
|
|
|
663
|
-
.prose code::after
|
|
961
|
+
.aui-root .prose code::after{
|
|
664
962
|
content: "`";
|
|
665
963
|
}
|
|
666
964
|
|
|
667
|
-
.prose a code
|
|
965
|
+
.aui-root .prose a code{
|
|
668
966
|
color: #1a202c;
|
|
669
967
|
}
|
|
670
968
|
|
|
671
|
-
.prose pre
|
|
969
|
+
.aui-root .prose pre{
|
|
672
970
|
color: #edf2f7;
|
|
673
|
-
background-color: #
|
|
971
|
+
background-color: #1a202c;
|
|
674
972
|
overflow-x: auto;
|
|
675
973
|
font-size: 0.875em;
|
|
676
974
|
line-height: 1.7142857;
|
|
@@ -683,7 +981,7 @@ video {
|
|
|
683
981
|
padding-left: 1.1428571em;
|
|
684
982
|
}
|
|
685
983
|
|
|
686
|
-
.prose pre code
|
|
984
|
+
.aui-root .prose pre code{
|
|
687
985
|
background-color: transparent;
|
|
688
986
|
border-width: 0;
|
|
689
987
|
border-radius: 0;
|
|
@@ -695,15 +993,15 @@ video {
|
|
|
695
993
|
line-height: inherit;
|
|
696
994
|
}
|
|
697
995
|
|
|
698
|
-
.prose pre code::before
|
|
996
|
+
.aui-root .prose pre code::before{
|
|
699
997
|
content: none;
|
|
700
998
|
}
|
|
701
999
|
|
|
702
|
-
.prose pre code::after
|
|
1000
|
+
.aui-root .prose pre code::after{
|
|
703
1001
|
content: none;
|
|
704
1002
|
}
|
|
705
1003
|
|
|
706
|
-
.prose table
|
|
1004
|
+
.aui-root .prose table{
|
|
707
1005
|
width: 100%;
|
|
708
1006
|
table-layout: auto;
|
|
709
1007
|
text-align: left;
|
|
@@ -713,30 +1011,30 @@ video {
|
|
|
713
1011
|
line-height: 1.7142857;
|
|
714
1012
|
}
|
|
715
1013
|
|
|
716
|
-
.prose thead
|
|
1014
|
+
.aui-root .prose thead{
|
|
717
1015
|
color: #1a202c;
|
|
718
1016
|
font-weight: 600;
|
|
719
1017
|
border-bottom-width: 1px;
|
|
720
1018
|
border-bottom-color: #e2e8f0;
|
|
721
1019
|
}
|
|
722
1020
|
|
|
723
|
-
.prose thead th
|
|
1021
|
+
.aui-root .prose thead th{
|
|
724
1022
|
vertical-align: bottom;
|
|
725
1023
|
padding-right: 0.5714286em;
|
|
726
1024
|
padding-bottom: 0.5714286em;
|
|
727
1025
|
padding-left: 0.5714286em;
|
|
728
1026
|
}
|
|
729
1027
|
|
|
730
|
-
.prose tbody tr
|
|
1028
|
+
.aui-root .prose tbody tr{
|
|
731
1029
|
border-bottom-width: 1px;
|
|
732
1030
|
border-bottom-color: #edf2f7;
|
|
733
1031
|
}
|
|
734
1032
|
|
|
735
|
-
.prose tbody tr:last-child
|
|
1033
|
+
.aui-root .prose tbody tr:last-child{
|
|
736
1034
|
border-bottom-width: 0;
|
|
737
1035
|
}
|
|
738
1036
|
|
|
739
|
-
.prose tbody td
|
|
1037
|
+
.aui-root .prose tbody td{
|
|
740
1038
|
vertical-align: top;
|
|
741
1039
|
padding-top: 0.5714286em;
|
|
742
1040
|
padding-right: 0.5714286em;
|
|
@@ -744,962 +1042,929 @@ video {
|
|
|
744
1042
|
padding-left: 0.5714286em;
|
|
745
1043
|
}
|
|
746
1044
|
|
|
747
|
-
.prose
|
|
1045
|
+
.aui-root .prose{
|
|
748
1046
|
font-size: 1rem;
|
|
749
1047
|
line-height: 1.75;
|
|
750
1048
|
}
|
|
751
1049
|
|
|
752
|
-
.prose p
|
|
1050
|
+
.aui-root .prose p{
|
|
753
1051
|
margin-top: 1.25em;
|
|
754
1052
|
margin-bottom: 1.25em;
|
|
755
1053
|
}
|
|
756
1054
|
|
|
757
|
-
.prose img
|
|
1055
|
+
.aui-root .prose img{
|
|
758
1056
|
margin-top: 2em;
|
|
759
1057
|
margin-bottom: 2em;
|
|
760
1058
|
}
|
|
761
1059
|
|
|
762
|
-
.prose video
|
|
1060
|
+
.aui-root .prose video{
|
|
763
1061
|
margin-top: 2em;
|
|
764
1062
|
margin-bottom: 2em;
|
|
765
1063
|
}
|
|
766
1064
|
|
|
767
|
-
.prose figure
|
|
1065
|
+
.aui-root .prose figure{
|
|
768
1066
|
margin-top: 2em;
|
|
769
1067
|
margin-bottom: 2em;
|
|
770
1068
|
}
|
|
771
1069
|
|
|
772
|
-
.prose figure > *
|
|
1070
|
+
.aui-root .prose figure > *{
|
|
773
1071
|
margin-top: 0;
|
|
774
1072
|
margin-bottom: 0;
|
|
775
1073
|
}
|
|
776
1074
|
|
|
777
|
-
.prose h2 code
|
|
1075
|
+
.aui-root .prose h2 code{
|
|
778
1076
|
font-size: 0.875em;
|
|
779
1077
|
}
|
|
780
1078
|
|
|
781
|
-
.prose h3 code
|
|
1079
|
+
.aui-root .prose h3 code{
|
|
782
1080
|
font-size: 0.9em;
|
|
783
1081
|
}
|
|
784
1082
|
|
|
785
|
-
.prose ol
|
|
1083
|
+
.aui-root .prose ol{
|
|
786
1084
|
margin-top: 1.25em;
|
|
787
1085
|
margin-bottom: 1.25em;
|
|
788
1086
|
}
|
|
789
1087
|
|
|
790
|
-
.prose ul
|
|
1088
|
+
.aui-root .prose ul{
|
|
791
1089
|
margin-top: 1.25em;
|
|
792
1090
|
margin-bottom: 1.25em;
|
|
793
1091
|
}
|
|
794
1092
|
|
|
795
|
-
.prose li
|
|
1093
|
+
.aui-root .prose li{
|
|
796
1094
|
margin-top: 0.5em;
|
|
797
1095
|
margin-bottom: 0.5em;
|
|
798
1096
|
}
|
|
799
1097
|
|
|
800
|
-
.prose > ul > li p
|
|
1098
|
+
.aui-root .prose > ul > li p{
|
|
801
1099
|
margin-top: 0.75em;
|
|
802
1100
|
margin-bottom: 0.75em;
|
|
803
1101
|
}
|
|
804
1102
|
|
|
805
|
-
.prose > ul > li > *:first-child
|
|
1103
|
+
.aui-root .prose > ul > li > *:first-child{
|
|
806
1104
|
margin-top: 1.25em;
|
|
807
1105
|
}
|
|
808
1106
|
|
|
809
|
-
.prose > ul > li > *:last-child
|
|
1107
|
+
.aui-root .prose > ul > li > *:last-child{
|
|
810
1108
|
margin-bottom: 1.25em;
|
|
811
1109
|
}
|
|
812
1110
|
|
|
813
|
-
.prose > ol > li > *:first-child
|
|
1111
|
+
.aui-root .prose > ol > li > *:first-child{
|
|
814
1112
|
margin-top: 1.25em;
|
|
815
1113
|
}
|
|
816
1114
|
|
|
817
|
-
.prose > ol > li > *:last-child
|
|
1115
|
+
.aui-root .prose > ol > li > *:last-child{
|
|
818
1116
|
margin-bottom: 1.25em;
|
|
819
1117
|
}
|
|
820
1118
|
|
|
821
|
-
.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol
|
|
1119
|
+
.aui-root .prose ul ul, .aui-root .prose ul ol, .aui-root .prose ol ul, .aui-root .prose ol ol{
|
|
822
1120
|
margin-top: 0.75em;
|
|
823
1121
|
margin-bottom: 0.75em;
|
|
824
1122
|
}
|
|
825
1123
|
|
|
826
|
-
.prose hr + *
|
|
1124
|
+
.aui-root .prose hr + *{
|
|
827
1125
|
margin-top: 0;
|
|
828
1126
|
}
|
|
829
1127
|
|
|
830
|
-
.prose h2 + *
|
|
1128
|
+
.aui-root .prose h2 + *{
|
|
831
1129
|
margin-top: 0;
|
|
832
1130
|
}
|
|
833
1131
|
|
|
834
|
-
.prose h3 + *
|
|
1132
|
+
.aui-root .prose h3 + *{
|
|
835
1133
|
margin-top: 0;
|
|
836
1134
|
}
|
|
837
1135
|
|
|
838
|
-
.prose h4 + *
|
|
1136
|
+
.aui-root .prose h4 + *{
|
|
839
1137
|
margin-top: 0;
|
|
840
1138
|
}
|
|
841
1139
|
|
|
842
|
-
.prose thead th:first-child
|
|
1140
|
+
.aui-root .prose thead th:first-child{
|
|
843
1141
|
padding-left: 0;
|
|
844
1142
|
}
|
|
845
1143
|
|
|
846
|
-
.prose thead th:last-child
|
|
1144
|
+
.aui-root .prose thead th:last-child{
|
|
847
1145
|
padding-right: 0;
|
|
848
1146
|
}
|
|
849
1147
|
|
|
850
|
-
.prose tbody td:first-child
|
|
1148
|
+
.aui-root .prose tbody td:first-child{
|
|
851
1149
|
padding-left: 0;
|
|
852
1150
|
}
|
|
853
1151
|
|
|
854
|
-
.prose tbody td:last-child
|
|
1152
|
+
.aui-root .prose tbody td:last-child{
|
|
855
1153
|
padding-right: 0;
|
|
856
1154
|
}
|
|
857
1155
|
|
|
858
|
-
.prose > :first-child
|
|
1156
|
+
.aui-root .prose > :first-child{
|
|
859
1157
|
margin-top: 0;
|
|
860
1158
|
}
|
|
861
1159
|
|
|
862
|
-
.prose > :last-child
|
|
1160
|
+
.aui-root .prose > :last-child{
|
|
863
1161
|
margin-bottom: 0;
|
|
864
1162
|
}
|
|
865
1163
|
|
|
866
|
-
@media (min-width: 1024px)
|
|
867
|
-
.container\:base .burger-menu
|
|
1164
|
+
@media (min-width: 1024px){
|
|
1165
|
+
.aui-root .container\:base .burger-menu{
|
|
868
1166
|
display: none;
|
|
869
1167
|
}
|
|
870
1168
|
}
|
|
871
1169
|
|
|
872
|
-
.container\:xl .burger-menu {
|
|
1170
|
+
.aui-root .container\:xl .burger-menu {
|
|
873
1171
|
}
|
|
874
1172
|
|
|
875
|
-
@media (min-width: 1024px)
|
|
876
|
-
.container\:base .sidebar
|
|
1173
|
+
@media (min-width: 1024px){
|
|
1174
|
+
.aui-root .container\:base .sidebar{
|
|
1175
|
+
position: relative;
|
|
877
1176
|
display: block;
|
|
878
1177
|
height: auto;
|
|
879
|
-
position: relative;
|
|
880
1178
|
width: 16rem;
|
|
881
1179
|
}
|
|
882
1180
|
}
|
|
883
1181
|
|
|
884
|
-
.container\:xl .sidebar {
|
|
1182
|
+
.aui-root .container\:xl .sidebar {
|
|
885
1183
|
}
|
|
886
1184
|
|
|
887
|
-
@media (min-width: 1024px)
|
|
888
|
-
.container\:base .sidebar--content
|
|
1185
|
+
@media (min-width: 1024px){
|
|
1186
|
+
.aui-root .container\:base .sidebar--content{
|
|
889
1187
|
width: 14rem;
|
|
890
1188
|
}
|
|
891
1189
|
}
|
|
892
1190
|
|
|
893
|
-
.container\:xl .sidebar--content {
|
|
1191
|
+
.aui-root .container\:xl .sidebar--content {
|
|
894
1192
|
position: absolute;
|
|
895
1193
|
left: 50%;
|
|
896
1194
|
transform: translate(-50%, 0);
|
|
897
1195
|
}
|
|
898
1196
|
|
|
899
|
-
@media (min-width: 1536px)
|
|
900
|
-
.container\:base .panel-item
|
|
1197
|
+
@media (min-width: 1536px){
|
|
1198
|
+
.aui-root .container\:base .panel-item{
|
|
901
1199
|
display: flex;
|
|
902
1200
|
}
|
|
903
1201
|
}
|
|
904
1202
|
|
|
905
|
-
.container\:xl .panel-item {
|
|
1203
|
+
.aui-root .container\:xl .panel-item {
|
|
906
1204
|
display: block;
|
|
907
1205
|
}
|
|
908
1206
|
|
|
909
|
-
@media (min-width: 1536px)
|
|
910
|
-
.container\:base .panel--center .panel-item--center
|
|
1207
|
+
@media (min-width: 1536px){
|
|
1208
|
+
.aui-root .container\:base .panel--center .panel-item--center{
|
|
911
1209
|
width: 58.333333%;
|
|
912
1210
|
}
|
|
913
1211
|
}
|
|
914
1212
|
|
|
915
|
-
@media (min-width: 1536px)
|
|
916
|
-
.container\:base .panel--center .panel-item--right
|
|
1213
|
+
@media (min-width: 1536px){
|
|
1214
|
+
.aui-root .container\:base .panel--center .panel-item--right{
|
|
917
1215
|
width: 41.666667%;
|
|
918
1216
|
}
|
|
919
1217
|
}
|
|
920
1218
|
|
|
921
|
-
.container\:xl .panel--center .panel-item--center {
|
|
1219
|
+
.aui-root .container\:xl .panel--center .panel-item--center {
|
|
922
1220
|
width: 100%;
|
|
923
1221
|
}
|
|
924
1222
|
|
|
925
|
-
.container\:xl .panel--center .panel-item--right {
|
|
1223
|
+
.aui-root .container\:xl .panel--center .panel-item--right {
|
|
926
1224
|
width: 100%;
|
|
927
1225
|
}
|
|
928
1226
|
|
|
929
|
-
@media (min-width: 1536px)
|
|
930
|
-
.container\:base .examples
|
|
1227
|
+
@media (min-width: 1536px){
|
|
1228
|
+
.aui-root .container\:base .examples{
|
|
931
1229
|
margin-top: 0px;
|
|
932
1230
|
padding: 0px;
|
|
933
1231
|
}
|
|
934
1232
|
}
|
|
935
1233
|
|
|
936
|
-
.container\:xl .examples {
|
|
1234
|
+
.aui-root .container\:xl .examples {
|
|
937
1235
|
}
|
|
938
1236
|
|
|
939
|
-
.container\:base .panel--right {
|
|
1237
|
+
.aui-root .container\:base .panel--right {
|
|
940
1238
|
display: none;
|
|
941
1239
|
}
|
|
942
1240
|
|
|
943
|
-
@media (min-width: 1536px)
|
|
944
|
-
.container\:base .panel--right
|
|
1241
|
+
@media (min-width: 1536px){
|
|
1242
|
+
.aui-root .container\:base .panel--right{
|
|
945
1243
|
display: block;
|
|
946
1244
|
width: 41.666667%;
|
|
947
1245
|
}
|
|
948
1246
|
}
|
|
949
1247
|
|
|
950
|
-
.container\:xl .panel--right {
|
|
1248
|
+
.aui-root .container\:xl .panel--right {
|
|
951
1249
|
display: none;
|
|
952
1250
|
}
|
|
953
1251
|
|
|
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));
|
|
1252
|
+
.aui-root .prose pre {
|
|
1253
|
+
white-space: pre-wrap;
|
|
958
1254
|
}
|
|
959
1255
|
|
|
960
|
-
.
|
|
961
|
-
|
|
962
|
-
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
963
|
-
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1256
|
+
.aui-root .fixed{
|
|
1257
|
+
position: fixed;
|
|
964
1258
|
}
|
|
965
1259
|
|
|
966
|
-
.
|
|
967
|
-
|
|
968
|
-
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
1260
|
+
.aui-root .absolute{
|
|
1261
|
+
position: absolute;
|
|
969
1262
|
}
|
|
970
1263
|
|
|
971
|
-
.
|
|
972
|
-
|
|
973
|
-
background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
|
|
1264
|
+
.aui-root .relative{
|
|
1265
|
+
position: relative;
|
|
974
1266
|
}
|
|
975
1267
|
|
|
976
|
-
.
|
|
977
|
-
|
|
978
|
-
background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
|
|
1268
|
+
.aui-root .top-0{
|
|
1269
|
+
top: 0px;
|
|
979
1270
|
}
|
|
980
1271
|
|
|
981
|
-
.
|
|
982
|
-
|
|
983
|
-
background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
|
|
1272
|
+
.aui-root .right-0{
|
|
1273
|
+
right: 0px;
|
|
984
1274
|
}
|
|
985
1275
|
|
|
986
|
-
.
|
|
987
|
-
|
|
988
|
-
background-color: rgba(26, 32, 44, var(--tw-bg-opacity));
|
|
1276
|
+
.aui-root .right-8{
|
|
1277
|
+
right: 2rem;
|
|
989
1278
|
}
|
|
990
1279
|
|
|
991
|
-
.
|
|
992
|
-
|
|
993
|
-
background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
|
|
1280
|
+
.aui-root .bottom-16{
|
|
1281
|
+
bottom: 4rem;
|
|
994
1282
|
}
|
|
995
1283
|
|
|
996
|
-
.
|
|
997
|
-
|
|
998
|
-
background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
|
|
1284
|
+
.aui-root .z-10{
|
|
1285
|
+
z-index: 10;
|
|
999
1286
|
}
|
|
1000
1287
|
|
|
1001
|
-
.
|
|
1002
|
-
|
|
1003
|
-
background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
|
|
1288
|
+
.aui-root .z-20{
|
|
1289
|
+
z-index: 20;
|
|
1004
1290
|
}
|
|
1005
1291
|
|
|
1006
|
-
.
|
|
1007
|
-
|
|
1008
|
-
background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
|
|
1292
|
+
.aui-root .z-30{
|
|
1293
|
+
z-index: 30;
|
|
1009
1294
|
}
|
|
1010
1295
|
|
|
1011
|
-
.
|
|
1012
|
-
|
|
1013
|
-
|
|
1296
|
+
.aui-root .mx-2{
|
|
1297
|
+
margin-left: 0.5rem;
|
|
1298
|
+
margin-right: 0.5rem;
|
|
1014
1299
|
}
|
|
1015
1300
|
|
|
1016
|
-
.
|
|
1017
|
-
|
|
1018
|
-
|
|
1301
|
+
.aui-root .-mx-8{
|
|
1302
|
+
margin-left: -2rem;
|
|
1303
|
+
margin-right: -2rem;
|
|
1019
1304
|
}
|
|
1020
1305
|
|
|
1021
|
-
.
|
|
1022
|
-
|
|
1023
|
-
|
|
1306
|
+
.aui-root .my-2{
|
|
1307
|
+
margin-top: 0.5rem;
|
|
1308
|
+
margin-bottom: 0.5rem;
|
|
1024
1309
|
}
|
|
1025
1310
|
|
|
1026
|
-
.
|
|
1027
|
-
|
|
1028
|
-
background-color: rgba(128, 90, 213, var(--tw-bg-opacity));
|
|
1311
|
+
.aui-root .mt-1{
|
|
1312
|
+
margin-top: 0.25rem;
|
|
1029
1313
|
}
|
|
1030
1314
|
|
|
1031
|
-
.
|
|
1032
|
-
|
|
1033
|
-
background-color: rgba(251, 211, 141, var(--tw-bg-opacity));
|
|
1315
|
+
.aui-root .mt-2{
|
|
1316
|
+
margin-top: 0.5rem;
|
|
1034
1317
|
}
|
|
1035
1318
|
|
|
1036
|
-
.
|
|
1037
|
-
|
|
1038
|
-
background-color: rgba(144, 205, 244, var(--tw-bg-opacity));
|
|
1319
|
+
.aui-root .mt-4{
|
|
1320
|
+
margin-top: 1rem;
|
|
1039
1321
|
}
|
|
1040
1322
|
|
|
1041
|
-
.
|
|
1042
|
-
|
|
1043
|
-
background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
|
|
1323
|
+
.aui-root .mt-9{
|
|
1324
|
+
margin-top: 2.25rem;
|
|
1044
1325
|
}
|
|
1045
1326
|
|
|
1046
|
-
.
|
|
1047
|
-
|
|
1048
|
-
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
1327
|
+
.aui-root .mt-10{
|
|
1328
|
+
margin-top: 2.5rem;
|
|
1049
1329
|
}
|
|
1050
1330
|
|
|
1051
|
-
.
|
|
1052
|
-
|
|
1053
|
-
border-color: rgba(26, 32, 44, var(--tw-border-opacity));
|
|
1331
|
+
.aui-root .mt-16{
|
|
1332
|
+
margin-top: 4rem;
|
|
1054
1333
|
}
|
|
1055
1334
|
|
|
1056
|
-
.
|
|
1057
|
-
|
|
1058
|
-
border-color: rgba(245, 101, 101, var(--tw-border-opacity));
|
|
1335
|
+
.aui-root .mr-1{
|
|
1336
|
+
margin-right: 0.25rem;
|
|
1059
1337
|
}
|
|
1060
1338
|
|
|
1061
|
-
.
|
|
1062
|
-
|
|
1063
|
-
border-color: rgba(251, 211, 141, var(--tw-border-opacity));
|
|
1339
|
+
.aui-root .mr-2{
|
|
1340
|
+
margin-right: 0.5rem;
|
|
1064
1341
|
}
|
|
1065
1342
|
|
|
1066
|
-
.
|
|
1067
|
-
|
|
1068
|
-
border-color: rgba(56, 161, 105, var(--tw-border-opacity));
|
|
1343
|
+
.aui-root .mb-2{
|
|
1344
|
+
margin-bottom: 0.5rem;
|
|
1069
1345
|
}
|
|
1070
1346
|
|
|
1071
|
-
.
|
|
1072
|
-
|
|
1073
|
-
border-color: rgba(144, 205, 244, var(--tw-border-opacity));
|
|
1347
|
+
.aui-root .mb-3{
|
|
1348
|
+
margin-bottom: 0.75rem;
|
|
1074
1349
|
}
|
|
1075
1350
|
|
|
1076
|
-
.
|
|
1077
|
-
|
|
1078
|
-
border-color: rgba(49, 130, 206, var(--tw-border-opacity));
|
|
1351
|
+
.aui-root .mb-4{
|
|
1352
|
+
margin-bottom: 1rem;
|
|
1079
1353
|
}
|
|
1080
1354
|
|
|
1081
|
-
.
|
|
1082
|
-
|
|
1083
|
-
border-color: rgba(214, 188, 250, var(--tw-border-opacity));
|
|
1355
|
+
.aui-root .mb-12{
|
|
1356
|
+
margin-bottom: 3rem;
|
|
1084
1357
|
}
|
|
1085
1358
|
|
|
1086
|
-
.
|
|
1087
|
-
|
|
1359
|
+
.aui-root .-mb-1{
|
|
1360
|
+
margin-bottom: -0.25rem;
|
|
1088
1361
|
}
|
|
1089
1362
|
|
|
1090
|
-
.
|
|
1091
|
-
|
|
1363
|
+
.aui-root .ml-0{
|
|
1364
|
+
margin-left: 0px;
|
|
1092
1365
|
}
|
|
1093
1366
|
|
|
1094
|
-
.
|
|
1095
|
-
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
.border {
|
|
1099
|
-
border-width: 1px;
|
|
1367
|
+
.aui-root .ml-1{
|
|
1368
|
+
margin-left: 0.25rem;
|
|
1100
1369
|
}
|
|
1101
1370
|
|
|
1102
|
-
.
|
|
1103
|
-
|
|
1371
|
+
.aui-root .ml-2{
|
|
1372
|
+
margin-left: 0.5rem;
|
|
1104
1373
|
}
|
|
1105
1374
|
|
|
1106
|
-
.
|
|
1107
|
-
|
|
1375
|
+
.aui-root .ml-0\.5{
|
|
1376
|
+
margin-left: 0.125rem;
|
|
1108
1377
|
}
|
|
1109
1378
|
|
|
1110
|
-
.block
|
|
1379
|
+
.aui-root .block{
|
|
1111
1380
|
display: block;
|
|
1112
1381
|
}
|
|
1113
1382
|
|
|
1114
|
-
.inline-block
|
|
1383
|
+
.aui-root .inline-block{
|
|
1115
1384
|
display: inline-block;
|
|
1116
1385
|
}
|
|
1117
1386
|
|
|
1118
|
-
.flex
|
|
1387
|
+
.aui-root .flex{
|
|
1119
1388
|
display: flex;
|
|
1120
1389
|
}
|
|
1121
1390
|
|
|
1122
|
-
.table
|
|
1391
|
+
.aui-root .table{
|
|
1123
1392
|
display: table;
|
|
1124
1393
|
}
|
|
1125
1394
|
|
|
1126
|
-
.hidden
|
|
1395
|
+
.aui-root .hidden{
|
|
1127
1396
|
display: none;
|
|
1128
1397
|
}
|
|
1129
1398
|
|
|
1130
|
-
.
|
|
1131
|
-
|
|
1399
|
+
.aui-root .h-5{
|
|
1400
|
+
height: 1.25rem;
|
|
1132
1401
|
}
|
|
1133
1402
|
|
|
1134
|
-
.
|
|
1135
|
-
|
|
1403
|
+
.aui-root .h-6{
|
|
1404
|
+
height: 1.5rem;
|
|
1136
1405
|
}
|
|
1137
1406
|
|
|
1138
|
-
.
|
|
1139
|
-
|
|
1407
|
+
.aui-root .h-16{
|
|
1408
|
+
height: 4rem;
|
|
1140
1409
|
}
|
|
1141
1410
|
|
|
1142
|
-
.
|
|
1143
|
-
|
|
1411
|
+
.aui-root .h-full{
|
|
1412
|
+
height: 100%;
|
|
1144
1413
|
}
|
|
1145
1414
|
|
|
1146
|
-
.
|
|
1147
|
-
|
|
1415
|
+
.aui-root .max-h-screen{
|
|
1416
|
+
max-height: 100vh;
|
|
1148
1417
|
}
|
|
1149
1418
|
|
|
1150
|
-
.
|
|
1151
|
-
|
|
1419
|
+
.aui-root .w-5{
|
|
1420
|
+
width: 1.25rem;
|
|
1152
1421
|
}
|
|
1153
1422
|
|
|
1154
|
-
.
|
|
1155
|
-
|
|
1423
|
+
.aui-root .w-16{
|
|
1424
|
+
width: 4rem;
|
|
1156
1425
|
}
|
|
1157
1426
|
|
|
1158
|
-
.
|
|
1159
|
-
|
|
1427
|
+
.aui-root .w-20{
|
|
1428
|
+
width: 5rem;
|
|
1160
1429
|
}
|
|
1161
1430
|
|
|
1162
|
-
.
|
|
1163
|
-
|
|
1431
|
+
.aui-root .w-64{
|
|
1432
|
+
width: 16rem;
|
|
1164
1433
|
}
|
|
1165
1434
|
|
|
1166
|
-
.
|
|
1167
|
-
|
|
1435
|
+
.aui-root .w-full{
|
|
1436
|
+
width: 100%;
|
|
1168
1437
|
}
|
|
1169
1438
|
|
|
1170
|
-
.
|
|
1171
|
-
|
|
1439
|
+
.aui-root .min-w-1\/4{
|
|
1440
|
+
min-width: 25%;
|
|
1172
1441
|
}
|
|
1173
1442
|
|
|
1174
|
-
.
|
|
1175
|
-
|
|
1443
|
+
.aui-root .max-w-none{
|
|
1444
|
+
max-width: none;
|
|
1176
1445
|
}
|
|
1177
1446
|
|
|
1178
|
-
.
|
|
1179
|
-
|
|
1447
|
+
.aui-root .flex-1{
|
|
1448
|
+
flex: 1 1 0%;
|
|
1180
1449
|
}
|
|
1181
1450
|
|
|
1182
|
-
.
|
|
1183
|
-
|
|
1451
|
+
.aui-root .transform{
|
|
1452
|
+
--tw-translate-x: 0;
|
|
1453
|
+
--tw-translate-y: 0;
|
|
1454
|
+
--tw-rotate: 0;
|
|
1455
|
+
--tw-skew-x: 0;
|
|
1456
|
+
--tw-skew-y: 0;
|
|
1457
|
+
--tw-scale-x: 1;
|
|
1458
|
+
--tw-scale-y: 1;
|
|
1459
|
+
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));
|
|
1184
1460
|
}
|
|
1185
1461
|
|
|
1186
|
-
.
|
|
1187
|
-
|
|
1462
|
+
.aui-root .-rotate-180{
|
|
1463
|
+
--tw-rotate: -180deg;
|
|
1188
1464
|
}
|
|
1189
1465
|
|
|
1190
|
-
.
|
|
1191
|
-
|
|
1466
|
+
.aui-root .-rotate-90{
|
|
1467
|
+
--tw-rotate: -90deg;
|
|
1192
1468
|
}
|
|
1193
1469
|
|
|
1194
|
-
|
|
1195
|
-
|
|
1470
|
+
@keyframes spin{
|
|
1471
|
+
to{
|
|
1472
|
+
transform: rotate(360deg);
|
|
1473
|
+
}
|
|
1196
1474
|
}
|
|
1197
1475
|
|
|
1198
|
-
|
|
1199
|
-
|
|
1476
|
+
@keyframes ping{
|
|
1477
|
+
75%, 100%{
|
|
1478
|
+
transform: scale(2);
|
|
1479
|
+
opacity: 0;
|
|
1480
|
+
}
|
|
1200
1481
|
}
|
|
1201
1482
|
|
|
1202
|
-
|
|
1203
|
-
|
|
1483
|
+
@keyframes pulse{
|
|
1484
|
+
50%{
|
|
1485
|
+
opacity: .5;
|
|
1486
|
+
}
|
|
1204
1487
|
}
|
|
1205
1488
|
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1489
|
+
@keyframes bounce{
|
|
1490
|
+
0%, 100%{
|
|
1491
|
+
transform: translateY(-25%);
|
|
1492
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1493
|
+
}
|
|
1209
1494
|
|
|
1210
|
-
|
|
1211
|
-
|
|
1495
|
+
50%{
|
|
1496
|
+
transform: none;
|
|
1497
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1498
|
+
}
|
|
1212
1499
|
}
|
|
1213
1500
|
|
|
1214
|
-
.
|
|
1215
|
-
|
|
1216
|
-
margin-bottom: 0.5rem;
|
|
1501
|
+
.aui-root .cursor-pointer{
|
|
1502
|
+
cursor: pointer;
|
|
1217
1503
|
}
|
|
1218
1504
|
|
|
1219
|
-
.
|
|
1220
|
-
|
|
1221
|
-
margin-right: 0.5rem;
|
|
1505
|
+
.aui-root .flex-wrap{
|
|
1506
|
+
flex-wrap: wrap;
|
|
1222
1507
|
}
|
|
1223
1508
|
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
margin-right: -2rem;
|
|
1509
|
+
.aui-root .items-center{
|
|
1510
|
+
align-items: center;
|
|
1227
1511
|
}
|
|
1228
1512
|
|
|
1229
|
-
.
|
|
1230
|
-
|
|
1513
|
+
.aui-root .justify-center{
|
|
1514
|
+
justify-content: center;
|
|
1231
1515
|
}
|
|
1232
1516
|
|
|
1233
|
-
.
|
|
1234
|
-
|
|
1517
|
+
.aui-root .space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
1518
|
+
--tw-space-x-reverse: 0;
|
|
1519
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1520
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1235
1521
|
}
|
|
1236
1522
|
|
|
1237
|
-
.
|
|
1238
|
-
|
|
1523
|
+
.aui-root .space-y-2 > :not([hidden]) ~ :not([hidden]){
|
|
1524
|
+
--tw-space-y-reverse: 0;
|
|
1525
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1526
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1239
1527
|
}
|
|
1240
1528
|
|
|
1241
|
-
.
|
|
1242
|
-
|
|
1529
|
+
.aui-root .overflow-auto{
|
|
1530
|
+
overflow: auto;
|
|
1243
1531
|
}
|
|
1244
1532
|
|
|
1245
|
-
.
|
|
1246
|
-
|
|
1533
|
+
.aui-root .overflow-y-auto{
|
|
1534
|
+
overflow-y: auto;
|
|
1247
1535
|
}
|
|
1248
1536
|
|
|
1249
|
-
.
|
|
1250
|
-
|
|
1537
|
+
.aui-root .whitespace-pre-wrap{
|
|
1538
|
+
white-space: pre-wrap;
|
|
1251
1539
|
}
|
|
1252
1540
|
|
|
1253
|
-
.
|
|
1254
|
-
|
|
1541
|
+
.aui-root .break-words{
|
|
1542
|
+
overflow-wrap: break-word;
|
|
1255
1543
|
}
|
|
1256
1544
|
|
|
1257
|
-
.
|
|
1258
|
-
|
|
1545
|
+
.aui-root .break-all{
|
|
1546
|
+
word-break: break-all;
|
|
1259
1547
|
}
|
|
1260
1548
|
|
|
1261
|
-
.
|
|
1262
|
-
|
|
1549
|
+
.aui-root .rounded{
|
|
1550
|
+
border-radius: 0.25rem;
|
|
1263
1551
|
}
|
|
1264
1552
|
|
|
1265
|
-
.
|
|
1266
|
-
|
|
1553
|
+
.aui-root .rounded-full{
|
|
1554
|
+
border-radius: 9999px;
|
|
1267
1555
|
}
|
|
1268
1556
|
|
|
1269
|
-
.
|
|
1270
|
-
|
|
1557
|
+
.aui-root .border{
|
|
1558
|
+
border-width: 1px;
|
|
1271
1559
|
}
|
|
1272
1560
|
|
|
1273
|
-
.
|
|
1274
|
-
|
|
1561
|
+
.aui-root .border-l-8{
|
|
1562
|
+
border-left-width: 8px;
|
|
1275
1563
|
}
|
|
1276
1564
|
|
|
1277
|
-
.
|
|
1278
|
-
|
|
1565
|
+
.aui-root .border-solid{
|
|
1566
|
+
border-style: solid;
|
|
1279
1567
|
}
|
|
1280
1568
|
|
|
1281
|
-
.
|
|
1282
|
-
|
|
1569
|
+
.aui-root .border-gray-400{
|
|
1570
|
+
--tw-border-opacity: 1;
|
|
1571
|
+
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
1283
1572
|
}
|
|
1284
1573
|
|
|
1285
|
-
|
|
1286
|
-
|
|
1574
|
+
.aui-root .border-red-500{
|
|
1575
|
+
--tw-border-opacity: 1;
|
|
1576
|
+
border-color: rgba(245, 101, 101, var(--tw-border-opacity));
|
|
1287
1577
|
}
|
|
1288
1578
|
|
|
1289
|
-
.
|
|
1290
|
-
|
|
1579
|
+
.aui-root .border-orange-300{
|
|
1580
|
+
--tw-border-opacity: 1;
|
|
1581
|
+
border-color: rgba(251, 211, 141, var(--tw-border-opacity));
|
|
1291
1582
|
}
|
|
1292
1583
|
|
|
1293
|
-
.
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
max-width: max-content;
|
|
1584
|
+
.aui-root .border-green-600{
|
|
1585
|
+
--tw-border-opacity: 1;
|
|
1586
|
+
border-color: rgba(56, 161, 105, var(--tw-border-opacity));
|
|
1297
1587
|
}
|
|
1298
1588
|
|
|
1299
|
-
.
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
min-width: min-content;
|
|
1589
|
+
.aui-root .border-blue-300{
|
|
1590
|
+
--tw-border-opacity: 1;
|
|
1591
|
+
border-color: rgba(144, 205, 244, var(--tw-border-opacity));
|
|
1303
1592
|
}
|
|
1304
1593
|
|
|
1305
|
-
.
|
|
1306
|
-
|
|
1307
|
-
|
|
1594
|
+
.aui-root .border-blue-600{
|
|
1595
|
+
--tw-border-opacity: 1;
|
|
1596
|
+
border-color: rgba(49, 130, 206, var(--tw-border-opacity));
|
|
1308
1597
|
}
|
|
1309
1598
|
|
|
1310
|
-
.
|
|
1311
|
-
|
|
1599
|
+
.aui-root .border-purple-300{
|
|
1600
|
+
--tw-border-opacity: 1;
|
|
1601
|
+
border-color: rgba(214, 188, 250, var(--tw-border-opacity));
|
|
1312
1602
|
}
|
|
1313
1603
|
|
|
1314
|
-
.
|
|
1315
|
-
|
|
1604
|
+
.aui-root .bg-white{
|
|
1605
|
+
--tw-bg-opacity: 1;
|
|
1606
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
1316
1607
|
}
|
|
1317
1608
|
|
|
1318
|
-
.
|
|
1319
|
-
|
|
1609
|
+
.aui-root .bg-gray-100{
|
|
1610
|
+
--tw-bg-opacity: 1;
|
|
1611
|
+
background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
|
|
1320
1612
|
}
|
|
1321
1613
|
|
|
1322
|
-
.
|
|
1323
|
-
|
|
1614
|
+
.aui-root .bg-gray-200{
|
|
1615
|
+
--tw-bg-opacity: 1;
|
|
1616
|
+
background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
|
|
1324
1617
|
}
|
|
1325
1618
|
|
|
1326
|
-
.
|
|
1327
|
-
|
|
1619
|
+
.aui-root .bg-gray-800{
|
|
1620
|
+
--tw-bg-opacity: 1;
|
|
1621
|
+
background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
|
|
1328
1622
|
}
|
|
1329
1623
|
|
|
1330
|
-
.
|
|
1331
|
-
|
|
1624
|
+
.aui-root .bg-yellow-600{
|
|
1625
|
+
--tw-bg-opacity: 1;
|
|
1626
|
+
background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
|
|
1332
1627
|
}
|
|
1333
1628
|
|
|
1334
|
-
.
|
|
1335
|
-
|
|
1336
|
-
|
|
1629
|
+
.aui-root .bg-green-600{
|
|
1630
|
+
--tw-bg-opacity: 1;
|
|
1631
|
+
background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
|
|
1337
1632
|
}
|
|
1338
1633
|
|
|
1339
|
-
.
|
|
1340
|
-
|
|
1341
|
-
|
|
1634
|
+
.aui-root .bg-teal-500{
|
|
1635
|
+
--tw-bg-opacity: 1;
|
|
1636
|
+
background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
|
|
1342
1637
|
}
|
|
1343
1638
|
|
|
1344
|
-
.
|
|
1345
|
-
|
|
1346
|
-
|
|
1639
|
+
.aui-root .bg-blue-400{
|
|
1640
|
+
--tw-bg-opacity: 1;
|
|
1641
|
+
background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
|
|
1347
1642
|
}
|
|
1348
1643
|
|
|
1349
|
-
.
|
|
1350
|
-
|
|
1351
|
-
|
|
1644
|
+
.aui-root .bg-blue-500{
|
|
1645
|
+
--tw-bg-opacity: 1;
|
|
1646
|
+
background-color: rgba(66, 153, 225, var(--tw-bg-opacity));
|
|
1352
1647
|
}
|
|
1353
1648
|
|
|
1354
|
-
.
|
|
1355
|
-
|
|
1356
|
-
|
|
1649
|
+
.aui-root .bg-blue-600{
|
|
1650
|
+
--tw-bg-opacity: 1;
|
|
1651
|
+
background-color: rgba(49, 130, 206, var(--tw-bg-opacity));
|
|
1357
1652
|
}
|
|
1358
1653
|
|
|
1359
|
-
.
|
|
1360
|
-
|
|
1361
|
-
|
|
1654
|
+
.aui-root .bg-indigo-400{
|
|
1655
|
+
--tw-bg-opacity: 1;
|
|
1656
|
+
background-color: rgba(127, 156, 245, var(--tw-bg-opacity));
|
|
1362
1657
|
}
|
|
1363
1658
|
|
|
1364
|
-
.
|
|
1365
|
-
|
|
1366
|
-
|
|
1659
|
+
.aui-root .bg-purple-600{
|
|
1660
|
+
--tw-bg-opacity: 1;
|
|
1661
|
+
background-color: rgba(128, 90, 213, var(--tw-bg-opacity));
|
|
1367
1662
|
}
|
|
1368
1663
|
|
|
1369
|
-
.
|
|
1370
|
-
|
|
1371
|
-
|
|
1664
|
+
.aui-root .hover\:bg-orange-300:hover{
|
|
1665
|
+
--tw-bg-opacity: 1;
|
|
1666
|
+
background-color: rgba(251, 211, 141, var(--tw-bg-opacity));
|
|
1372
1667
|
}
|
|
1373
1668
|
|
|
1374
|
-
.
|
|
1375
|
-
|
|
1376
|
-
|
|
1669
|
+
.aui-root .hover\:bg-blue-300:hover{
|
|
1670
|
+
--tw-bg-opacity: 1;
|
|
1671
|
+
background-color: rgba(144, 205, 244, var(--tw-bg-opacity));
|
|
1377
1672
|
}
|
|
1378
1673
|
|
|
1379
|
-
.
|
|
1380
|
-
|
|
1381
|
-
|
|
1674
|
+
.aui-root .hover\:bg-purple-300:hover{
|
|
1675
|
+
--tw-bg-opacity: 1;
|
|
1676
|
+
background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
|
|
1382
1677
|
}
|
|
1383
1678
|
|
|
1384
|
-
.
|
|
1385
|
-
|
|
1679
|
+
.aui-root .fill-current{
|
|
1680
|
+
fill: currentColor;
|
|
1386
1681
|
}
|
|
1387
1682
|
|
|
1388
|
-
.
|
|
1389
|
-
padding
|
|
1683
|
+
.aui-root .p-1{
|
|
1684
|
+
padding: 0.25rem;
|
|
1390
1685
|
}
|
|
1391
1686
|
|
|
1392
|
-
.
|
|
1393
|
-
|
|
1687
|
+
.aui-root .p-2{
|
|
1688
|
+
padding: 0.5rem;
|
|
1394
1689
|
}
|
|
1395
1690
|
|
|
1396
|
-
.
|
|
1397
|
-
|
|
1691
|
+
.aui-root .p-4{
|
|
1692
|
+
padding: 1rem;
|
|
1398
1693
|
}
|
|
1399
1694
|
|
|
1400
|
-
.
|
|
1401
|
-
|
|
1695
|
+
.aui-root .p-8{
|
|
1696
|
+
padding: 2rem;
|
|
1402
1697
|
}
|
|
1403
1698
|
|
|
1404
|
-
.
|
|
1405
|
-
|
|
1699
|
+
.aui-root .px-1{
|
|
1700
|
+
padding-left: 0.25rem;
|
|
1701
|
+
padding-right: 0.25rem;
|
|
1406
1702
|
}
|
|
1407
1703
|
|
|
1408
|
-
.
|
|
1409
|
-
|
|
1704
|
+
.aui-root .px-2{
|
|
1705
|
+
padding-left: 0.5rem;
|
|
1706
|
+
padding-right: 0.5rem;
|
|
1410
1707
|
}
|
|
1411
1708
|
|
|
1412
|
-
.
|
|
1413
|
-
|
|
1709
|
+
.aui-root .px-3{
|
|
1710
|
+
padding-left: 0.75rem;
|
|
1711
|
+
padding-right: 0.75rem;
|
|
1414
1712
|
}
|
|
1415
1713
|
|
|
1416
|
-
.
|
|
1417
|
-
|
|
1714
|
+
.aui-root .px-4{
|
|
1715
|
+
padding-left: 1rem;
|
|
1716
|
+
padding-right: 1rem;
|
|
1418
1717
|
}
|
|
1419
1718
|
|
|
1420
|
-
|
|
1421
|
-
|
|
1719
|
+
.aui-root .px-8{
|
|
1720
|
+
padding-left: 2rem;
|
|
1721
|
+
padding-right: 2rem;
|
|
1422
1722
|
}
|
|
1423
1723
|
|
|
1424
|
-
.
|
|
1425
|
-
|
|
1426
|
-
|
|
1724
|
+
.aui-root .py-0{
|
|
1725
|
+
padding-top: 0px;
|
|
1726
|
+
padding-bottom: 0px;
|
|
1427
1727
|
}
|
|
1428
1728
|
|
|
1429
|
-
.
|
|
1430
|
-
|
|
1431
|
-
|
|
1729
|
+
.aui-root .py-1{
|
|
1730
|
+
padding-top: 0.25rem;
|
|
1731
|
+
padding-bottom: 0.25rem;
|
|
1432
1732
|
}
|
|
1433
1733
|
|
|
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;
|
|
1734
|
+
.aui-root .py-2{
|
|
1735
|
+
padding-top: 0.5rem;
|
|
1736
|
+
padding-bottom: 0.5rem;
|
|
1441
1737
|
}
|
|
1442
1738
|
|
|
1443
|
-
.
|
|
1444
|
-
|
|
1739
|
+
.aui-root .py-4{
|
|
1740
|
+
padding-top: 1rem;
|
|
1741
|
+
padding-bottom: 1rem;
|
|
1445
1742
|
}
|
|
1446
1743
|
|
|
1447
|
-
.
|
|
1448
|
-
|
|
1744
|
+
.aui-root .py-8{
|
|
1745
|
+
padding-top: 2rem;
|
|
1746
|
+
padding-bottom: 2rem;
|
|
1449
1747
|
}
|
|
1450
1748
|
|
|
1451
|
-
.
|
|
1452
|
-
|
|
1453
|
-
|
|
1749
|
+
.aui-root .py-0\.5{
|
|
1750
|
+
padding-top: 0.125rem;
|
|
1751
|
+
padding-bottom: 0.125rem;
|
|
1454
1752
|
}
|
|
1455
1753
|
|
|
1456
|
-
.
|
|
1457
|
-
|
|
1458
|
-
color: rgba(237, 242, 247, var(--tw-text-opacity));
|
|
1754
|
+
.aui-root .pt-8{
|
|
1755
|
+
padding-top: 2rem;
|
|
1459
1756
|
}
|
|
1460
1757
|
|
|
1461
|
-
.
|
|
1462
|
-
|
|
1463
|
-
color: rgba(160, 174, 192, var(--tw-text-opacity));
|
|
1758
|
+
.aui-root .pb-16{
|
|
1759
|
+
padding-bottom: 4rem;
|
|
1464
1760
|
}
|
|
1465
1761
|
|
|
1466
|
-
.text-
|
|
1467
|
-
|
|
1468
|
-
color: rgba(113, 128, 150, var(--tw-text-opacity));
|
|
1762
|
+
.aui-root .text-left{
|
|
1763
|
+
text-align: left;
|
|
1469
1764
|
}
|
|
1470
1765
|
|
|
1471
|
-
.text-
|
|
1472
|
-
|
|
1473
|
-
color: rgba(74, 85, 104, var(--tw-text-opacity));
|
|
1766
|
+
.aui-root .text-center{
|
|
1767
|
+
text-align: center;
|
|
1474
1768
|
}
|
|
1475
1769
|
|
|
1476
|
-
.
|
|
1477
|
-
|
|
1478
|
-
color: rgba(229, 62, 62, var(--tw-text-opacity));
|
|
1770
|
+
.aui-root .align-baseline{
|
|
1771
|
+
vertical-align: baseline;
|
|
1479
1772
|
}
|
|
1480
1773
|
|
|
1481
|
-
.
|
|
1482
|
-
|
|
1483
|
-
color: rgba(237, 137, 54, var(--tw-text-opacity));
|
|
1774
|
+
.aui-root .font-sans{
|
|
1775
|
+
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";
|
|
1484
1776
|
}
|
|
1485
1777
|
|
|
1486
|
-
.
|
|
1487
|
-
|
|
1488
|
-
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1778
|
+
.aui-root .font-mono{
|
|
1779
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1489
1780
|
}
|
|
1490
1781
|
|
|
1491
|
-
.text-
|
|
1492
|
-
|
|
1493
|
-
color: rgba(56, 161, 105, var(--tw-text-opacity));
|
|
1782
|
+
.aui-root .text-xs{
|
|
1783
|
+
font-size: 0.75rem;
|
|
1494
1784
|
}
|
|
1495
1785
|
|
|
1496
|
-
.text-
|
|
1497
|
-
|
|
1498
|
-
color: rgba(56, 178, 172, var(--tw-text-opacity));
|
|
1786
|
+
.aui-root .text-sm{
|
|
1787
|
+
font-size: 0.875rem;
|
|
1499
1788
|
}
|
|
1500
1789
|
|
|
1501
|
-
.text-
|
|
1502
|
-
|
|
1503
|
-
color: rgba(66, 153, 225, var(--tw-text-opacity));
|
|
1790
|
+
.aui-root .text-base{
|
|
1791
|
+
font-size: 1rem;
|
|
1504
1792
|
}
|
|
1505
1793
|
|
|
1506
|
-
.text-
|
|
1507
|
-
|
|
1508
|
-
color: rgba(159, 122, 234, var(--tw-text-opacity));
|
|
1794
|
+
.aui-root .text-lg{
|
|
1795
|
+
font-size: 1.125rem;
|
|
1509
1796
|
}
|
|
1510
1797
|
|
|
1511
|
-
.
|
|
1512
|
-
|
|
1513
|
-
color: rgba(26, 32, 44, var(--tw-text-opacity));
|
|
1798
|
+
.aui-root .text-2xl{
|
|
1799
|
+
font-size: 1.5rem;
|
|
1514
1800
|
}
|
|
1515
1801
|
|
|
1516
|
-
.
|
|
1517
|
-
|
|
1518
|
-
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1802
|
+
.aui-root .text-3xl{
|
|
1803
|
+
font-size: 1.875rem;
|
|
1519
1804
|
}
|
|
1520
1805
|
|
|
1521
|
-
.
|
|
1522
|
-
|
|
1523
|
-
color: rgba(49, 130, 206, var(--tw-text-opacity));
|
|
1806
|
+
.aui-root .text-4xl{
|
|
1807
|
+
font-size: 2.25rem;
|
|
1524
1808
|
}
|
|
1525
1809
|
|
|
1526
|
-
.
|
|
1527
|
-
|
|
1528
|
-
color: rgba(128, 90, 213, var(--tw-text-opacity));
|
|
1810
|
+
.aui-root .font-thin{
|
|
1811
|
+
font-weight: 100;
|
|
1529
1812
|
}
|
|
1530
1813
|
|
|
1531
|
-
.
|
|
1532
|
-
font-
|
|
1814
|
+
.aui-root .font-extralight{
|
|
1815
|
+
font-weight: 200;
|
|
1533
1816
|
}
|
|
1534
1817
|
|
|
1535
|
-
.
|
|
1536
|
-
|
|
1818
|
+
.aui-root .font-light{
|
|
1819
|
+
font-weight: 300;
|
|
1537
1820
|
}
|
|
1538
1821
|
|
|
1539
|
-
.
|
|
1540
|
-
|
|
1822
|
+
.aui-root .font-bold{
|
|
1823
|
+
font-weight: 700;
|
|
1541
1824
|
}
|
|
1542
1825
|
|
|
1543
|
-
.
|
|
1544
|
-
text-transform:
|
|
1826
|
+
.aui-root .uppercase{
|
|
1827
|
+
text-transform: uppercase;
|
|
1545
1828
|
}
|
|
1546
1829
|
|
|
1547
|
-
.
|
|
1548
|
-
text-
|
|
1830
|
+
.aui-root .lowercase{
|
|
1831
|
+
text-transform: lowercase;
|
|
1549
1832
|
}
|
|
1550
1833
|
|
|
1551
|
-
.
|
|
1552
|
-
text-
|
|
1834
|
+
.aui-root .capitalize{
|
|
1835
|
+
text-transform: capitalize;
|
|
1553
1836
|
}
|
|
1554
1837
|
|
|
1555
|
-
.
|
|
1556
|
-
|
|
1838
|
+
.aui-root .italic{
|
|
1839
|
+
font-style: italic;
|
|
1557
1840
|
}
|
|
1558
1841
|
|
|
1559
|
-
.
|
|
1560
|
-
|
|
1842
|
+
.aui-root .leading-normal{
|
|
1843
|
+
line-height: 1.5;
|
|
1561
1844
|
}
|
|
1562
1845
|
|
|
1563
|
-
.
|
|
1564
|
-
|
|
1846
|
+
.aui-root .text-white{
|
|
1847
|
+
--tw-text-opacity: 1;
|
|
1848
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
1565
1849
|
}
|
|
1566
1850
|
|
|
1567
|
-
.
|
|
1568
|
-
|
|
1851
|
+
.aui-root .text-gray-200{
|
|
1852
|
+
--tw-text-opacity: 1;
|
|
1853
|
+
color: rgba(237, 242, 247, var(--tw-text-opacity));
|
|
1569
1854
|
}
|
|
1570
1855
|
|
|
1571
|
-
.
|
|
1572
|
-
|
|
1856
|
+
.aui-root .text-gray-500{
|
|
1857
|
+
--tw-text-opacity: 1;
|
|
1858
|
+
color: rgba(160, 174, 192, var(--tw-text-opacity));
|
|
1573
1859
|
}
|
|
1574
1860
|
|
|
1575
|
-
.
|
|
1576
|
-
|
|
1861
|
+
.aui-root .text-gray-600{
|
|
1862
|
+
--tw-text-opacity: 1;
|
|
1863
|
+
color: rgba(113, 128, 150, var(--tw-text-opacity));
|
|
1577
1864
|
}
|
|
1578
1865
|
|
|
1579
|
-
.
|
|
1580
|
-
|
|
1866
|
+
.aui-root .text-gray-700{
|
|
1867
|
+
--tw-text-opacity: 1;
|
|
1868
|
+
color: rgba(74, 85, 104, var(--tw-text-opacity));
|
|
1581
1869
|
}
|
|
1582
1870
|
|
|
1583
|
-
.
|
|
1584
|
-
|
|
1871
|
+
.aui-root .text-gray-800{
|
|
1872
|
+
--tw-text-opacity: 1;
|
|
1873
|
+
color: rgba(45, 55, 72, var(--tw-text-opacity));
|
|
1585
1874
|
}
|
|
1586
1875
|
|
|
1587
|
-
.
|
|
1588
|
-
|
|
1876
|
+
.aui-root .text-red-600{
|
|
1877
|
+
--tw-text-opacity: 1;
|
|
1878
|
+
color: rgba(229, 62, 62, var(--tw-text-opacity));
|
|
1589
1879
|
}
|
|
1590
1880
|
|
|
1591
|
-
.
|
|
1592
|
-
|
|
1881
|
+
.aui-root .text-orange-500{
|
|
1882
|
+
--tw-text-opacity: 1;
|
|
1883
|
+
color: rgba(237, 137, 54, var(--tw-text-opacity));
|
|
1593
1884
|
}
|
|
1594
1885
|
|
|
1595
|
-
.
|
|
1596
|
-
|
|
1886
|
+
.aui-root .text-orange-600{
|
|
1887
|
+
--tw-text-opacity: 1;
|
|
1888
|
+
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1597
1889
|
}
|
|
1598
1890
|
|
|
1599
|
-
.
|
|
1600
|
-
|
|
1891
|
+
.aui-root .text-green-600{
|
|
1892
|
+
--tw-text-opacity: 1;
|
|
1893
|
+
color: rgba(56, 161, 105, var(--tw-text-opacity));
|
|
1601
1894
|
}
|
|
1602
1895
|
|
|
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));
|
|
1896
|
+
.aui-root .text-teal-500{
|
|
1897
|
+
--tw-text-opacity: 1;
|
|
1898
|
+
color: rgba(56, 178, 172, var(--tw-text-opacity));
|
|
1612
1899
|
}
|
|
1613
1900
|
|
|
1614
|
-
|
|
1615
|
-
--tw-
|
|
1901
|
+
.aui-root .text-blue-500{
|
|
1902
|
+
--tw-text-opacity: 1;
|
|
1903
|
+
color: rgba(66, 153, 225, var(--tw-text-opacity));
|
|
1616
1904
|
}
|
|
1617
1905
|
|
|
1618
|
-
|
|
1619
|
-
--tw-
|
|
1906
|
+
.aui-root .text-purple-500{
|
|
1907
|
+
--tw-text-opacity: 1;
|
|
1908
|
+
color: rgba(159, 122, 234, var(--tw-text-opacity));
|
|
1620
1909
|
}
|
|
1621
1910
|
|
|
1622
|
-
.
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
transition-duration: 150ms;
|
|
1911
|
+
.aui-root .hover\:text-gray-900:hover{
|
|
1912
|
+
--tw-text-opacity: 1;
|
|
1913
|
+
color: rgba(26, 32, 44, var(--tw-text-opacity));
|
|
1626
1914
|
}
|
|
1627
1915
|
|
|
1628
|
-
.
|
|
1629
|
-
|
|
1916
|
+
.aui-root .hover\:text-orange-600:hover{
|
|
1917
|
+
--tw-text-opacity: 1;
|
|
1918
|
+
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1630
1919
|
}
|
|
1631
1920
|
|
|
1632
|
-
.
|
|
1633
|
-
|
|
1921
|
+
.aui-root .hover\:text-blue-600:hover{
|
|
1922
|
+
--tw-text-opacity: 1;
|
|
1923
|
+
color: rgba(49, 130, 206, var(--tw-text-opacity));
|
|
1634
1924
|
}
|
|
1635
1925
|
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
}
|
|
1926
|
+
.aui-root .hover\:text-purple-600:hover{
|
|
1927
|
+
--tw-text-opacity: 1;
|
|
1928
|
+
color: rgba(128, 90, 213, var(--tw-text-opacity));
|
|
1640
1929
|
}
|
|
1641
1930
|
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
transform: rotate(360deg);
|
|
1645
|
-
}
|
|
1931
|
+
.aui-root .underline{
|
|
1932
|
+
text-decoration: underline;
|
|
1646
1933
|
}
|
|
1647
1934
|
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
transform: scale(2);
|
|
1651
|
-
opacity: 0;
|
|
1652
|
-
}
|
|
1935
|
+
.aui-root .no-underline{
|
|
1936
|
+
text-decoration: none;
|
|
1653
1937
|
}
|
|
1654
1938
|
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
transform: scale(2);
|
|
1658
|
-
opacity: 0;
|
|
1659
|
-
}
|
|
1939
|
+
.aui-root *, .aui-root ::before, .aui-root ::after{
|
|
1940
|
+
--tw-shadow: 0 0 #0000;
|
|
1660
1941
|
}
|
|
1661
1942
|
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
}
|
|
1943
|
+
.aui-root .shadow{
|
|
1944
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1945
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1666
1946
|
}
|
|
1667
1947
|
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
}
|
|
1948
|
+
.aui-root .shadow-md{
|
|
1949
|
+
--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
1950
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1672
1951
|
}
|
|
1673
1952
|
|
|
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
|
-
}
|
|
1680
|
-
|
|
1681
|
-
50% {
|
|
1682
|
-
transform: none;
|
|
1683
|
-
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1684
|
-
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1685
|
-
}
|
|
1953
|
+
.aui-root .focus\:outline-none:focus{
|
|
1954
|
+
outline: 2px solid transparent;
|
|
1955
|
+
outline-offset: 2px;
|
|
1686
1956
|
}
|
|
1687
1957
|
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
50% {
|
|
1696
|
-
transform: none;
|
|
1697
|
-
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1698
|
-
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1699
|
-
}
|
|
1958
|
+
.aui-root *, .aui-root ::before, .aui-root ::after{
|
|
1959
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
1960
|
+
--tw-ring-offset-width: 0px;
|
|
1961
|
+
--tw-ring-offset-color: #fff;
|
|
1962
|
+
--tw-ring-color: rgba(66, 153, 225, 0.5);
|
|
1963
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1964
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1700
1965
|
}
|
|
1701
1966
|
|
|
1702
|
-
.filter
|
|
1967
|
+
.aui-root .filter{
|
|
1703
1968
|
--tw-blur: var(--tw-empty,/*!*/ /*!*/);
|
|
1704
1969
|
--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
|
|
1705
1970
|
--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
|
|
@@ -1712,37 +1977,55 @@ video {
|
|
|
1712
1977
|
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
1978
|
}
|
|
1714
1979
|
|
|
1715
|
-
|
|
1980
|
+
.aui-root .transition-transform{
|
|
1981
|
+
transition-property: transform;
|
|
1982
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1983
|
+
transition-duration: 150ms;
|
|
1716
1984
|
}
|
|
1717
1985
|
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
display: flex;
|
|
1721
|
-
}
|
|
1986
|
+
.aui-root .duration-150{
|
|
1987
|
+
transition-duration: 150ms;
|
|
1722
1988
|
}
|
|
1723
1989
|
|
|
1724
|
-
|
|
1990
|
+
.aui-root .ease-linear{
|
|
1991
|
+
transition-timing-function: linear;
|
|
1725
1992
|
}
|
|
1726
1993
|
|
|
1727
|
-
|
|
1994
|
+
.aui-root .break-anywhere {
|
|
1995
|
+
overflow-wrap: anywhere;
|
|
1728
1996
|
}
|
|
1729
1997
|
|
|
1730
|
-
@media (min-width:
|
|
1731
|
-
|
|
1732
|
-
|
|
1998
|
+
@media (min-width: 640px){
|
|
1999
|
+
}
|
|
2000
|
+
|
|
2001
|
+
@media (min-width: 768px){
|
|
2002
|
+
.aui-root .md\:flex{
|
|
2003
|
+
display: flex;
|
|
1733
2004
|
}
|
|
2005
|
+
}
|
|
1734
2006
|
|
|
1735
|
-
|
|
2007
|
+
@media (min-width: 1024px){
|
|
2008
|
+
}
|
|
2009
|
+
|
|
2010
|
+
@media (min-width: 1280px){
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
@media (min-width: 1536px){
|
|
2014
|
+
.aui-root .\32xl\:mx-0{
|
|
1736
2015
|
margin-left: 0px;
|
|
1737
2016
|
margin-right: 0px;
|
|
1738
2017
|
}
|
|
1739
2018
|
|
|
1740
|
-
.\32xl\:
|
|
1741
|
-
|
|
1742
|
-
padding-right: 1rem;
|
|
2019
|
+
.aui-root .\32xl\:w-7\/12{
|
|
2020
|
+
width: 58.333333%;
|
|
1743
2021
|
}
|
|
1744
2022
|
|
|
1745
|
-
.\32xl\:
|
|
1746
|
-
|
|
2023
|
+
.aui-root .\32xl\:rounded{
|
|
2024
|
+
border-radius: 0.25rem;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
.aui-root .\32xl\:px-4{
|
|
2028
|
+
padding-left: 1rem;
|
|
2029
|
+
padding-right: 1rem;
|
|
1747
2030
|
}
|
|
1748
2031
|
}
|