@asyncapi/react-component 1.0.0-next.2 → 1.0.0-next.23
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 +4 -2
- package/browser/index.js +8 -6
- package/browser/standalone/index.js +45 -0
- package/browser/standalone/without-parser.js +41 -0
- package/browser/without-parser.js +6 -6
- package/lib/cjs/components/Bindings.js +12 -4
- package/lib/cjs/components/Bindings.js.map +1 -1
- package/lib/cjs/components/CollapseButton.js +4 -3
- package/lib/cjs/components/CollapseButton.js.map +1 -1
- package/lib/cjs/components/Extensions.js +2 -1
- 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 +53 -20
- 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 +1 -1
- package/lib/cjs/components/index.js.map +1 -1
- package/lib/cjs/config/default.js +1 -0
- package/lib/cjs/config/default.js.map +1 -1
- package/lib/cjs/constants.js +3 -48
- package/lib/cjs/constants.js.map +1 -1
- package/lib/cjs/containers/AsyncApi/AsyncApi.js +3 -1
- package/lib/cjs/containers/AsyncApi/AsyncApi.js.map +1 -1
- package/lib/cjs/containers/AsyncApi/Layout.js +18 -17
- package/lib/cjs/containers/AsyncApi/Layout.js.map +1 -1
- package/lib/cjs/containers/AsyncApi/Standalone.js +2 -0
- package/lib/cjs/containers/AsyncApi/Standalone.js.map +1 -1
- package/lib/cjs/containers/Error/Error.js +5 -4
- package/lib/cjs/containers/Error/Error.js.map +1 -1
- package/lib/cjs/containers/Info/Info.js +11 -5
- package/lib/cjs/containers/Info/Info.js.map +1 -1
- package/lib/cjs/containers/Messages/Message.js +15 -7
- package/lib/cjs/containers/Messages/Message.js.map +1 -1
- package/lib/cjs/containers/Messages/MessageExample.js +13 -10
- 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 +31 -11
- package/lib/cjs/containers/Operations/Operation.js.map +1 -1
- package/lib/cjs/containers/Operations/Operations.js +9 -6
- 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/Server.js +10 -6
- package/lib/cjs/containers/Servers/Server.js.map +1 -1
- package/lib/cjs/containers/Servers/ServerSecurity.js +65 -43
- package/lib/cjs/containers/Servers/ServerSecurity.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 +50 -34
- package/lib/cjs/containers/Sidebar/Sidebar.js.map +1 -1
- package/lib/cjs/contexts/index.js +1 -0
- 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 +2 -2
- 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 +2 -3
- 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 +33 -5
- package/lib/cjs/helpers/message.js.map +1 -1
- package/lib/cjs/helpers/parser.js +4 -4
- package/lib/cjs/helpers/parser.js.map +1 -1
- package/lib/cjs/helpers/schema.js +176 -44
- 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/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 +2 -2
- package/lib/esm/components/CollapseButton.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 +49 -17
- 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/index.js +1 -1
- package/lib/esm/components/index.js.map +1 -1
- package/lib/esm/config/default.js +1 -0
- package/lib/esm/config/default.js.map +1 -1
- package/lib/esm/constants.js +1 -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 +18 -17
- package/lib/esm/containers/AsyncApi/Layout.js.map +1 -1
- package/lib/esm/containers/AsyncApi/Standalone.js +2 -0
- package/lib/esm/containers/AsyncApi/Standalone.js.map +1 -1
- package/lib/esm/containers/Error/Error.js +3 -3
- package/lib/esm/containers/Error/Error.js.map +1 -1
- package/lib/esm/containers/Info/Info.js +8 -3
- package/lib/esm/containers/Info/Info.js.map +1 -1
- package/lib/esm/containers/Messages/Message.js +13 -6
- package/lib/esm/containers/Messages/Message.js.map +1 -1
- package/lib/esm/containers/Messages/MessageExample.js +9 -8
- 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 +31 -12
- package/lib/esm/containers/Operations/Operation.js.map +1 -1
- package/lib/esm/containers/Operations/Operations.js +7 -5
- 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/Server.js +9 -6
- package/lib/esm/containers/Servers/Server.js.map +1 -1
- package/lib/esm/containers/Servers/ServerSecurity.js +62 -41
- package/lib/esm/containers/Servers/ServerSecurity.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 +34 -22
- 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 +32 -4
- package/lib/esm/helpers/message.js.map +1 -1
- package/lib/esm/helpers/parser.js.map +1 -1
- package/lib/esm/helpers/schema.js +175 -43
- 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/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/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 +3 -2
- package/lib/types/components/Schema.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 +1 -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 +1 -26
- package/lib/types/constants.d.ts.map +1 -1
- package/lib/types/containers/AsyncApi/Layout.d.ts.map +1 -1
- package/lib/types/containers/Info/Info.d.ts.map +1 -1
- package/lib/types/containers/Messages/Message.d.ts +1 -0
- package/lib/types/containers/Messages/Message.d.ts.map +1 -1
- package/lib/types/containers/Messages/MessageExample.d.ts +2 -1
- 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.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/Server.d.ts.map +1 -1
- package/lib/types/containers/Servers/ServerSecurity.d.ts +1 -0
- package/lib/types/containers/Servers/ServerSecurity.d.ts.map +1 -1
- package/lib/types/containers/Servers/Servers.d.ts.map +1 -1
- 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 +1 -3
- 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 +3 -2
- package/lib/types/helpers/message.d.ts.map +1 -1
- package/lib/types/helpers/schema.d.ts +10 -2
- 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/index.d.ts +2 -1
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/types.d.ts +9 -302
- 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 +29 -12
- package/styles/default.css +787 -550
- 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/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/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/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
|
+
.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
|
+
.hljs-keyword {
|
|
41
|
+
color: #c792ea;
|
|
42
|
+
font-style: italic;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.hljs-built_in {
|
|
46
|
+
color: #addb67;
|
|
47
|
+
font-style: italic;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.hljs-type {
|
|
51
|
+
color: #82aaff;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.hljs-literal {
|
|
55
|
+
color: #ff5874;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.hljs-number {
|
|
59
|
+
color: #F78C6C;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.hljs-regexp {
|
|
63
|
+
color: #5ca7e4;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.hljs-string {
|
|
67
|
+
color: #ecc48d;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.hljs-subst {
|
|
71
|
+
color: #d3423e;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.hljs-symbol {
|
|
75
|
+
color: #82aaff;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.hljs-class {
|
|
79
|
+
color: #ffcb8b;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.hljs-function {
|
|
83
|
+
color: #82AAFF;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.hljs-title {
|
|
87
|
+
color: #DCDCAA;
|
|
88
|
+
font-style: italic;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.hljs-params {
|
|
92
|
+
color: #7fdbca;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* Meta */
|
|
96
|
+
|
|
97
|
+
.hljs-comment {
|
|
98
|
+
color: #637777;
|
|
99
|
+
font-style: italic;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.hljs-doctag {
|
|
103
|
+
color: #7fdbca;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.hljs-meta {
|
|
107
|
+
color: #82aaff;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.hljs-meta-keyword {
|
|
111
|
+
color: #82aaff;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.hljs-meta-string {
|
|
115
|
+
color: #ecc48d;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/* Tags, attributes, config */
|
|
119
|
+
|
|
120
|
+
.hljs-section {
|
|
121
|
+
color: #82b1ff;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.hljs-tag,
|
|
125
|
+
.hljs-name,
|
|
126
|
+
.hljs-builtin-name {
|
|
127
|
+
color: #7fdbca;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.hljs-attr {
|
|
131
|
+
color: #7fdbca;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.hljs-attribute {
|
|
135
|
+
color: #80cbc4;
|
|
136
|
+
}
|
|
2
137
|
|
|
3
|
-
|
|
138
|
+
.hljs-variable {
|
|
139
|
+
color: #addb67;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/* Markup */
|
|
143
|
+
|
|
144
|
+
.hljs-bullet {
|
|
145
|
+
color: #d9f5dd;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.hljs-code {
|
|
149
|
+
color: #80CBC4;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.hljs-emphasis {
|
|
153
|
+
color: #c792ea;
|
|
154
|
+
font-style: italic;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.hljs-strong {
|
|
158
|
+
color: #addb67;
|
|
159
|
+
font-weight: bold;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.hljs-formula {
|
|
163
|
+
color: #c792ea;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.hljs-link {
|
|
167
|
+
color: #ff869a;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.hljs-quote {
|
|
171
|
+
color: #697098;
|
|
172
|
+
font-style: italic;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/* CSS */
|
|
176
|
+
|
|
177
|
+
.hljs-selector-tag {
|
|
178
|
+
color: #ff6363;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.hljs-selector-id {
|
|
182
|
+
color: #fad430;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.hljs-selector-class {
|
|
186
|
+
color: #addb67;
|
|
187
|
+
font-style: italic;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.hljs-selector-attr,
|
|
191
|
+
.hljs-selector-pseudo {
|
|
192
|
+
color: #c792ea;
|
|
193
|
+
font-style: italic;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* Templates */
|
|
197
|
+
|
|
198
|
+
.hljs-template-tag {
|
|
199
|
+
color: #c792ea;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.hljs-template-variable {
|
|
203
|
+
color: #addb67;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
/* diff */
|
|
207
|
+
|
|
208
|
+
.hljs-addition {
|
|
209
|
+
color: #addb67ff;
|
|
210
|
+
font-style: italic;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.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
|
|
@@ -12,8 +229,8 @@ Use a better box model (opinionated).
|
|
|
12
229
|
*/
|
|
13
230
|
|
|
14
231
|
*,
|
|
15
|
-
|
|
16
|
-
|
|
232
|
+
::before,
|
|
233
|
+
::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
|
+
html {
|
|
25
242
|
-moz-tab-size: 4;
|
|
26
243
|
-o-tab-size: 4;
|
|
27
244
|
tab-size: 4;
|
|
@@ -298,16 +515,6 @@ button {
|
|
|
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
518
|
fieldset {
|
|
312
519
|
margin: 0;
|
|
313
520
|
padding: 0;
|
|
@@ -378,7 +585,7 @@ body {
|
|
|
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
|
/*
|
|
@@ -427,6 +634,14 @@ button {
|
|
|
427
634
|
cursor: pointer;
|
|
428
635
|
}
|
|
429
636
|
|
|
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
|
+
|
|
430
645
|
table {
|
|
431
646
|
border-collapse: collapse;
|
|
432
647
|
}
|
|
@@ -484,11 +699,20 @@ samp {
|
|
|
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
718
|
img,
|
|
@@ -499,8 +723,8 @@ audio,
|
|
|
499
723
|
iframe,
|
|
500
724
|
embed,
|
|
501
725
|
object {
|
|
502
|
-
display: block;
|
|
503
|
-
vertical-align: middle;
|
|
726
|
+
display: block; /* 1 */
|
|
727
|
+
vertical-align: middle; /* 2 */
|
|
504
728
|
}
|
|
505
729
|
|
|
506
730
|
/**
|
|
@@ -516,12 +740,25 @@ video {
|
|
|
516
740
|
height: auto;
|
|
517
741
|
}
|
|
518
742
|
|
|
519
|
-
|
|
743
|
+
/**
|
|
744
|
+
* Ensure the default browser behavior of the `hidden` attribute.
|
|
745
|
+
*/
|
|
746
|
+
|
|
747
|
+
[hidden] {
|
|
748
|
+
display: none;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
*, ::before, ::after{
|
|
752
|
+
--tw-border-opacity: 1;
|
|
753
|
+
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.prose{
|
|
520
757
|
color: #4a5568;
|
|
521
758
|
max-width: 65ch;
|
|
522
759
|
}
|
|
523
760
|
|
|
524
|
-
.prose [class~="lead"]
|
|
761
|
+
.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
|
+
.prose a{
|
|
533
770
|
color: #1a202c;
|
|
534
771
|
text-decoration: underline;
|
|
535
772
|
font-weight: 500;
|
|
536
773
|
}
|
|
537
774
|
|
|
538
|
-
.prose strong
|
|
775
|
+
.prose strong{
|
|
539
776
|
color: #1a202c;
|
|
540
777
|
font-weight: 600;
|
|
541
778
|
}
|
|
542
779
|
|
|
543
|
-
.prose ol[type="a"]
|
|
780
|
+
.prose ol[type="a"]{
|
|
544
781
|
--list-counter-style: lower-alpha;
|
|
545
782
|
}
|
|
546
783
|
|
|
547
|
-
.prose ol[type="
|
|
784
|
+
.prose ol[type="a" s]{
|
|
785
|
+
--list-counter-style: lower-alpha;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.prose ol[type="i"]{
|
|
789
|
+
--list-counter-style: lower-roman;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
.prose ol[type="i" s]{
|
|
548
793
|
--list-counter-style: lower-roman;
|
|
549
794
|
}
|
|
550
795
|
|
|
551
|
-
.prose ol[type="1"]
|
|
796
|
+
.prose ol[type="1"]{
|
|
552
797
|
--list-counter-style: decimal;
|
|
553
798
|
}
|
|
554
799
|
|
|
555
|
-
.prose ol > li
|
|
800
|
+
.prose ol > li{
|
|
556
801
|
position: relative;
|
|
557
802
|
padding-left: 1.75em;
|
|
558
803
|
}
|
|
559
804
|
|
|
560
|
-
.prose ol > li::before
|
|
805
|
+
.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
|
+
.prose ul > li{
|
|
569
814
|
position: relative;
|
|
570
815
|
padding-left: 1.75em;
|
|
571
816
|
}
|
|
572
817
|
|
|
573
|
-
.prose ul > li::before
|
|
818
|
+
.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
|
+
.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
|
+
.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
|
+
.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
|
+
.prose blockquote p:last-of-type::after{
|
|
608
853
|
content: close-quote;
|
|
609
854
|
}
|
|
610
855
|
|
|
611
|
-
.prose h1
|
|
856
|
+
.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
|
+
.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
|
+
.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
|
+
.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
|
+
.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
|
+
.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
|
+
.prose code::before{
|
|
660
905
|
content: "`";
|
|
661
906
|
}
|
|
662
907
|
|
|
663
|
-
.prose code::after
|
|
908
|
+
.prose code::after{
|
|
664
909
|
content: "`";
|
|
665
910
|
}
|
|
666
911
|
|
|
667
|
-
.prose a code
|
|
912
|
+
.prose a code{
|
|
668
913
|
color: #1a202c;
|
|
669
914
|
}
|
|
670
915
|
|
|
671
|
-
.prose pre
|
|
916
|
+
.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
|
+
.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
|
+
.prose pre code::before{
|
|
699
944
|
content: none;
|
|
700
945
|
}
|
|
701
946
|
|
|
702
|
-
.prose pre code::after
|
|
947
|
+
.prose pre code::after{
|
|
703
948
|
content: none;
|
|
704
949
|
}
|
|
705
950
|
|
|
706
|
-
.prose table
|
|
951
|
+
.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
|
+
.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
|
+
.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
|
+
.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
|
+
.prose tbody tr:last-child{
|
|
736
981
|
border-bottom-width: 0;
|
|
737
982
|
}
|
|
738
983
|
|
|
739
|
-
.prose tbody td
|
|
984
|
+
.prose tbody td{
|
|
740
985
|
vertical-align: top;
|
|
741
986
|
padding-top: 0.5714286em;
|
|
742
987
|
padding-right: 0.5714286em;
|
|
@@ -744,127 +989,127 @@ video {
|
|
|
744
989
|
padding-left: 0.5714286em;
|
|
745
990
|
}
|
|
746
991
|
|
|
747
|
-
.prose
|
|
992
|
+
.prose{
|
|
748
993
|
font-size: 1rem;
|
|
749
994
|
line-height: 1.75;
|
|
750
995
|
}
|
|
751
996
|
|
|
752
|
-
.prose p
|
|
997
|
+
.prose p{
|
|
753
998
|
margin-top: 1.25em;
|
|
754
999
|
margin-bottom: 1.25em;
|
|
755
1000
|
}
|
|
756
1001
|
|
|
757
|
-
.prose img
|
|
1002
|
+
.prose img{
|
|
758
1003
|
margin-top: 2em;
|
|
759
1004
|
margin-bottom: 2em;
|
|
760
1005
|
}
|
|
761
1006
|
|
|
762
|
-
.prose video
|
|
1007
|
+
.prose video{
|
|
763
1008
|
margin-top: 2em;
|
|
764
1009
|
margin-bottom: 2em;
|
|
765
1010
|
}
|
|
766
1011
|
|
|
767
|
-
.prose figure
|
|
1012
|
+
.prose figure{
|
|
768
1013
|
margin-top: 2em;
|
|
769
1014
|
margin-bottom: 2em;
|
|
770
1015
|
}
|
|
771
1016
|
|
|
772
|
-
.prose figure > *
|
|
1017
|
+
.prose figure > *{
|
|
773
1018
|
margin-top: 0;
|
|
774
1019
|
margin-bottom: 0;
|
|
775
1020
|
}
|
|
776
1021
|
|
|
777
|
-
.prose h2 code
|
|
1022
|
+
.prose h2 code{
|
|
778
1023
|
font-size: 0.875em;
|
|
779
1024
|
}
|
|
780
1025
|
|
|
781
|
-
.prose h3 code
|
|
1026
|
+
.prose h3 code{
|
|
782
1027
|
font-size: 0.9em;
|
|
783
1028
|
}
|
|
784
1029
|
|
|
785
|
-
.prose ol
|
|
1030
|
+
.prose ol{
|
|
786
1031
|
margin-top: 1.25em;
|
|
787
1032
|
margin-bottom: 1.25em;
|
|
788
1033
|
}
|
|
789
1034
|
|
|
790
|
-
.prose ul
|
|
1035
|
+
.prose ul{
|
|
791
1036
|
margin-top: 1.25em;
|
|
792
1037
|
margin-bottom: 1.25em;
|
|
793
1038
|
}
|
|
794
1039
|
|
|
795
|
-
.prose li
|
|
1040
|
+
.prose li{
|
|
796
1041
|
margin-top: 0.5em;
|
|
797
1042
|
margin-bottom: 0.5em;
|
|
798
1043
|
}
|
|
799
1044
|
|
|
800
|
-
.prose > ul > li p
|
|
1045
|
+
.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
|
+
.prose > ul > li > *:first-child{
|
|
806
1051
|
margin-top: 1.25em;
|
|
807
1052
|
}
|
|
808
1053
|
|
|
809
|
-
.prose > ul > li > *:last-child
|
|
1054
|
+
.prose > ul > li > *:last-child{
|
|
810
1055
|
margin-bottom: 1.25em;
|
|
811
1056
|
}
|
|
812
1057
|
|
|
813
|
-
.prose > ol > li > *:first-child
|
|
1058
|
+
.prose > ol > li > *:first-child{
|
|
814
1059
|
margin-top: 1.25em;
|
|
815
1060
|
}
|
|
816
1061
|
|
|
817
|
-
.prose > ol > li > *:last-child
|
|
1062
|
+
.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
|
+
.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
|
|
822
1067
|
margin-top: 0.75em;
|
|
823
1068
|
margin-bottom: 0.75em;
|
|
824
1069
|
}
|
|
825
1070
|
|
|
826
|
-
.prose hr + *
|
|
1071
|
+
.prose hr + *{
|
|
827
1072
|
margin-top: 0;
|
|
828
1073
|
}
|
|
829
1074
|
|
|
830
|
-
.prose h2 + *
|
|
1075
|
+
.prose h2 + *{
|
|
831
1076
|
margin-top: 0;
|
|
832
1077
|
}
|
|
833
1078
|
|
|
834
|
-
.prose h3 + *
|
|
1079
|
+
.prose h3 + *{
|
|
835
1080
|
margin-top: 0;
|
|
836
1081
|
}
|
|
837
1082
|
|
|
838
|
-
.prose h4 + *
|
|
1083
|
+
.prose h4 + *{
|
|
839
1084
|
margin-top: 0;
|
|
840
1085
|
}
|
|
841
1086
|
|
|
842
|
-
.prose thead th:first-child
|
|
1087
|
+
.prose thead th:first-child{
|
|
843
1088
|
padding-left: 0;
|
|
844
1089
|
}
|
|
845
1090
|
|
|
846
|
-
.prose thead th:last-child
|
|
1091
|
+
.prose thead th:last-child{
|
|
847
1092
|
padding-right: 0;
|
|
848
1093
|
}
|
|
849
1094
|
|
|
850
|
-
.prose tbody td:first-child
|
|
1095
|
+
.prose tbody td:first-child{
|
|
851
1096
|
padding-left: 0;
|
|
852
1097
|
}
|
|
853
1098
|
|
|
854
|
-
.prose tbody td:last-child
|
|
1099
|
+
.prose tbody td:last-child{
|
|
855
1100
|
padding-right: 0;
|
|
856
1101
|
}
|
|
857
1102
|
|
|
858
|
-
.prose > :first-child
|
|
1103
|
+
.prose > :first-child{
|
|
859
1104
|
margin-top: 0;
|
|
860
1105
|
}
|
|
861
1106
|
|
|
862
|
-
.prose > :last-child
|
|
1107
|
+
.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
|
+
.container\:base .burger-menu{
|
|
868
1113
|
display: none;
|
|
869
1114
|
}
|
|
870
1115
|
}
|
|
@@ -872,11 +1117,11 @@ video {
|
|
|
872
1117
|
.container\:xl .burger-menu {
|
|
873
1118
|
}
|
|
874
1119
|
|
|
875
|
-
@media (min-width: 1024px)
|
|
876
|
-
.container\:base .sidebar
|
|
1120
|
+
@media (min-width: 1024px){
|
|
1121
|
+
.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
|
}
|
|
@@ -884,8 +1129,8 @@ video {
|
|
|
884
1129
|
.container\:xl .sidebar {
|
|
885
1130
|
}
|
|
886
1131
|
|
|
887
|
-
@media (min-width: 1024px)
|
|
888
|
-
.container\:base .sidebar--content
|
|
1132
|
+
@media (min-width: 1024px){
|
|
1133
|
+
.container\:base .sidebar--content{
|
|
889
1134
|
width: 14rem;
|
|
890
1135
|
}
|
|
891
1136
|
}
|
|
@@ -896,8 +1141,8 @@ video {
|
|
|
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
|
+
.container\:base .panel-item{
|
|
901
1146
|
display: flex;
|
|
902
1147
|
}
|
|
903
1148
|
}
|
|
@@ -906,14 +1151,14 @@ video {
|
|
|
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
|
+
.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
|
+
.container\:base .panel--center .panel-item--right{
|
|
917
1162
|
width: 41.666667%;
|
|
918
1163
|
}
|
|
919
1164
|
}
|
|
@@ -926,8 +1171,8 @@ video {
|
|
|
926
1171
|
width: 100%;
|
|
927
1172
|
}
|
|
928
1173
|
|
|
929
|
-
@media (min-width: 1536px)
|
|
930
|
-
.container\:base .examples
|
|
1174
|
+
@media (min-width: 1536px){
|
|
1175
|
+
.container\:base .examples{
|
|
931
1176
|
margin-top: 0px;
|
|
932
1177
|
padding: 0px;
|
|
933
1178
|
}
|
|
@@ -940,8 +1185,8 @@ video {
|
|
|
940
1185
|
display: none;
|
|
941
1186
|
}
|
|
942
1187
|
|
|
943
|
-
@media (min-width: 1536px)
|
|
944
|
-
.container\:base .panel--right
|
|
1188
|
+
@media (min-width: 1536px){
|
|
1189
|
+
.container\:base .panel--right{
|
|
945
1190
|
display: block;
|
|
946
1191
|
width: 41.666667%;
|
|
947
1192
|
}
|
|
@@ -951,755 +1196,733 @@ video {
|
|
|
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)));
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
.bg-white {
|
|
967
|
-
--tw-bg-opacity: 1;
|
|
968
|
-
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
.bg-gray-100 {
|
|
972
|
-
--tw-bg-opacity: 1;
|
|
973
|
-
background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
|
|
1199
|
+
.prose pre {
|
|
1200
|
+
white-space: pre-wrap;
|
|
974
1201
|
}
|
|
975
1202
|
|
|
976
|
-
.
|
|
977
|
-
|
|
978
|
-
background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
|
|
1203
|
+
.fixed{
|
|
1204
|
+
position: fixed;
|
|
979
1205
|
}
|
|
980
1206
|
|
|
981
|
-
.
|
|
982
|
-
|
|
983
|
-
background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
|
|
1207
|
+
.absolute{
|
|
1208
|
+
position: absolute;
|
|
984
1209
|
}
|
|
985
1210
|
|
|
986
|
-
.
|
|
987
|
-
|
|
988
|
-
background-color: rgba(26, 32, 44, var(--tw-bg-opacity));
|
|
1211
|
+
.relative{
|
|
1212
|
+
position: relative;
|
|
989
1213
|
}
|
|
990
1214
|
|
|
991
|
-
.
|
|
992
|
-
|
|
993
|
-
background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
|
|
1215
|
+
.top-0{
|
|
1216
|
+
top: 0px;
|
|
994
1217
|
}
|
|
995
1218
|
|
|
996
|
-
.
|
|
997
|
-
|
|
998
|
-
background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
|
|
1219
|
+
.right-0{
|
|
1220
|
+
right: 0px;
|
|
999
1221
|
}
|
|
1000
1222
|
|
|
1001
|
-
.
|
|
1002
|
-
|
|
1003
|
-
background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
|
|
1223
|
+
.right-8{
|
|
1224
|
+
right: 2rem;
|
|
1004
1225
|
}
|
|
1005
1226
|
|
|
1006
|
-
.
|
|
1007
|
-
|
|
1008
|
-
background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
|
|
1227
|
+
.bottom-16{
|
|
1228
|
+
bottom: 4rem;
|
|
1009
1229
|
}
|
|
1010
1230
|
|
|
1011
|
-
.
|
|
1012
|
-
|
|
1013
|
-
background-color: rgba(66, 153, 225, var(--tw-bg-opacity));
|
|
1231
|
+
.z-10{
|
|
1232
|
+
z-index: 10;
|
|
1014
1233
|
}
|
|
1015
1234
|
|
|
1016
|
-
.
|
|
1017
|
-
|
|
1018
|
-
background-color: rgba(49, 130, 206, var(--tw-bg-opacity));
|
|
1235
|
+
.z-20{
|
|
1236
|
+
z-index: 20;
|
|
1019
1237
|
}
|
|
1020
1238
|
|
|
1021
|
-
.
|
|
1022
|
-
|
|
1023
|
-
background-color: rgba(127, 156, 245, var(--tw-bg-opacity));
|
|
1239
|
+
.z-30{
|
|
1240
|
+
z-index: 30;
|
|
1024
1241
|
}
|
|
1025
1242
|
|
|
1026
|
-
.
|
|
1027
|
-
|
|
1028
|
-
|
|
1243
|
+
.mx-2{
|
|
1244
|
+
margin-left: 0.5rem;
|
|
1245
|
+
margin-right: 0.5rem;
|
|
1029
1246
|
}
|
|
1030
1247
|
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1248
|
+
.-mx-8{
|
|
1249
|
+
margin-left: -2rem;
|
|
1250
|
+
margin-right: -2rem;
|
|
1034
1251
|
}
|
|
1035
1252
|
|
|
1036
|
-
.
|
|
1037
|
-
|
|
1038
|
-
|
|
1253
|
+
.my-2{
|
|
1254
|
+
margin-top: 0.5rem;
|
|
1255
|
+
margin-bottom: 0.5rem;
|
|
1039
1256
|
}
|
|
1040
1257
|
|
|
1041
|
-
.
|
|
1042
|
-
|
|
1043
|
-
background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
|
|
1258
|
+
.mt-1{
|
|
1259
|
+
margin-top: 0.25rem;
|
|
1044
1260
|
}
|
|
1045
1261
|
|
|
1046
|
-
.
|
|
1047
|
-
|
|
1048
|
-
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
1262
|
+
.mt-2{
|
|
1263
|
+
margin-top: 0.5rem;
|
|
1049
1264
|
}
|
|
1050
1265
|
|
|
1051
|
-
.
|
|
1052
|
-
|
|
1053
|
-
border-color: rgba(26, 32, 44, var(--tw-border-opacity));
|
|
1266
|
+
.mt-4{
|
|
1267
|
+
margin-top: 1rem;
|
|
1054
1268
|
}
|
|
1055
1269
|
|
|
1056
|
-
.
|
|
1057
|
-
|
|
1058
|
-
border-color: rgba(245, 101, 101, var(--tw-border-opacity));
|
|
1270
|
+
.mt-9{
|
|
1271
|
+
margin-top: 2.25rem;
|
|
1059
1272
|
}
|
|
1060
1273
|
|
|
1061
|
-
.
|
|
1062
|
-
|
|
1063
|
-
border-color: rgba(251, 211, 141, var(--tw-border-opacity));
|
|
1274
|
+
.mt-10{
|
|
1275
|
+
margin-top: 2.5rem;
|
|
1064
1276
|
}
|
|
1065
1277
|
|
|
1066
|
-
.
|
|
1067
|
-
|
|
1068
|
-
border-color: rgba(56, 161, 105, var(--tw-border-opacity));
|
|
1278
|
+
.mt-16{
|
|
1279
|
+
margin-top: 4rem;
|
|
1069
1280
|
}
|
|
1070
1281
|
|
|
1071
|
-
.
|
|
1072
|
-
|
|
1073
|
-
border-color: rgba(144, 205, 244, var(--tw-border-opacity));
|
|
1282
|
+
.mr-1{
|
|
1283
|
+
margin-right: 0.25rem;
|
|
1074
1284
|
}
|
|
1075
1285
|
|
|
1076
|
-
.
|
|
1077
|
-
|
|
1078
|
-
border-color: rgba(49, 130, 206, var(--tw-border-opacity));
|
|
1286
|
+
.mr-2{
|
|
1287
|
+
margin-right: 0.5rem;
|
|
1079
1288
|
}
|
|
1080
1289
|
|
|
1081
|
-
.
|
|
1082
|
-
|
|
1083
|
-
border-color: rgba(214, 188, 250, var(--tw-border-opacity));
|
|
1290
|
+
.mb-2{
|
|
1291
|
+
margin-bottom: 0.5rem;
|
|
1084
1292
|
}
|
|
1085
1293
|
|
|
1086
|
-
.
|
|
1087
|
-
|
|
1294
|
+
.mb-3{
|
|
1295
|
+
margin-bottom: 0.75rem;
|
|
1088
1296
|
}
|
|
1089
1297
|
|
|
1090
|
-
.
|
|
1091
|
-
|
|
1298
|
+
.mb-4{
|
|
1299
|
+
margin-bottom: 1rem;
|
|
1092
1300
|
}
|
|
1093
1301
|
|
|
1094
|
-
.
|
|
1095
|
-
|
|
1302
|
+
.mb-12{
|
|
1303
|
+
margin-bottom: 3rem;
|
|
1096
1304
|
}
|
|
1097
1305
|
|
|
1098
|
-
|
|
1099
|
-
|
|
1306
|
+
.-mb-1{
|
|
1307
|
+
margin-bottom: -0.25rem;
|
|
1100
1308
|
}
|
|
1101
1309
|
|
|
1102
|
-
.
|
|
1103
|
-
|
|
1310
|
+
.ml-1{
|
|
1311
|
+
margin-left: 0.25rem;
|
|
1104
1312
|
}
|
|
1105
1313
|
|
|
1106
|
-
.
|
|
1107
|
-
|
|
1314
|
+
.ml-2{
|
|
1315
|
+
margin-left: 0.5rem;
|
|
1108
1316
|
}
|
|
1109
1317
|
|
|
1110
|
-
.block
|
|
1318
|
+
.block{
|
|
1111
1319
|
display: block;
|
|
1112
1320
|
}
|
|
1113
1321
|
|
|
1114
|
-
.inline-block
|
|
1322
|
+
.inline-block{
|
|
1115
1323
|
display: inline-block;
|
|
1116
1324
|
}
|
|
1117
1325
|
|
|
1118
|
-
.flex
|
|
1326
|
+
.flex{
|
|
1119
1327
|
display: flex;
|
|
1120
1328
|
}
|
|
1121
1329
|
|
|
1122
|
-
.table
|
|
1330
|
+
.table{
|
|
1123
1331
|
display: table;
|
|
1124
1332
|
}
|
|
1125
1333
|
|
|
1126
|
-
.hidden
|
|
1334
|
+
.hidden{
|
|
1127
1335
|
display: none;
|
|
1128
1336
|
}
|
|
1129
1337
|
|
|
1130
|
-
.
|
|
1131
|
-
|
|
1338
|
+
.h-6{
|
|
1339
|
+
height: 1.5rem;
|
|
1132
1340
|
}
|
|
1133
1341
|
|
|
1134
|
-
.
|
|
1135
|
-
|
|
1342
|
+
.h-16{
|
|
1343
|
+
height: 4rem;
|
|
1136
1344
|
}
|
|
1137
1345
|
|
|
1138
|
-
.
|
|
1139
|
-
|
|
1346
|
+
.h-full{
|
|
1347
|
+
height: 100%;
|
|
1140
1348
|
}
|
|
1141
1349
|
|
|
1142
|
-
.
|
|
1143
|
-
|
|
1350
|
+
.max-h-screen{
|
|
1351
|
+
max-height: 100vh;
|
|
1144
1352
|
}
|
|
1145
1353
|
|
|
1146
|
-
.
|
|
1147
|
-
|
|
1354
|
+
.w-5{
|
|
1355
|
+
width: 1.25rem;
|
|
1148
1356
|
}
|
|
1149
1357
|
|
|
1150
|
-
.
|
|
1151
|
-
|
|
1358
|
+
.w-16{
|
|
1359
|
+
width: 4rem;
|
|
1152
1360
|
}
|
|
1153
1361
|
|
|
1154
|
-
.
|
|
1155
|
-
|
|
1362
|
+
.w-64{
|
|
1363
|
+
width: 16rem;
|
|
1156
1364
|
}
|
|
1157
1365
|
|
|
1158
|
-
.
|
|
1159
|
-
|
|
1366
|
+
.w-3\/12{
|
|
1367
|
+
width: 25%;
|
|
1160
1368
|
}
|
|
1161
1369
|
|
|
1162
|
-
.
|
|
1163
|
-
|
|
1370
|
+
.w-full{
|
|
1371
|
+
width: 100%;
|
|
1164
1372
|
}
|
|
1165
1373
|
|
|
1166
|
-
.
|
|
1167
|
-
|
|
1374
|
+
.min-w-min{
|
|
1375
|
+
min-width: -webkit-min-content;
|
|
1376
|
+
min-width: -moz-min-content;
|
|
1377
|
+
min-width: min-content;
|
|
1168
1378
|
}
|
|
1169
1379
|
|
|
1170
|
-
.
|
|
1171
|
-
|
|
1380
|
+
.max-w-none{
|
|
1381
|
+
max-width: none;
|
|
1172
1382
|
}
|
|
1173
1383
|
|
|
1174
|
-
.
|
|
1175
|
-
|
|
1384
|
+
.flex-1{
|
|
1385
|
+
flex: 1 1 0%;
|
|
1176
1386
|
}
|
|
1177
1387
|
|
|
1178
|
-
.
|
|
1179
|
-
|
|
1388
|
+
.transform{
|
|
1389
|
+
--tw-translate-x: 0;
|
|
1390
|
+
--tw-translate-y: 0;
|
|
1391
|
+
--tw-rotate: 0;
|
|
1392
|
+
--tw-skew-x: 0;
|
|
1393
|
+
--tw-skew-y: 0;
|
|
1394
|
+
--tw-scale-x: 1;
|
|
1395
|
+
--tw-scale-y: 1;
|
|
1396
|
+
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));
|
|
1180
1397
|
}
|
|
1181
1398
|
|
|
1182
|
-
|
|
1183
|
-
|
|
1399
|
+
.-rotate-180{
|
|
1400
|
+
--tw-rotate: -180deg;
|
|
1184
1401
|
}
|
|
1185
1402
|
|
|
1186
|
-
|
|
1187
|
-
|
|
1403
|
+
.-rotate-90{
|
|
1404
|
+
--tw-rotate: -90deg;
|
|
1188
1405
|
}
|
|
1189
1406
|
|
|
1190
|
-
|
|
1191
|
-
|
|
1407
|
+
@-webkit-keyframes spin{
|
|
1408
|
+
to{
|
|
1409
|
+
transform: rotate(360deg);
|
|
1410
|
+
}
|
|
1192
1411
|
}
|
|
1193
1412
|
|
|
1194
|
-
|
|
1195
|
-
|
|
1413
|
+
@keyframes spin{
|
|
1414
|
+
to{
|
|
1415
|
+
transform: rotate(360deg);
|
|
1416
|
+
}
|
|
1196
1417
|
}
|
|
1197
1418
|
|
|
1198
|
-
|
|
1199
|
-
|
|
1419
|
+
@-webkit-keyframes ping{
|
|
1420
|
+
75%, 100%{
|
|
1421
|
+
transform: scale(2);
|
|
1422
|
+
opacity: 0;
|
|
1423
|
+
}
|
|
1200
1424
|
}
|
|
1201
1425
|
|
|
1202
|
-
|
|
1203
|
-
|
|
1426
|
+
@keyframes ping{
|
|
1427
|
+
75%, 100%{
|
|
1428
|
+
transform: scale(2);
|
|
1429
|
+
opacity: 0;
|
|
1430
|
+
}
|
|
1204
1431
|
}
|
|
1205
1432
|
|
|
1206
|
-
|
|
1207
|
-
|
|
1433
|
+
@-webkit-keyframes pulse{
|
|
1434
|
+
50%{
|
|
1435
|
+
opacity: .5;
|
|
1436
|
+
}
|
|
1208
1437
|
}
|
|
1209
1438
|
|
|
1210
|
-
|
|
1211
|
-
|
|
1439
|
+
@keyframes pulse{
|
|
1440
|
+
50%{
|
|
1441
|
+
opacity: .5;
|
|
1442
|
+
}
|
|
1212
1443
|
}
|
|
1213
1444
|
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1445
|
+
@-webkit-keyframes bounce{
|
|
1446
|
+
0%, 100%{
|
|
1447
|
+
transform: translateY(-25%);
|
|
1448
|
+
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1449
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1450
|
+
}
|
|
1218
1451
|
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1452
|
+
50%{
|
|
1453
|
+
transform: none;
|
|
1454
|
+
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1455
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1456
|
+
}
|
|
1222
1457
|
}
|
|
1223
1458
|
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1459
|
+
@keyframes bounce{
|
|
1460
|
+
0%, 100%{
|
|
1461
|
+
transform: translateY(-25%);
|
|
1462
|
+
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1463
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1464
|
+
}
|
|
1228
1465
|
|
|
1229
|
-
|
|
1230
|
-
|
|
1466
|
+
50%{
|
|
1467
|
+
transform: none;
|
|
1468
|
+
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1469
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1470
|
+
}
|
|
1231
1471
|
}
|
|
1232
1472
|
|
|
1233
|
-
.
|
|
1234
|
-
|
|
1473
|
+
.cursor-pointer{
|
|
1474
|
+
cursor: pointer;
|
|
1235
1475
|
}
|
|
1236
1476
|
|
|
1237
|
-
.
|
|
1238
|
-
|
|
1477
|
+
.flex-wrap{
|
|
1478
|
+
flex-wrap: wrap;
|
|
1239
1479
|
}
|
|
1240
1480
|
|
|
1241
|
-
.
|
|
1242
|
-
|
|
1481
|
+
.items-center{
|
|
1482
|
+
align-items: center;
|
|
1243
1483
|
}
|
|
1244
1484
|
|
|
1245
|
-
.
|
|
1246
|
-
|
|
1485
|
+
.justify-center{
|
|
1486
|
+
justify-content: center;
|
|
1247
1487
|
}
|
|
1248
1488
|
|
|
1249
|
-
.
|
|
1250
|
-
|
|
1489
|
+
.space-x-2 > :not([hidden]) ~ :not([hidden]){
|
|
1490
|
+
--tw-space-x-reverse: 0;
|
|
1491
|
+
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1492
|
+
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1251
1493
|
}
|
|
1252
1494
|
|
|
1253
|
-
.
|
|
1254
|
-
|
|
1495
|
+
.space-y-2 > :not([hidden]) ~ :not([hidden]){
|
|
1496
|
+
--tw-space-y-reverse: 0;
|
|
1497
|
+
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1498
|
+
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
1255
1499
|
}
|
|
1256
1500
|
|
|
1257
|
-
.
|
|
1258
|
-
|
|
1501
|
+
.overflow-auto{
|
|
1502
|
+
overflow: auto;
|
|
1259
1503
|
}
|
|
1260
1504
|
|
|
1261
|
-
.
|
|
1262
|
-
|
|
1505
|
+
.overflow-y-auto{
|
|
1506
|
+
overflow-y: auto;
|
|
1263
1507
|
}
|
|
1264
1508
|
|
|
1265
|
-
.
|
|
1266
|
-
|
|
1509
|
+
.whitespace-pre-wrap{
|
|
1510
|
+
white-space: pre-wrap;
|
|
1267
1511
|
}
|
|
1268
1512
|
|
|
1269
|
-
.
|
|
1270
|
-
|
|
1513
|
+
.break-words{
|
|
1514
|
+
overflow-wrap: break-word;
|
|
1271
1515
|
}
|
|
1272
1516
|
|
|
1273
|
-
.
|
|
1274
|
-
|
|
1517
|
+
.break-all{
|
|
1518
|
+
word-break: break-all;
|
|
1275
1519
|
}
|
|
1276
1520
|
|
|
1277
|
-
.
|
|
1278
|
-
|
|
1521
|
+
.rounded{
|
|
1522
|
+
border-radius: 0.25rem;
|
|
1279
1523
|
}
|
|
1280
1524
|
|
|
1281
|
-
.
|
|
1282
|
-
|
|
1525
|
+
.rounded-full{
|
|
1526
|
+
border-radius: 9999px;
|
|
1283
1527
|
}
|
|
1284
1528
|
|
|
1285
|
-
|
|
1286
|
-
|
|
1529
|
+
.border{
|
|
1530
|
+
border-width: 1px;
|
|
1287
1531
|
}
|
|
1288
1532
|
|
|
1289
|
-
.
|
|
1290
|
-
|
|
1533
|
+
.border-l-8{
|
|
1534
|
+
border-left-width: 8px;
|
|
1291
1535
|
}
|
|
1292
1536
|
|
|
1293
|
-
.
|
|
1294
|
-
|
|
1295
|
-
max-width: -moz-max-content;
|
|
1296
|
-
max-width: max-content;
|
|
1537
|
+
.border-solid{
|
|
1538
|
+
border-style: solid;
|
|
1297
1539
|
}
|
|
1298
1540
|
|
|
1299
|
-
.
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
min-width: min-content;
|
|
1541
|
+
.border-gray-400{
|
|
1542
|
+
--tw-border-opacity: 1;
|
|
1543
|
+
border-color: rgba(203, 213, 224, var(--tw-border-opacity));
|
|
1303
1544
|
}
|
|
1304
1545
|
|
|
1305
|
-
.
|
|
1306
|
-
|
|
1307
|
-
|
|
1546
|
+
.border-red-500{
|
|
1547
|
+
--tw-border-opacity: 1;
|
|
1548
|
+
border-color: rgba(245, 101, 101, var(--tw-border-opacity));
|
|
1308
1549
|
}
|
|
1309
1550
|
|
|
1310
|
-
.
|
|
1311
|
-
|
|
1551
|
+
.border-orange-300{
|
|
1552
|
+
--tw-border-opacity: 1;
|
|
1553
|
+
border-color: rgba(251, 211, 141, var(--tw-border-opacity));
|
|
1312
1554
|
}
|
|
1313
1555
|
|
|
1314
|
-
.
|
|
1315
|
-
|
|
1556
|
+
.border-green-600{
|
|
1557
|
+
--tw-border-opacity: 1;
|
|
1558
|
+
border-color: rgba(56, 161, 105, var(--tw-border-opacity));
|
|
1316
1559
|
}
|
|
1317
1560
|
|
|
1318
|
-
.
|
|
1319
|
-
|
|
1561
|
+
.border-blue-300{
|
|
1562
|
+
--tw-border-opacity: 1;
|
|
1563
|
+
border-color: rgba(144, 205, 244, var(--tw-border-opacity));
|
|
1320
1564
|
}
|
|
1321
1565
|
|
|
1322
|
-
.
|
|
1323
|
-
|
|
1566
|
+
.border-blue-600{
|
|
1567
|
+
--tw-border-opacity: 1;
|
|
1568
|
+
border-color: rgba(49, 130, 206, var(--tw-border-opacity));
|
|
1324
1569
|
}
|
|
1325
1570
|
|
|
1326
|
-
.
|
|
1327
|
-
|
|
1571
|
+
.border-purple-300{
|
|
1572
|
+
--tw-border-opacity: 1;
|
|
1573
|
+
border-color: rgba(214, 188, 250, var(--tw-border-opacity));
|
|
1328
1574
|
}
|
|
1329
1575
|
|
|
1330
|
-
.
|
|
1331
|
-
|
|
1576
|
+
.bg-white{
|
|
1577
|
+
--tw-bg-opacity: 1;
|
|
1578
|
+
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
1332
1579
|
}
|
|
1333
1580
|
|
|
1334
|
-
.
|
|
1335
|
-
|
|
1336
|
-
|
|
1581
|
+
.bg-gray-100{
|
|
1582
|
+
--tw-bg-opacity: 1;
|
|
1583
|
+
background-color: rgba(247, 250, 252, var(--tw-bg-opacity));
|
|
1337
1584
|
}
|
|
1338
1585
|
|
|
1339
|
-
.
|
|
1340
|
-
|
|
1341
|
-
|
|
1586
|
+
.bg-gray-200{
|
|
1587
|
+
--tw-bg-opacity: 1;
|
|
1588
|
+
background-color: rgba(237, 242, 247, var(--tw-bg-opacity));
|
|
1342
1589
|
}
|
|
1343
1590
|
|
|
1344
|
-
.
|
|
1345
|
-
|
|
1346
|
-
|
|
1591
|
+
.bg-gray-800{
|
|
1592
|
+
--tw-bg-opacity: 1;
|
|
1593
|
+
background-color: rgba(45, 55, 72, var(--tw-bg-opacity));
|
|
1347
1594
|
}
|
|
1348
1595
|
|
|
1349
|
-
.
|
|
1350
|
-
|
|
1351
|
-
|
|
1596
|
+
.bg-yellow-600{
|
|
1597
|
+
--tw-bg-opacity: 1;
|
|
1598
|
+
background-color: rgba(214, 158, 46, var(--tw-bg-opacity));
|
|
1352
1599
|
}
|
|
1353
1600
|
|
|
1354
|
-
.
|
|
1355
|
-
|
|
1356
|
-
|
|
1601
|
+
.bg-green-600{
|
|
1602
|
+
--tw-bg-opacity: 1;
|
|
1603
|
+
background-color: rgba(56, 161, 105, var(--tw-bg-opacity));
|
|
1357
1604
|
}
|
|
1358
1605
|
|
|
1359
|
-
.
|
|
1360
|
-
|
|
1361
|
-
|
|
1606
|
+
.bg-teal-500{
|
|
1607
|
+
--tw-bg-opacity: 1;
|
|
1608
|
+
background-color: rgba(56, 178, 172, var(--tw-bg-opacity));
|
|
1362
1609
|
}
|
|
1363
1610
|
|
|
1364
|
-
.
|
|
1365
|
-
|
|
1366
|
-
|
|
1611
|
+
.bg-blue-400{
|
|
1612
|
+
--tw-bg-opacity: 1;
|
|
1613
|
+
background-color: rgba(99, 179, 237, var(--tw-bg-opacity));
|
|
1367
1614
|
}
|
|
1368
1615
|
|
|
1369
|
-
.
|
|
1370
|
-
|
|
1371
|
-
|
|
1616
|
+
.bg-blue-500{
|
|
1617
|
+
--tw-bg-opacity: 1;
|
|
1618
|
+
background-color: rgba(66, 153, 225, var(--tw-bg-opacity));
|
|
1372
1619
|
}
|
|
1373
1620
|
|
|
1374
|
-
.
|
|
1375
|
-
|
|
1376
|
-
|
|
1621
|
+
.bg-blue-600{
|
|
1622
|
+
--tw-bg-opacity: 1;
|
|
1623
|
+
background-color: rgba(49, 130, 206, var(--tw-bg-opacity));
|
|
1377
1624
|
}
|
|
1378
1625
|
|
|
1379
|
-
.
|
|
1380
|
-
|
|
1381
|
-
|
|
1626
|
+
.bg-indigo-400{
|
|
1627
|
+
--tw-bg-opacity: 1;
|
|
1628
|
+
background-color: rgba(127, 156, 245, var(--tw-bg-opacity));
|
|
1382
1629
|
}
|
|
1383
1630
|
|
|
1384
|
-
.
|
|
1385
|
-
|
|
1631
|
+
.bg-purple-600{
|
|
1632
|
+
--tw-bg-opacity: 1;
|
|
1633
|
+
background-color: rgba(128, 90, 213, var(--tw-bg-opacity));
|
|
1386
1634
|
}
|
|
1387
1635
|
|
|
1388
|
-
.
|
|
1389
|
-
|
|
1636
|
+
.hover\:bg-orange-300:hover{
|
|
1637
|
+
--tw-bg-opacity: 1;
|
|
1638
|
+
background-color: rgba(251, 211, 141, var(--tw-bg-opacity));
|
|
1390
1639
|
}
|
|
1391
1640
|
|
|
1392
|
-
.
|
|
1393
|
-
|
|
1641
|
+
.hover\:bg-blue-300:hover{
|
|
1642
|
+
--tw-bg-opacity: 1;
|
|
1643
|
+
background-color: rgba(144, 205, 244, var(--tw-bg-opacity));
|
|
1394
1644
|
}
|
|
1395
1645
|
|
|
1396
|
-
.
|
|
1397
|
-
|
|
1646
|
+
.hover\:bg-purple-300:hover{
|
|
1647
|
+
--tw-bg-opacity: 1;
|
|
1648
|
+
background-color: rgba(214, 188, 250, var(--tw-bg-opacity));
|
|
1398
1649
|
}
|
|
1399
1650
|
|
|
1400
|
-
.
|
|
1401
|
-
|
|
1651
|
+
.fill-current{
|
|
1652
|
+
fill: currentColor;
|
|
1402
1653
|
}
|
|
1403
1654
|
|
|
1404
|
-
.
|
|
1405
|
-
|
|
1655
|
+
.p-1{
|
|
1656
|
+
padding: 0.25rem;
|
|
1406
1657
|
}
|
|
1407
1658
|
|
|
1408
|
-
.
|
|
1409
|
-
|
|
1659
|
+
.p-2{
|
|
1660
|
+
padding: 0.5rem;
|
|
1410
1661
|
}
|
|
1411
1662
|
|
|
1412
|
-
.
|
|
1413
|
-
|
|
1663
|
+
.p-4{
|
|
1664
|
+
padding: 1rem;
|
|
1414
1665
|
}
|
|
1415
1666
|
|
|
1416
|
-
.
|
|
1417
|
-
|
|
1667
|
+
.p-8{
|
|
1668
|
+
padding: 2rem;
|
|
1418
1669
|
}
|
|
1419
1670
|
|
|
1420
|
-
|
|
1421
|
-
|
|
1671
|
+
.px-1{
|
|
1672
|
+
padding-left: 0.25rem;
|
|
1673
|
+
padding-right: 0.25rem;
|
|
1422
1674
|
}
|
|
1423
1675
|
|
|
1424
|
-
.
|
|
1425
|
-
|
|
1426
|
-
|
|
1676
|
+
.px-2{
|
|
1677
|
+
padding-left: 0.5rem;
|
|
1678
|
+
padding-right: 0.5rem;
|
|
1427
1679
|
}
|
|
1428
1680
|
|
|
1429
|
-
.
|
|
1430
|
-
|
|
1431
|
-
|
|
1681
|
+
.px-3{
|
|
1682
|
+
padding-left: 0.75rem;
|
|
1683
|
+
padding-right: 0.75rem;
|
|
1432
1684
|
}
|
|
1433
1685
|
|
|
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;
|
|
1686
|
+
.px-4{
|
|
1687
|
+
padding-left: 1rem;
|
|
1688
|
+
padding-right: 1rem;
|
|
1441
1689
|
}
|
|
1442
1690
|
|
|
1443
|
-
.
|
|
1444
|
-
|
|
1691
|
+
.px-8{
|
|
1692
|
+
padding-left: 2rem;
|
|
1693
|
+
padding-right: 2rem;
|
|
1445
1694
|
}
|
|
1446
1695
|
|
|
1447
|
-
.
|
|
1448
|
-
|
|
1696
|
+
.py-0{
|
|
1697
|
+
padding-top: 0px;
|
|
1698
|
+
padding-bottom: 0px;
|
|
1449
1699
|
}
|
|
1450
1700
|
|
|
1451
|
-
.
|
|
1452
|
-
|
|
1453
|
-
|
|
1701
|
+
.py-1{
|
|
1702
|
+
padding-top: 0.25rem;
|
|
1703
|
+
padding-bottom: 0.25rem;
|
|
1454
1704
|
}
|
|
1455
1705
|
|
|
1456
|
-
.
|
|
1457
|
-
|
|
1458
|
-
|
|
1706
|
+
.py-2{
|
|
1707
|
+
padding-top: 0.5rem;
|
|
1708
|
+
padding-bottom: 0.5rem;
|
|
1459
1709
|
}
|
|
1460
1710
|
|
|
1461
|
-
.
|
|
1462
|
-
|
|
1463
|
-
|
|
1711
|
+
.py-4{
|
|
1712
|
+
padding-top: 1rem;
|
|
1713
|
+
padding-bottom: 1rem;
|
|
1464
1714
|
}
|
|
1465
1715
|
|
|
1466
|
-
.
|
|
1467
|
-
|
|
1468
|
-
|
|
1716
|
+
.py-8{
|
|
1717
|
+
padding-top: 2rem;
|
|
1718
|
+
padding-bottom: 2rem;
|
|
1469
1719
|
}
|
|
1470
1720
|
|
|
1471
|
-
.
|
|
1472
|
-
|
|
1473
|
-
color: rgba(74, 85, 104, var(--tw-text-opacity));
|
|
1721
|
+
.pt-8{
|
|
1722
|
+
padding-top: 2rem;
|
|
1474
1723
|
}
|
|
1475
1724
|
|
|
1476
|
-
.
|
|
1477
|
-
|
|
1478
|
-
color: rgba(229, 62, 62, var(--tw-text-opacity));
|
|
1725
|
+
.pb-16{
|
|
1726
|
+
padding-bottom: 4rem;
|
|
1479
1727
|
}
|
|
1480
1728
|
|
|
1481
|
-
.text-
|
|
1482
|
-
|
|
1483
|
-
color: rgba(237, 137, 54, var(--tw-text-opacity));
|
|
1729
|
+
.text-left{
|
|
1730
|
+
text-align: left;
|
|
1484
1731
|
}
|
|
1485
1732
|
|
|
1486
|
-
.
|
|
1487
|
-
|
|
1488
|
-
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1733
|
+
.align-baseline{
|
|
1734
|
+
vertical-align: baseline;
|
|
1489
1735
|
}
|
|
1490
1736
|
|
|
1491
|
-
.
|
|
1492
|
-
|
|
1493
|
-
color: rgba(56, 161, 105, var(--tw-text-opacity));
|
|
1737
|
+
.font-sans{
|
|
1738
|
+
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";
|
|
1494
1739
|
}
|
|
1495
1740
|
|
|
1496
|
-
.
|
|
1497
|
-
|
|
1498
|
-
color: rgba(56, 178, 172, var(--tw-text-opacity));
|
|
1741
|
+
.font-mono{
|
|
1742
|
+
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
1499
1743
|
}
|
|
1500
1744
|
|
|
1501
|
-
.text-
|
|
1502
|
-
|
|
1503
|
-
color: rgba(66, 153, 225, var(--tw-text-opacity));
|
|
1745
|
+
.text-xs{
|
|
1746
|
+
font-size: 0.75rem;
|
|
1504
1747
|
}
|
|
1505
1748
|
|
|
1506
|
-
.text-
|
|
1507
|
-
|
|
1508
|
-
color: rgba(159, 122, 234, var(--tw-text-opacity));
|
|
1749
|
+
.text-sm{
|
|
1750
|
+
font-size: 0.875rem;
|
|
1509
1751
|
}
|
|
1510
1752
|
|
|
1511
|
-
.
|
|
1512
|
-
|
|
1513
|
-
color: rgba(26, 32, 44, var(--tw-text-opacity));
|
|
1753
|
+
.text-base{
|
|
1754
|
+
font-size: 1rem;
|
|
1514
1755
|
}
|
|
1515
1756
|
|
|
1516
|
-
.
|
|
1517
|
-
|
|
1518
|
-
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1757
|
+
.text-lg{
|
|
1758
|
+
font-size: 1.125rem;
|
|
1519
1759
|
}
|
|
1520
1760
|
|
|
1521
|
-
.
|
|
1522
|
-
|
|
1523
|
-
color: rgba(49, 130, 206, var(--tw-text-opacity));
|
|
1761
|
+
.text-2xl{
|
|
1762
|
+
font-size: 1.5rem;
|
|
1524
1763
|
}
|
|
1525
1764
|
|
|
1526
|
-
.
|
|
1527
|
-
|
|
1528
|
-
color: rgba(128, 90, 213, var(--tw-text-opacity));
|
|
1765
|
+
.text-3xl{
|
|
1766
|
+
font-size: 1.875rem;
|
|
1529
1767
|
}
|
|
1530
1768
|
|
|
1531
|
-
.
|
|
1532
|
-
font-
|
|
1769
|
+
.text-4xl{
|
|
1770
|
+
font-size: 2.25rem;
|
|
1533
1771
|
}
|
|
1534
1772
|
|
|
1535
|
-
.
|
|
1536
|
-
|
|
1773
|
+
.font-thin{
|
|
1774
|
+
font-weight: 100;
|
|
1537
1775
|
}
|
|
1538
1776
|
|
|
1539
|
-
.
|
|
1540
|
-
|
|
1777
|
+
.font-extralight{
|
|
1778
|
+
font-weight: 200;
|
|
1541
1779
|
}
|
|
1542
1780
|
|
|
1543
|
-
.
|
|
1544
|
-
|
|
1781
|
+
.font-light{
|
|
1782
|
+
font-weight: 300;
|
|
1545
1783
|
}
|
|
1546
1784
|
|
|
1547
|
-
.
|
|
1548
|
-
|
|
1785
|
+
.font-bold{
|
|
1786
|
+
font-weight: 700;
|
|
1549
1787
|
}
|
|
1550
1788
|
|
|
1551
|
-
.
|
|
1552
|
-
text-
|
|
1789
|
+
.uppercase{
|
|
1790
|
+
text-transform: uppercase;
|
|
1553
1791
|
}
|
|
1554
1792
|
|
|
1555
|
-
.
|
|
1556
|
-
|
|
1793
|
+
.lowercase{
|
|
1794
|
+
text-transform: lowercase;
|
|
1557
1795
|
}
|
|
1558
1796
|
|
|
1559
|
-
.
|
|
1560
|
-
|
|
1797
|
+
.capitalize{
|
|
1798
|
+
text-transform: capitalize;
|
|
1561
1799
|
}
|
|
1562
1800
|
|
|
1563
|
-
.
|
|
1564
|
-
|
|
1801
|
+
.italic{
|
|
1802
|
+
font-style: italic;
|
|
1565
1803
|
}
|
|
1566
1804
|
|
|
1567
|
-
.
|
|
1568
|
-
|
|
1805
|
+
.leading-normal{
|
|
1806
|
+
line-height: 1.5;
|
|
1569
1807
|
}
|
|
1570
1808
|
|
|
1571
|
-
.
|
|
1572
|
-
|
|
1809
|
+
.text-white{
|
|
1810
|
+
--tw-text-opacity: 1;
|
|
1811
|
+
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
1573
1812
|
}
|
|
1574
1813
|
|
|
1575
|
-
.
|
|
1576
|
-
|
|
1814
|
+
.text-gray-200{
|
|
1815
|
+
--tw-text-opacity: 1;
|
|
1816
|
+
color: rgba(237, 242, 247, var(--tw-text-opacity));
|
|
1577
1817
|
}
|
|
1578
1818
|
|
|
1579
|
-
.
|
|
1580
|
-
|
|
1819
|
+
.text-gray-500{
|
|
1820
|
+
--tw-text-opacity: 1;
|
|
1821
|
+
color: rgba(160, 174, 192, var(--tw-text-opacity));
|
|
1581
1822
|
}
|
|
1582
1823
|
|
|
1583
|
-
.
|
|
1584
|
-
|
|
1824
|
+
.text-gray-600{
|
|
1825
|
+
--tw-text-opacity: 1;
|
|
1826
|
+
color: rgba(113, 128, 150, var(--tw-text-opacity));
|
|
1585
1827
|
}
|
|
1586
1828
|
|
|
1587
|
-
.
|
|
1588
|
-
|
|
1829
|
+
.text-gray-700{
|
|
1830
|
+
--tw-text-opacity: 1;
|
|
1831
|
+
color: rgba(74, 85, 104, var(--tw-text-opacity));
|
|
1589
1832
|
}
|
|
1590
1833
|
|
|
1591
|
-
.
|
|
1592
|
-
|
|
1834
|
+
.text-red-600{
|
|
1835
|
+
--tw-text-opacity: 1;
|
|
1836
|
+
color: rgba(229, 62, 62, var(--tw-text-opacity));
|
|
1593
1837
|
}
|
|
1594
1838
|
|
|
1595
|
-
.
|
|
1596
|
-
|
|
1839
|
+
.text-orange-500{
|
|
1840
|
+
--tw-text-opacity: 1;
|
|
1841
|
+
color: rgba(237, 137, 54, var(--tw-text-opacity));
|
|
1597
1842
|
}
|
|
1598
1843
|
|
|
1599
|
-
.
|
|
1600
|
-
|
|
1844
|
+
.text-orange-600{
|
|
1845
|
+
--tw-text-opacity: 1;
|
|
1846
|
+
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1601
1847
|
}
|
|
1602
1848
|
|
|
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));
|
|
1849
|
+
.text-green-600{
|
|
1850
|
+
--tw-text-opacity: 1;
|
|
1851
|
+
color: rgba(56, 161, 105, var(--tw-text-opacity));
|
|
1612
1852
|
}
|
|
1613
1853
|
|
|
1614
|
-
|
|
1615
|
-
--tw-
|
|
1854
|
+
.text-teal-500{
|
|
1855
|
+
--tw-text-opacity: 1;
|
|
1856
|
+
color: rgba(56, 178, 172, var(--tw-text-opacity));
|
|
1616
1857
|
}
|
|
1617
1858
|
|
|
1618
|
-
|
|
1619
|
-
--tw-
|
|
1859
|
+
.text-blue-500{
|
|
1860
|
+
--tw-text-opacity: 1;
|
|
1861
|
+
color: rgba(66, 153, 225, var(--tw-text-opacity));
|
|
1620
1862
|
}
|
|
1621
1863
|
|
|
1622
|
-
.
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
transition-duration: 150ms;
|
|
1864
|
+
.text-purple-500{
|
|
1865
|
+
--tw-text-opacity: 1;
|
|
1866
|
+
color: rgba(159, 122, 234, var(--tw-text-opacity));
|
|
1626
1867
|
}
|
|
1627
1868
|
|
|
1628
|
-
.
|
|
1629
|
-
|
|
1869
|
+
.hover\:text-gray-900:hover{
|
|
1870
|
+
--tw-text-opacity: 1;
|
|
1871
|
+
color: rgba(26, 32, 44, var(--tw-text-opacity));
|
|
1630
1872
|
}
|
|
1631
1873
|
|
|
1632
|
-
.
|
|
1633
|
-
|
|
1874
|
+
.hover\:text-orange-600:hover{
|
|
1875
|
+
--tw-text-opacity: 1;
|
|
1876
|
+
color: rgba(221, 107, 32, var(--tw-text-opacity));
|
|
1634
1877
|
}
|
|
1635
1878
|
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
}
|
|
1879
|
+
.hover\:text-blue-600:hover{
|
|
1880
|
+
--tw-text-opacity: 1;
|
|
1881
|
+
color: rgba(49, 130, 206, var(--tw-text-opacity));
|
|
1640
1882
|
}
|
|
1641
1883
|
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
}
|
|
1884
|
+
.hover\:text-purple-600:hover{
|
|
1885
|
+
--tw-text-opacity: 1;
|
|
1886
|
+
color: rgba(128, 90, 213, var(--tw-text-opacity));
|
|
1646
1887
|
}
|
|
1647
1888
|
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
transform: scale(2);
|
|
1651
|
-
opacity: 0;
|
|
1652
|
-
}
|
|
1889
|
+
.underline{
|
|
1890
|
+
text-decoration: underline;
|
|
1653
1891
|
}
|
|
1654
1892
|
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
transform: scale(2);
|
|
1658
|
-
opacity: 0;
|
|
1659
|
-
}
|
|
1893
|
+
.no-underline{
|
|
1894
|
+
text-decoration: none;
|
|
1660
1895
|
}
|
|
1661
1896
|
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
opacity: .5;
|
|
1665
|
-
}
|
|
1897
|
+
*, ::before, ::after{
|
|
1898
|
+
--tw-shadow: 0 0 #0000;
|
|
1666
1899
|
}
|
|
1667
1900
|
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
}
|
|
1901
|
+
.shadow{
|
|
1902
|
+
--tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1903
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1672
1904
|
}
|
|
1673
1905
|
|
|
1674
|
-
|
|
1675
|
-
0
|
|
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
|
-
}
|
|
1906
|
+
.shadow-md{
|
|
1907
|
+
--tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
1908
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1686
1909
|
}
|
|
1687
1910
|
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1693
|
-
}
|
|
1911
|
+
.focus\:outline-none:focus{
|
|
1912
|
+
outline: 2px solid transparent;
|
|
1913
|
+
outline-offset: 2px;
|
|
1914
|
+
}
|
|
1694
1915
|
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1916
|
+
*, ::before, ::after{
|
|
1917
|
+
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
1918
|
+
--tw-ring-offset-width: 0px;
|
|
1919
|
+
--tw-ring-offset-color: #fff;
|
|
1920
|
+
--tw-ring-color: rgba(66, 153, 225, 0.5);
|
|
1921
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1922
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
1700
1923
|
}
|
|
1701
1924
|
|
|
1702
|
-
.filter
|
|
1925
|
+
.filter{
|
|
1703
1926
|
--tw-blur: var(--tw-empty,/*!*/ /*!*/);
|
|
1704
1927
|
--tw-brightness: var(--tw-empty,/*!*/ /*!*/);
|
|
1705
1928
|
--tw-contrast: var(--tw-empty,/*!*/ /*!*/);
|
|
@@ -1712,37 +1935,51 @@ video {
|
|
|
1712
1935
|
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
1936
|
}
|
|
1714
1937
|
|
|
1715
|
-
|
|
1938
|
+
.transition-transform{
|
|
1939
|
+
transition-property: transform;
|
|
1940
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1941
|
+
transition-duration: 150ms;
|
|
1716
1942
|
}
|
|
1717
1943
|
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
display: flex;
|
|
1721
|
-
}
|
|
1944
|
+
.duration-150{
|
|
1945
|
+
transition-duration: 150ms;
|
|
1722
1946
|
}
|
|
1723
1947
|
|
|
1724
|
-
|
|
1948
|
+
.ease-linear{
|
|
1949
|
+
transition-timing-function: linear;
|
|
1725
1950
|
}
|
|
1726
1951
|
|
|
1727
|
-
@media (min-width:
|
|
1952
|
+
@media (min-width: 640px){
|
|
1728
1953
|
}
|
|
1729
1954
|
|
|
1730
|
-
@media (min-width:
|
|
1731
|
-
|
|
1732
|
-
|
|
1955
|
+
@media (min-width: 768px){
|
|
1956
|
+
.md\:flex{
|
|
1957
|
+
display: flex;
|
|
1733
1958
|
}
|
|
1959
|
+
}
|
|
1734
1960
|
|
|
1735
|
-
|
|
1961
|
+
@media (min-width: 1024px){
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
@media (min-width: 1280px){
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
@media (min-width: 1536px){
|
|
1968
|
+
.\32xl\:mx-0{
|
|
1736
1969
|
margin-left: 0px;
|
|
1737
1970
|
margin-right: 0px;
|
|
1738
1971
|
}
|
|
1739
1972
|
|
|
1740
|
-
.\32xl\:
|
|
1741
|
-
|
|
1742
|
-
padding-right: 1rem;
|
|
1973
|
+
.\32xl\:w-7\/12{
|
|
1974
|
+
width: 58.333333%;
|
|
1743
1975
|
}
|
|
1744
1976
|
|
|
1745
|
-
.\32xl\:
|
|
1746
|
-
|
|
1977
|
+
.\32xl\:rounded{
|
|
1978
|
+
border-radius: 0.25rem;
|
|
1979
|
+
}
|
|
1980
|
+
|
|
1981
|
+
.\32xl\:px-4{
|
|
1982
|
+
padding-left: 1rem;
|
|
1983
|
+
padding-right: 1rem;
|
|
1747
1984
|
}
|
|
1748
1985
|
}
|