@zohodesk/react-cli 1.1.6 → 1.1.8-exp.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.eslintignore +7 -7
- package/.eslintrc.js +180 -180
- package/.prettierrc +6 -6
- package/Changelog.md +1019 -1019
- package/README.md +1293 -1244
- package/bin/cli.js +497 -497
- package/docs/ComposeMinification.md +13 -13
- package/docs/CustomChunks.md +29 -26
- package/docs/DevServerPort.md +39 -39
- package/docs/DevStart.md +18 -18
- package/docs/HoverActive.md +12 -12
- package/docs/InstallNode.md +28 -28
- package/docs/MarkdownParser.md +18 -0
- package/docs/ReactLive.md +13 -13
- package/docs/SelectorWeight.md +8 -8
- package/docs/TODOS.md +10 -10
- package/docs/ValueReplacer.md +60 -60
- package/docs/VariableConversion.md +729 -729
- package/docs/patternFiltering.md +56 -56
- package/docs/warnings_while_install.txt +35 -35
- package/files/eslintrc.js +62 -62
- package/files/prettierrc.js +3 -3
- package/lib/common/splitChunks.js +65 -45
- package/lib/common/testPattern.js +9 -9
- package/lib/configs/webpack.css.umd.config.js +4 -4
- package/lib/configs/webpack.dev.config.js +24 -3
- package/lib/configs/webpack.docs.config.js +22 -3
- package/lib/configs/webpack.impact.config.js +4 -2
- package/lib/configs/webpack.prod.config.js +6 -3
- package/lib/deprecationLogger.js +41 -0
- package/lib/loaderUtils/configsAssetsLoaders.js +33 -33
- package/lib/loaderUtils/getCSSLoaders.js +77 -56
- package/lib/loaders/__test__/markdownLoader.spec.js +145 -0
- package/lib/loaders/docsLoader.js +3 -0
- package/lib/loaders/markdownLoader.js +71 -0
- package/lib/loaders/workerLoader.js +9 -9
- package/lib/pluginUtils/getDevPlugins.js +8 -7
- package/lib/pluginUtils/getProdPlugins.js +6 -6
- package/lib/plugins/CustomAttributePlugin.md +35 -35
- package/lib/plugins/EFCPlugin.md +6 -6
- package/lib/plugins/I18NInjectIntoIndexPlugin.js +4 -4
- package/lib/plugins/I18nSplitPlugin/I18nDownlodLogic.js +38 -38
- package/lib/plugins/I18nSplitPlugin/I18nFilesEmitter.js +30 -30
- package/lib/plugins/I18nSplitPlugin/I18nKeysIdentifer.js +8 -8
- package/lib/plugins/I18nSplitPlugin/I18nSplit.md +95 -95
- package/lib/plugins/I18nSplitPlugin/README.md +25 -25
- package/lib/plugins/I18nSplitPlugin/index.js +57 -57
- package/lib/plugins/ResourceHintsPlugin.js +30 -20
- package/lib/plugins/RtlSplitPlugin/RtlCssPlugin.js +6 -6
- package/lib/plugins/RtlSplitPlugin/RtrSplit.md +30 -30
- package/lib/plugins/SelectorPlugin.js +29 -29
- package/lib/plugins/ServiceWorkerPlugin.js +9 -9
- package/lib/plugins/TPHashMappingPlugin.js +4 -4
- package/lib/plugins/VariableConversionCollector.js +59 -59
- package/lib/plugins/utils/fileHandling.js +35 -42
- package/lib/plugins/variableConvertorUtils.js +9 -9
- package/lib/postcss-plugins/RTLSplitPlugin.js +10 -10
- package/lib/postcss-plugins/__test__/test1Input.css +38 -38
- package/lib/postcss-plugins/__test__/test1Output.css +38 -38
- package/lib/postcss-plugins/hoverActivePlugin.js +3 -3
- package/lib/schemas/index.js +23 -36
- package/lib/sh/pre-commit.sh +34 -34
- package/lib/sh/reportPublish.sh +45 -45
- package/lib/utils/buildstats.html +148 -148
- package/lib/utils/cssClassNameGenerate.js +13 -13
- package/lib/utils/deprecationSupport.js +144 -0
- package/lib/utils/getOptions.js +18 -78
- package/lib/utils/resultSchema.json +73 -73
- package/npm-shrinkwrap.json +33393 -33393
- package/npm8.md +9 -9
- package/package.json +123 -122
- package/postpublish.js +8 -8
- package/result.json +1 -0
- package/templates/app/.eslintrc.js +140 -140
- package/templates/app/README.md +12 -12
- package/templates/app/app/index.html +24 -24
- package/templates/app/app/properties/ApplicationResources_en_US.properties +1 -1
- package/templates/app/app/properties/i18nkeys.json +3 -3
- package/templates/app/docs/all.html +69 -69
- package/templates/app/mockapi/index.js +18 -18
- package/templates/app/package.json +37 -37
- package/templates/app/src/actions/SampleActions/index.js +37 -37
- package/templates/app/src/actions/index.js +65 -65
- package/templates/app/src/appUrls.js +19 -19
- package/templates/app/src/components/Alert/Alert.js +134 -134
- package/templates/app/src/components/Alert/Alert.module.css +79 -79
- package/templates/app/src/components/FreezeLayer/FreezeLayer.css +37 -37
- package/templates/app/src/components/FreezeLayer/FreezeLayer.js +84 -84
- package/templates/app/src/components/Sample/Sample.module.css +11 -11
- package/templates/app/src/components/Sample/SampleList.js +61 -61
- package/templates/app/src/components/Slider/Slider.css +41 -41
- package/templates/app/src/components/Slider/Slider.js +55 -55
- package/templates/app/src/containers/AlertContainer/index.js +15 -15
- package/templates/app/src/containers/AppContainer/index.js +96 -96
- package/templates/app/src/containers/AppContainer/index.module.css +27 -27
- package/templates/app/src/containers/CustomMatch/index.js +65 -65
- package/templates/app/src/containers/DevTools/index.js +10 -10
- package/templates/app/src/containers/Header/index.js +67 -67
- package/templates/app/src/containers/Header/index.module.css +43 -43
- package/templates/app/src/containers/Redirect/index.js +63 -63
- package/templates/app/src/containers/Redirector/index.js +47 -47
- package/templates/app/src/containers/SampleListContainer/ListContainer.js +42 -42
- package/templates/app/src/containers/SampleListContainer/ListContainer.module.css +3 -3
- package/templates/app/src/historyChange.js +5 -5
- package/templates/app/src/index.html +10 -10
- package/templates/app/src/index.js +24 -24
- package/templates/app/src/middleware/PromiseMiddleware.js +59 -59
- package/templates/app/src/reducers/alertData.js +11 -11
- package/templates/app/src/reducers/index.js +6 -6
- package/templates/app/src/reducers/samples.js +19 -19
- package/templates/app/src/store/configureStore.dev.js +51 -51
- package/templates/app/src/store/configureStore.js +5 -5
- package/templates/app/src/store/configureStore.prod.js +26 -26
- package/templates/app/src/util/Common.js +5 -5
- package/templates/app/src/util/RequestAPI.js +132 -132
- package/templates/docs/all.html +250 -249
- package/templates/docs/component.html +179 -178
- package/templates/docs/components.html +222 -221
- package/templates/docs/css/b.min.css +6 -6
- package/templates/docs/css/component.css +42 -42
- package/templates/docs/css/componentTest.css +6 -6
- package/templates/docs/css/hopscotch.css +585 -585
- package/templates/docs/css/markdown.css +202 -0
- package/templates/docs/css/style.css +1022 -1022
- package/templates/docs/impactReportTemplate.html +154 -154
- package/templates/docs/index.html +1502 -1501
- package/templates/docs/js/active-line.js +72 -72
- package/templates/docs/js/b.min.js +7 -7
- package/templates/docs/js/codemirror.js +9680 -9680
- package/templates/docs/js/designTokens.js +334 -334
- package/templates/docs/js/j.min.js +4 -4
- package/templates/docs/js/javascript.js +874 -874
- package/templates/docs/js/matchbrackets.js +145 -145
- package/unittest/index.html +37 -0
@@ -1,1022 +1,1022 @@
|
|
1
|
-
/* cyrillic-ext */
|
2
|
-
@font-face {
|
3
|
-
font-family: 'Regular';
|
4
|
-
font-style: normal;
|
5
|
-
font-weight: 400;
|
6
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
7
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bf8pkAp6a.woff2)
|
8
|
-
format('woff2');
|
9
|
-
unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
|
10
|
-
U + A640-A69F, U + FE2E-FE2F;
|
11
|
-
}
|
12
|
-
/* cyrillic */
|
13
|
-
@font-face {
|
14
|
-
font-family: 'Regular';
|
15
|
-
font-style: normal;
|
16
|
-
font-weight: 400;
|
17
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
18
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bf8pkAp6a.woff2)
|
19
|
-
format('woff2');
|
20
|
-
unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
|
21
|
-
}
|
22
|
-
/* greek-ext */
|
23
|
-
@font-face {
|
24
|
-
font-family: 'Regular';
|
25
|
-
font-style: normal;
|
26
|
-
font-weight: 400;
|
27
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
28
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bf8pkAp6a.woff2)
|
29
|
-
format('woff2');
|
30
|
-
unicode-range: U + 1f00-1fff;
|
31
|
-
}
|
32
|
-
/* greek */
|
33
|
-
@font-face {
|
34
|
-
font-family: 'Regular';
|
35
|
-
font-style: normal;
|
36
|
-
font-weight: 400;
|
37
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
38
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bf8pkAp6a.woff2)
|
39
|
-
format('woff2');
|
40
|
-
unicode-range: U + 0370-03ff;
|
41
|
-
}
|
42
|
-
/* vietnamese */
|
43
|
-
@font-face {
|
44
|
-
font-family: 'Regular';
|
45
|
-
font-style: normal;
|
46
|
-
font-weight: 400;
|
47
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
48
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bf8pkAp6a.woff2)
|
49
|
-
format('woff2');
|
50
|
-
unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
|
51
|
-
}
|
52
|
-
/* latin-ext */
|
53
|
-
@font-face {
|
54
|
-
font-family: 'Regular';
|
55
|
-
font-style: normal;
|
56
|
-
font-weight: 400;
|
57
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
58
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2)
|
59
|
-
format('woff2');
|
60
|
-
unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
|
61
|
-
U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
|
62
|
-
}
|
63
|
-
/* latin */
|
64
|
-
@font-face {
|
65
|
-
font-family: 'Regular';
|
66
|
-
font-style: normal;
|
67
|
-
font-weight: 400;
|
68
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
69
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2)
|
70
|
-
format('woff2');
|
71
|
-
unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
|
72
|
-
U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
|
73
|
-
U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
|
74
|
-
}
|
75
|
-
/* cyrillic-ext */
|
76
|
-
@font-face {
|
77
|
-
font-family: 'Semibold';
|
78
|
-
font-style: normal;
|
79
|
-
font-weight: 700;
|
80
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
81
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpKKSTj5PW.woff2)
|
82
|
-
format('woff2');
|
83
|
-
unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
|
84
|
-
U + A640-A69F, U + FE2E-FE2F;
|
85
|
-
}
|
86
|
-
/* cyrillic */
|
87
|
-
@font-face {
|
88
|
-
font-family: 'Semibold';
|
89
|
-
font-style: normal;
|
90
|
-
font-weight: 700;
|
91
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
92
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpKKSTj5PW.woff2)
|
93
|
-
format('woff2');
|
94
|
-
unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
|
95
|
-
}
|
96
|
-
/* greek-ext */
|
97
|
-
@font-face {
|
98
|
-
font-family: 'Semibold';
|
99
|
-
font-style: normal;
|
100
|
-
font-weight: 700;
|
101
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
102
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpKKSTj5PW.woff2)
|
103
|
-
format('woff2');
|
104
|
-
unicode-range: U + 1f00-1fff;
|
105
|
-
}
|
106
|
-
/* greek */
|
107
|
-
@font-face {
|
108
|
-
font-family: 'Semibold';
|
109
|
-
font-style: normal;
|
110
|
-
font-weight: 700;
|
111
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
112
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpKKSTj5PW.woff2)
|
113
|
-
format('woff2');
|
114
|
-
unicode-range: U + 0370-03ff;
|
115
|
-
}
|
116
|
-
/* vietnamese */
|
117
|
-
@font-face {
|
118
|
-
font-family: 'Semibold';
|
119
|
-
font-style: normal;
|
120
|
-
font-weight: 700;
|
121
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
122
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpKKSTj5PW.woff2)
|
123
|
-
format('woff2');
|
124
|
-
unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
|
125
|
-
}
|
126
|
-
/* latin-ext */
|
127
|
-
@font-face {
|
128
|
-
font-family: 'Semibold';
|
129
|
-
font-style: normal;
|
130
|
-
font-weight: 700;
|
131
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
132
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2)
|
133
|
-
format('woff2');
|
134
|
-
unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
|
135
|
-
U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
|
136
|
-
}
|
137
|
-
/* latin */
|
138
|
-
@font-face {
|
139
|
-
font-family: 'Semibold';
|
140
|
-
font-style: normal;
|
141
|
-
font-weight: 700;
|
142
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
143
|
-
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2)
|
144
|
-
format('woff2');
|
145
|
-
unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
|
146
|
-
U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
|
147
|
-
U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
|
148
|
-
}
|
149
|
-
|
150
|
-
*,
|
151
|
-
:after,
|
152
|
-
:before {
|
153
|
-
margin: 0;
|
154
|
-
padding: 0;
|
155
|
-
outline: 0;
|
156
|
-
border: 0;
|
157
|
-
box-sizing: border-box;
|
158
|
-
-webkit-box-sizing: border-box;
|
159
|
-
-moz-box-sizing: border-box;
|
160
|
-
-ms-box-sizing: border-box;
|
161
|
-
}
|
162
|
-
a {
|
163
|
-
text-decoration: none;
|
164
|
-
}
|
165
|
-
|
166
|
-
/* FLex Assets*/
|
167
|
-
.dflex {
|
168
|
-
display: -webkit-box;
|
169
|
-
display: -ms-flexbox;
|
170
|
-
display: flex;
|
171
|
-
height: 100%;
|
172
|
-
width: 100%;
|
173
|
-
}
|
174
|
-
.flexwrap {
|
175
|
-
-ms-flex-wrap: wrap;
|
176
|
-
flex-wrap: wrap;
|
177
|
-
}
|
178
|
-
.flexcolumn {
|
179
|
-
-webkit-box-orient: vertical;
|
180
|
-
-webkit-box-direction: normal;
|
181
|
-
-webkit-flex-direction: column;
|
182
|
-
-ms-flex-direction: column;
|
183
|
-
flex-direction: column;
|
184
|
-
}
|
185
|
-
.flexrow {
|
186
|
-
-webkit-box-orient: horizontal;
|
187
|
-
-webkit-box-direction: normal;
|
188
|
-
-webkit-flex-direction: row;
|
189
|
-
-ms-flex-direction: row;
|
190
|
-
flex-direction: row;
|
191
|
-
}
|
192
|
-
.flexrowreverse {
|
193
|
-
-webkit-box-orient: horizontal;
|
194
|
-
-webkit-box-direction: reverse;
|
195
|
-
-webkit-flex-direction: row-reverse;
|
196
|
-
-ms-flex-direction: row-reverse;
|
197
|
-
flex-direction: row-reverse;
|
198
|
-
}
|
199
|
-
.flexcolumnreverse {
|
200
|
-
-webkit-box-orient: vertical;
|
201
|
-
-webkit-box-direction: reverse;
|
202
|
-
-webkit-flex-direction: column-reverse;
|
203
|
-
-ms-flex-direction: column-reverse;
|
204
|
-
flex-direction: column-reverse;
|
205
|
-
}
|
206
|
-
.flexgrow {
|
207
|
-
-webkit-box-flex: 1;
|
208
|
-
-ms-flex-positive: 1;
|
209
|
-
flex-grow: 1;
|
210
|
-
min-height: 0;
|
211
|
-
min-width: 0;
|
212
|
-
}
|
213
|
-
.flexshrink {
|
214
|
-
flex-shrink: 0;
|
215
|
-
-moz-flex-shrink: 0;
|
216
|
-
-webkit-flex-shrink: 0;
|
217
|
-
-ms-flex-shrink: 0;
|
218
|
-
}
|
219
|
-
.flexbasis {
|
220
|
-
flex-basis: 0%;
|
221
|
-
-webkit-flex-basis: 0%;
|
222
|
-
-moz-flex-basis: 0%;
|
223
|
-
-ms-flex-basis: 0%;
|
224
|
-
}
|
225
|
-
.alignVertical {
|
226
|
-
-webkit-box-align: center;
|
227
|
-
-ms-flex-align: center;
|
228
|
-
align-items: center;
|
229
|
-
}
|
230
|
-
.alignFstart {
|
231
|
-
-webkit-box-align: start;
|
232
|
-
-ms-flex-align: start;
|
233
|
-
align-items: flex-start;
|
234
|
-
}
|
235
|
-
.alignFend {
|
236
|
-
-webkit-box-align: end;
|
237
|
-
-ms-flex-align: end;
|
238
|
-
align-items: flex-end;
|
239
|
-
}
|
240
|
-
.alignHorizontal {
|
241
|
-
-webkit-box-pack: center;
|
242
|
-
-ms-flex-pack: center;
|
243
|
-
justify-content: center;
|
244
|
-
}
|
245
|
-
.dotted {
|
246
|
-
overflow: hidden;
|
247
|
-
white-space: nowrap;
|
248
|
-
word-wrap: normal;
|
249
|
-
text-overflow: ellipsis;
|
250
|
-
}
|
251
|
-
.offSelection {
|
252
|
-
-webkit-user-select: none;
|
253
|
-
-moz-user-select: none;
|
254
|
-
-ms-user-select: none;
|
255
|
-
user-select: none;
|
256
|
-
}
|
257
|
-
.scrollY {
|
258
|
-
overflow-y: auto;
|
259
|
-
overflow-x: hidden;
|
260
|
-
}
|
261
|
-
body {
|
262
|
-
background: #fff;
|
263
|
-
font-size: 14px;
|
264
|
-
overflow: hidden;
|
265
|
-
font-family: Regular;
|
266
|
-
}
|
267
|
-
|
268
|
-
main {
|
269
|
-
height: 100vh !important;
|
270
|
-
animation: slide 0.4s ease 0s normal;
|
271
|
-
}
|
272
|
-
@keyframes slide {
|
273
|
-
0% {
|
274
|
-
opacity: 0;
|
275
|
-
}
|
276
|
-
100% {
|
277
|
-
opacity: 1;
|
278
|
-
}
|
279
|
-
}
|
280
|
-
.menuBar {
|
281
|
-
width: 220px;
|
282
|
-
border-right: 1px solid #0e1c27;
|
283
|
-
transition: transform 0.3s;
|
284
|
-
background: #1d2b36;
|
285
|
-
}
|
286
|
-
.isMenuClose {
|
287
|
-
position: absolute;
|
288
|
-
top: 0;
|
289
|
-
left: 0;
|
290
|
-
bottom: 0;
|
291
|
-
transform: translateX(-110%);
|
292
|
-
transition: transform 0.3s;
|
293
|
-
}
|
294
|
-
|
295
|
-
.menuContainer {
|
296
|
-
padding-bottom: 5px;
|
297
|
-
}
|
298
|
-
.logoPart {
|
299
|
-
height: 50px;
|
300
|
-
border-bottom: 1px solid #16222b;
|
301
|
-
line-height: 50px;
|
302
|
-
padding-left: 5px;
|
303
|
-
justify-content: space-between;
|
304
|
-
}
|
305
|
-
.logoPart img {
|
306
|
-
max-width: 100%;
|
307
|
-
width: 130px;
|
308
|
-
vertical-align: middle;
|
309
|
-
}
|
310
|
-
.searchPart {
|
311
|
-
padding: 10px;
|
312
|
-
border-bottom: 1px solid #16222b;
|
313
|
-
}
|
314
|
-
.searchContainer {
|
315
|
-
position: relative;
|
316
|
-
}
|
317
|
-
.searchClose {
|
318
|
-
position: absolute;
|
319
|
-
top: 50%;
|
320
|
-
right: 5px;
|
321
|
-
width: 16px;
|
322
|
-
padding: 5px;
|
323
|
-
background: rgba(102, 106, 108, 0.57);
|
324
|
-
border-radius: 30px;
|
325
|
-
text-align: center;
|
326
|
-
height: 16px;
|
327
|
-
transform: translateY(-50%);
|
328
|
-
line-height: 0;
|
329
|
-
cursor: pointer;
|
330
|
-
}
|
331
|
-
.searchClose img {
|
332
|
-
width: 100%;
|
333
|
-
height: 100%;
|
334
|
-
}
|
335
|
-
.versionPart {
|
336
|
-
padding: 4px 4px 7px;
|
337
|
-
text-align: center;
|
338
|
-
background: #0c1115;
|
339
|
-
}
|
340
|
-
.versionPart span,
|
341
|
-
.tools span {
|
342
|
-
color: #fff;
|
343
|
-
font-size: 12px;
|
344
|
-
}
|
345
|
-
.tools img {
|
346
|
-
display: inline-block;
|
347
|
-
vertical-align: middle;
|
348
|
-
margin-right: 5px;
|
349
|
-
}
|
350
|
-
.tools {
|
351
|
-
padding: 4px 4px 7px;
|
352
|
-
background-color: #00995a;
|
353
|
-
cursor: pointer;
|
354
|
-
text-align: center;
|
355
|
-
}
|
356
|
-
.tools:hover {
|
357
|
-
background-color: #07ab67;
|
358
|
-
}
|
359
|
-
.sliderContainer {
|
360
|
-
position: relative;
|
361
|
-
}
|
362
|
-
.slider {
|
363
|
-
position: absolute;
|
364
|
-
top: 0;
|
365
|
-
left: 0;
|
366
|
-
right: 0;
|
367
|
-
bottom: 0;
|
368
|
-
overflow-y: auto;
|
369
|
-
background-color: #1d2b36;
|
370
|
-
transform: translateX(-100%);
|
371
|
-
transition: transform 0.3s;
|
372
|
-
}
|
373
|
-
.slider.sopen {
|
374
|
-
transform: translateX(0);
|
375
|
-
}
|
376
|
-
.sliderHeader {
|
377
|
-
position: relative;
|
378
|
-
background-color: #e79a2a;
|
379
|
-
text-align: left;
|
380
|
-
padding-left: 10px;
|
381
|
-
}
|
382
|
-
.sliderFormContainer {
|
383
|
-
padding: 20px 10px;
|
384
|
-
}
|
385
|
-
.sliderInputContainer {
|
386
|
-
margin-bottom: 12px;
|
387
|
-
}
|
388
|
-
.sliderInputTitle {
|
389
|
-
color: #999;
|
390
|
-
font-size: 13px;
|
391
|
-
letter-spacing: 0.1px;
|
392
|
-
padding-bottom: 4px;
|
393
|
-
display: block;
|
394
|
-
}
|
395
|
-
.sliderInput {
|
396
|
-
background: rgb(27, 27, 43, 0.8);
|
397
|
-
width: 100%;
|
398
|
-
border-radius: 3px;
|
399
|
-
padding: 7px 5px;
|
400
|
-
color: #fff;
|
401
|
-
font-size: 13px;
|
402
|
-
}
|
403
|
-
.sliderResult {
|
404
|
-
position: relative;
|
405
|
-
}
|
406
|
-
.copyResult {
|
407
|
-
position: absolute;
|
408
|
-
top: 0;
|
409
|
-
right: 0;
|
410
|
-
bottom: 0;
|
411
|
-
width: 30px;
|
412
|
-
text-align: center;
|
413
|
-
padding: 7px;
|
414
|
-
background: #01985b;
|
415
|
-
border-radius: 0 3px 3px 0;
|
416
|
-
cursor: pointer;
|
417
|
-
}
|
418
|
-
.copyResult:hover {
|
419
|
-
background: #03b7fe;
|
420
|
-
}
|
421
|
-
.copyResult img {
|
422
|
-
width: 100%;
|
423
|
-
height: 100%;
|
424
|
-
}
|
425
|
-
.copyTxtHiden {
|
426
|
-
height: 0px !important;
|
427
|
-
width: 0px !important;
|
428
|
-
font-size: 0px !important;
|
429
|
-
padding: 0px !important;
|
430
|
-
}
|
431
|
-
.mainMenu {
|
432
|
-
padding: 10px;
|
433
|
-
cursor: pointer;
|
434
|
-
font-size: 13px;
|
435
|
-
transition: all 0.3s;
|
436
|
-
}
|
437
|
-
.mainMenuActive,
|
438
|
-
.mainMenu:hover {
|
439
|
-
background-color: #162029;
|
440
|
-
}
|
441
|
-
.mainMenuActive .mainMenuArrow {
|
442
|
-
transform: rotate(90deg);
|
443
|
-
}
|
444
|
-
.mainMenutitle {
|
445
|
-
max-width: 100%;
|
446
|
-
color: #fff;
|
447
|
-
text-transform: capitalize;
|
448
|
-
}
|
449
|
-
.mainMenuCount {
|
450
|
-
padding: 3px 5px;
|
451
|
-
background: #008e4f;
|
452
|
-
border-radius: 15px;
|
453
|
-
font-size: 9px;
|
454
|
-
color: #fff;
|
455
|
-
margin-right: 10px;
|
456
|
-
margin-left: 5px;
|
457
|
-
min-width: 18px;
|
458
|
-
text-align: center;
|
459
|
-
}
|
460
|
-
.mainMenuArrow {
|
461
|
-
transition: all 0.3s;
|
462
|
-
height: 12px;
|
463
|
-
width: 12px;
|
464
|
-
}
|
465
|
-
.menuHideLeft {
|
466
|
-
width: 220px;
|
467
|
-
padding-bottom: 20px;
|
468
|
-
border-right: 1px solid #dbd8d8;
|
469
|
-
transition: margin-left 0.5s ease;
|
470
|
-
background: #f4f6f9;
|
471
|
-
display: none;
|
472
|
-
}
|
473
|
-
.listIcon {
|
474
|
-
width: 15px;
|
475
|
-
margin-right: 8px;
|
476
|
-
height: 15px;
|
477
|
-
}
|
478
|
-
.listItem,
|
479
|
-
.componentMain,
|
480
|
-
.componentDocs {
|
481
|
-
padding: 7px 5px 7px 10px;
|
482
|
-
transition: all 0.3s;
|
483
|
-
cursor: pointer;
|
484
|
-
}
|
485
|
-
.listItem path {
|
486
|
-
fill: #fff;
|
487
|
-
}
|
488
|
-
.listTitle {
|
489
|
-
color: #fff;
|
490
|
-
font-size: 12px;
|
491
|
-
text-transform: capitalize;
|
492
|
-
}
|
493
|
-
.listCount {
|
494
|
-
padding: 3px 5px;
|
495
|
-
background: #0072b0;
|
496
|
-
border-radius: 15px;
|
497
|
-
font-size: 9px;
|
498
|
-
color: #fff;
|
499
|
-
margin-left: 5px;
|
500
|
-
font-style: initial;
|
501
|
-
min-width: 18px;
|
502
|
-
text-align: center;
|
503
|
-
}
|
504
|
-
.listItem:hover,
|
505
|
-
.listItem.selected {
|
506
|
-
background-color: #0c1115;
|
507
|
-
}
|
508
|
-
.componentMain:hover,
|
509
|
-
.componentDocs:hover {
|
510
|
-
background-color: #162029;
|
511
|
-
}
|
512
|
-
.componentDocs {
|
513
|
-
padding-left: 35px;
|
514
|
-
}
|
515
|
-
.componentDocs > a.active,
|
516
|
-
.componentMain > a.active {
|
517
|
-
position: relative;
|
518
|
-
}
|
519
|
-
.componentDocs > a.active::after,
|
520
|
-
.componentMain > a.active::after {
|
521
|
-
content: '';
|
522
|
-
position: absolute;
|
523
|
-
top: 0px;
|
524
|
-
height: 15px;
|
525
|
-
width: 15px;
|
526
|
-
background-color: #008f4c;
|
527
|
-
border-radius: 1px;
|
528
|
-
left: -43px;
|
529
|
-
transform: rotate(45deg);
|
530
|
-
}
|
531
|
-
.componentMain > a.active::after {
|
532
|
-
left: -28px;
|
533
|
-
}
|
534
|
-
.componentMain {
|
535
|
-
padding-left: 20px;
|
536
|
-
}
|
537
|
-
.subCount {
|
538
|
-
background-color: #e03332;
|
539
|
-
}
|
540
|
-
.activeComponent {
|
541
|
-
position: relative;
|
542
|
-
}
|
543
|
-
.activeComponent::after {
|
544
|
-
position: absolute;
|
545
|
-
content: '';
|
546
|
-
top: 0;
|
547
|
-
bottom: 0;
|
548
|
-
left: 0;
|
549
|
-
width: 2px;
|
550
|
-
background-color: #008f4c;
|
551
|
-
}
|
552
|
-
|
553
|
-
section {
|
554
|
-
border: 15px solid #333;
|
555
|
-
position: relative;
|
556
|
-
border-radius: 16px;
|
557
|
-
transition:width 0.2ms;
|
558
|
-
}
|
559
|
-
.iframe {
|
560
|
-
position: absolute;
|
561
|
-
top: 0;
|
562
|
-
left: 0;
|
563
|
-
right: 0;
|
564
|
-
bottom: 0;
|
565
|
-
height: 100%;
|
566
|
-
width: 100%;
|
567
|
-
overflow: auto;
|
568
|
-
z-index: 1;
|
569
|
-
background-color: #fff;
|
570
|
-
}
|
571
|
-
|
572
|
-
.inputSearch {
|
573
|
-
width: 100%;
|
574
|
-
background: #0c1115;
|
575
|
-
color: #fff;
|
576
|
-
font-size: 11px;
|
577
|
-
border-radius: 15px;
|
578
|
-
padding: 6px 25px 6px 15px;
|
579
|
-
}
|
580
|
-
|
581
|
-
.cheader {
|
582
|
-
border-bottom: 1px solid #dad8d8;
|
583
|
-
padding: 6px 25px;
|
584
|
-
}
|
585
|
-
.ccontent {
|
586
|
-
background-color: #fff;
|
587
|
-
padding: 5px 20px 0px 20px;
|
588
|
-
overflow: auto;
|
589
|
-
}
|
590
|
-
|
591
|
-
.cheadertitle {
|
592
|
-
font-family: Semibold;
|
593
|
-
font-size: 21px;
|
594
|
-
margin-right: 30px;
|
595
|
-
color: #0c1015;
|
596
|
-
}
|
597
|
-
.responsive {
|
598
|
-
height: 30px
|
599
|
-
}
|
600
|
-
.responsiveOption {
|
601
|
-
width: 30px;
|
602
|
-
height: 30px;
|
603
|
-
display: inline-block;
|
604
|
-
position: relative;
|
605
|
-
vertical-align: middle;
|
606
|
-
text-align: center;
|
607
|
-
line-height: 27px;
|
608
|
-
background: #5c5e61;
|
609
|
-
border-radius: 50%;
|
610
|
-
color:#fff;
|
611
|
-
margin: 0 5px;
|
612
|
-
padding: 5px;
|
613
|
-
cursor: pointer;
|
614
|
-
transition: all 0.3s;
|
615
|
-
font-size: 10px;
|
616
|
-
}
|
617
|
-
.section .responsiveOption{
|
618
|
-
margin: 0px 5px 5px;
|
619
|
-
}
|
620
|
-
.responsiveOption:hover,.activeOption {
|
621
|
-
background-color: #00995a;
|
622
|
-
}
|
623
|
-
.activeOption:hover{
|
624
|
-
background-color: #d0263a;
|
625
|
-
}
|
626
|
-
.responsiveOption svg {
|
627
|
-
width: 15px;
|
628
|
-
height: 15px;
|
629
|
-
|
630
|
-
}
|
631
|
-
.responsiveOption svg path {
|
632
|
-
fill: #fff;
|
633
|
-
}
|
634
|
-
.propsTable {
|
635
|
-
margin: 40px auto;
|
636
|
-
border: 1px solid #ebedf0;
|
637
|
-
font-size: 14px;
|
638
|
-
line-height: 1.5;
|
639
|
-
empty-cells: show;
|
640
|
-
}
|
641
|
-
.tableHeader {
|
642
|
-
display: flex;
|
643
|
-
flex-direction: row;
|
644
|
-
}
|
645
|
-
.brR {
|
646
|
-
white-space: nowrap;
|
647
|
-
color: #5c6b77;
|
648
|
-
font-weight: 500;
|
649
|
-
background: rgba(0, 0, 0, 0.02);
|
650
|
-
padding: 16px 24px;
|
651
|
-
text-align: left;
|
652
|
-
}
|
653
|
-
.tableHeaderNB {
|
654
|
-
display: flex;
|
655
|
-
flex-direction: row;
|
656
|
-
border-bottom: 1px solid transparent;
|
657
|
-
}
|
658
|
-
.tableHeader span,
|
659
|
-
.tableHeaderNB span {
|
660
|
-
flex: 1;
|
661
|
-
overflow: hidden;
|
662
|
-
text-overflow: ellipsis;
|
663
|
-
word-wrap: normal;
|
664
|
-
word-break: break-word;
|
665
|
-
border-right: 1px solid #ebedf0;
|
666
|
-
padding: 16px 24px;
|
667
|
-
text-align: left;
|
668
|
-
border-bottom: 1px solid #ebedf0;
|
669
|
-
}
|
670
|
-
.tableHeaderNB span {
|
671
|
-
border-bottom-width: 0;
|
672
|
-
}
|
673
|
-
.bn {
|
674
|
-
border-right-width: 0;
|
675
|
-
}
|
676
|
-
.tableHeader .defaultProps,
|
677
|
-
.tableHeaderNB .defaultProps {
|
678
|
-
overflow: initial;
|
679
|
-
white-space: normal;
|
680
|
-
text-overflow: initial;
|
681
|
-
word-break: break-all;
|
682
|
-
}
|
683
|
-
.srcCode {
|
684
|
-
color: #2d2929;
|
685
|
-
width: 100%;
|
686
|
-
height: 100%;
|
687
|
-
overflow: auto;
|
688
|
-
padding: 20px 0;
|
689
|
-
display: block;
|
690
|
-
}
|
691
|
-
.referContainer {
|
692
|
-
padding: 20px 0;
|
693
|
-
color:#fff;
|
694
|
-
background-color: #2D313F;
|
695
|
-
border-radius: 5px;
|
696
|
-
height: 100%;
|
697
|
-
}
|
698
|
-
.refsBy {
|
699
|
-
padding: 10px;
|
700
|
-
font-size: 17px;
|
701
|
-
color: inherit;
|
702
|
-
}
|
703
|
-
.refsLin {
|
704
|
-
padding: 5px;
|
705
|
-
font-size: 15px;
|
706
|
-
color: inherit;
|
707
|
-
list-style-position: inside;
|
708
|
-
margin-left: 30px;
|
709
|
-
}
|
710
|
-
.refsLin a {
|
711
|
-
color: inherit;
|
712
|
-
}
|
713
|
-
.psdContainer {
|
714
|
-
width: 24%;
|
715
|
-
border: 1px solid #1c2b36;
|
716
|
-
border-radius: 5px;
|
717
|
-
padding: 5px;
|
718
|
-
margin-right: 10px;
|
719
|
-
margin-bottom: 10px;
|
720
|
-
display: inline-block;
|
721
|
-
vertical-align: top;
|
722
|
-
}
|
723
|
-
.imageContainer {
|
724
|
-
min-height: 150px;
|
725
|
-
text-align: center;
|
726
|
-
}
|
727
|
-
.psdImage {
|
728
|
-
max-width: 100%;
|
729
|
-
max-height: 150px;
|
730
|
-
}
|
731
|
-
.psdLink {
|
732
|
-
color: #fff;
|
733
|
-
background: #1c2b36;
|
734
|
-
padding: 5px;
|
735
|
-
display: block;
|
736
|
-
text-align: center;
|
737
|
-
border-radius: 5px;
|
738
|
-
cursor: pointer;
|
739
|
-
margin-bottom: 3px;
|
740
|
-
border: 1px solid transparent;
|
741
|
-
}
|
742
|
-
.psdLink:hover {
|
743
|
-
background: #fff;
|
744
|
-
color: #1c2b36;
|
745
|
-
border-color: #1c2b36;
|
746
|
-
}
|
747
|
-
.infoTabs span {
|
748
|
-
padding: 0px 10px;
|
749
|
-
font-size: 14px;
|
750
|
-
line-height: 30px;
|
751
|
-
cursor: pointer;
|
752
|
-
margin-right: 10px;
|
753
|
-
border-radius: 2px;
|
754
|
-
transition: all 0.1s;
|
755
|
-
}
|
756
|
-
.infoactive,
|
757
|
-
.infoTabs span:hover {
|
758
|
-
background: #3cc1a2;
|
759
|
-
color: #fff;
|
760
|
-
}
|
761
|
-
.showToggleLeft {
|
762
|
-
background-color: #fff;
|
763
|
-
z-index: 5;
|
764
|
-
position: absolute;
|
765
|
-
bottom: 15px;
|
766
|
-
left: 20px;
|
767
|
-
border-radius: 50%;
|
768
|
-
transition: all 0.5s ease;
|
769
|
-
transform: scale(1);
|
770
|
-
cursor: pointer;
|
771
|
-
height: 35px;
|
772
|
-
width: 35px;
|
773
|
-
border: 1px solid #1e2633;
|
774
|
-
align-items: center;
|
775
|
-
justify-content: center;
|
776
|
-
display: none;
|
777
|
-
}
|
778
|
-
.showToggleLeft img {
|
779
|
-
width: 28px;
|
780
|
-
height: 28px;
|
781
|
-
padding: 7px;
|
782
|
-
transform: rotateY(180deg);
|
783
|
-
}
|
784
|
-
.bn {
|
785
|
-
border: none !important;
|
786
|
-
}
|
787
|
-
#ifm {
|
788
|
-
outline: none;
|
789
|
-
border: none;
|
790
|
-
overflow: hidden;
|
791
|
-
z-index: 1;
|
792
|
-
position: fixed;
|
793
|
-
}
|
794
|
-
.iframeCentering {
|
795
|
-
height: 98vh;
|
796
|
-
width: 100vw;
|
797
|
-
display: flex;
|
798
|
-
background: #fff;
|
799
|
-
justify-content: center;
|
800
|
-
align-items: center;
|
801
|
-
position: relative;
|
802
|
-
z-index: 1;
|
803
|
-
}
|
804
|
-
.posAb {
|
805
|
-
position: absolute;
|
806
|
-
z-index: 0;
|
807
|
-
animation: jump 1.5s ease 0s infinite normal;
|
808
|
-
font-size: 24px;
|
809
|
-
color: black;
|
810
|
-
}
|
811
|
-
@keyframes jump {
|
812
|
-
0% {
|
813
|
-
transform: translateY(0);
|
814
|
-
}
|
815
|
-
20% {
|
816
|
-
transform: translateY(0);
|
817
|
-
}
|
818
|
-
40% {
|
819
|
-
transform: translateY(-30px);
|
820
|
-
}
|
821
|
-
50% {
|
822
|
-
transform: translateY(0);
|
823
|
-
}
|
824
|
-
60% {
|
825
|
-
transform: translateY(-15px);
|
826
|
-
}
|
827
|
-
80% {
|
828
|
-
transform: translateY(0);
|
829
|
-
}
|
830
|
-
100% {
|
831
|
-
transform: translateY(0);
|
832
|
-
}
|
833
|
-
}
|
834
|
-
.logo {
|
835
|
-
background-image: url('desklogo.png');
|
836
|
-
height: 40px;
|
837
|
-
width: 130px;
|
838
|
-
background-size: 100% 100%;
|
839
|
-
display: inline-block;
|
840
|
-
vertical-align: middle;
|
841
|
-
margin-top: 4px;
|
842
|
-
margin-left: 10px;
|
843
|
-
}
|
844
|
-
@media only screen and (max-width: 980px) {
|
845
|
-
.menuBar {
|
846
|
-
position: absolute;
|
847
|
-
top: 0;
|
848
|
-
left: 0;
|
849
|
-
bottom: 0;
|
850
|
-
transform: translate(-110%);
|
851
|
-
z-index: 2;
|
852
|
-
}
|
853
|
-
.isMenuOpen {
|
854
|
-
transform: translateX(0);
|
855
|
-
}
|
856
|
-
.showToggleLeft {
|
857
|
-
display: flex;
|
858
|
-
}
|
859
|
-
}
|
860
|
-
|
861
|
-
.iframeSection {
|
862
|
-
position: relative;
|
863
|
-
margin: 0 auto;
|
864
|
-
}
|
865
|
-
.loadingText {
|
866
|
-
position: absolute;
|
867
|
-
top: 50%;
|
868
|
-
left: 50%;
|
869
|
-
transform: translate(-50%, -50%);
|
870
|
-
display: inline-block;
|
871
|
-
z-index: 3;
|
872
|
-
display: none;
|
873
|
-
}
|
874
|
-
.lds-ripple {
|
875
|
-
display: inline-block;
|
876
|
-
position: relative;
|
877
|
-
width: 64px;
|
878
|
-
height: 64px;
|
879
|
-
}
|
880
|
-
.lds-ripple div {
|
881
|
-
position: absolute;
|
882
|
-
border: 4px solid #3a3a3a;
|
883
|
-
opacity: 1;
|
884
|
-
border-radius: 50%;
|
885
|
-
top: 0;
|
886
|
-
left: 0;
|
887
|
-
right: 0;
|
888
|
-
bottom: 0;
|
889
|
-
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
|
890
|
-
}
|
891
|
-
.lds-ripple div:nth-child(2) {
|
892
|
-
animation-delay: -0.5s;
|
893
|
-
}
|
894
|
-
@keyframes lds-ripple {
|
895
|
-
0% {
|
896
|
-
transform: scale(0);
|
897
|
-
opacity: 1;
|
898
|
-
}
|
899
|
-
100% {
|
900
|
-
transform: scale(1.5);
|
901
|
-
opacity: 0;
|
902
|
-
}
|
903
|
-
}
|
904
|
-
.hide {
|
905
|
-
display: none;
|
906
|
-
}
|
907
|
-
.compListItem{
|
908
|
-
padding: 5px;
|
909
|
-
font-size: 15px;
|
910
|
-
list-style-position: inside;
|
911
|
-
margin-left: 30px;
|
912
|
-
}
|
913
|
-
.compListTitle{
|
914
|
-
padding: 10px;
|
915
|
-
font-size: 17px;
|
916
|
-
flex:1;
|
917
|
-
max-width: 90%;
|
918
|
-
display: block;
|
919
|
-
}
|
920
|
-
.toolOptions{
|
921
|
-
background: #333;
|
922
|
-
border-radius: 12px;
|
923
|
-
margin: 5px 0;
|
924
|
-
}
|
925
|
-
.toolarea{
|
926
|
-
overflow: auto;
|
927
|
-
}
|
928
|
-
.range{
|
929
|
-
width: 500px;
|
930
|
-
padding: 15px 0;
|
931
|
-
position: relative;
|
932
|
-
margin-left: 20px;
|
933
|
-
flex: .5;
|
934
|
-
}
|
935
|
-
.rangeSlider{
|
936
|
-
min-width: 200px;
|
937
|
-
}
|
938
|
-
.tooltip,.window {
|
939
|
-
padding: 4px;
|
940
|
-
font-size: 12px;
|
941
|
-
color: #fff;
|
942
|
-
background-color: #5c5e61;
|
943
|
-
white-space: nowrap;
|
944
|
-
border-radius: 5px;
|
945
|
-
margin: 0px 6px;
|
946
|
-
}
|
947
|
-
.tooltip{
|
948
|
-
min-width:80px;
|
949
|
-
text-align: center;
|
950
|
-
}
|
951
|
-
.tooltipVal{
|
952
|
-
font-size: 12px;
|
953
|
-
color:#fff;
|
954
|
-
padding: 4px;
|
955
|
-
}
|
956
|
-
.rangeInput {
|
957
|
-
-webkit-appearance: none;
|
958
|
-
display: block;
|
959
|
-
width: 100%;
|
960
|
-
min-width: 100px;
|
961
|
-
height: 8px;
|
962
|
-
padding: 0;
|
963
|
-
border-radius: 4px;
|
964
|
-
background: #dbdbdb;
|
965
|
-
box-sizing: content-box;
|
966
|
-
}
|
967
|
-
.rangeInput:focus {
|
968
|
-
outline: none;
|
969
|
-
}
|
970
|
-
.rangeInput::-webkit-slider-thumb {
|
971
|
-
-webkit-appearance: none;
|
972
|
-
width: 15px;
|
973
|
-
height: 20px;
|
974
|
-
border: 1px solid #03613b;
|
975
|
-
border-radius: 5px;
|
976
|
-
background: #00995a;
|
977
|
-
}
|
978
|
-
.transform{
|
979
|
-
transform: rotateY(180deg);
|
980
|
-
}
|
981
|
-
.home{
|
982
|
-
display: block;
|
983
|
-
padding: 2px 15px 2px 0px;
|
984
|
-
cursor: pointer;
|
985
|
-
}
|
986
|
-
.fullScreen svg{
|
987
|
-
width: 18px;
|
988
|
-
height: 18px;
|
989
|
-
}
|
990
|
-
.textSize{
|
991
|
-
line-height: 23px;
|
992
|
-
}
|
993
|
-
.textSize svg{
|
994
|
-
width: 12px;
|
995
|
-
height: 12px;
|
996
|
-
}
|
997
|
-
.svg{
|
998
|
-
width: inherit;
|
999
|
-
height: inherit;
|
1000
|
-
fill: #fff;
|
1001
|
-
}
|
1002
|
-
.homeIcon{
|
1003
|
-
width: 20px;
|
1004
|
-
height: 20px;
|
1005
|
-
}
|
1006
|
-
.smileIcon{
|
1007
|
-
width: 60px;
|
1008
|
-
margin-bottom: 30px
|
1009
|
-
}
|
1010
|
-
.authorview{
|
1011
|
-
height: 100%;
|
1012
|
-
overflow: auto;
|
1013
|
-
}
|
1014
|
-
#react{
|
1015
|
-
position: fixed;
|
1016
|
-
top: 0;
|
1017
|
-
z-index: 1;
|
1018
|
-
left: 0;
|
1019
|
-
right: 0;
|
1020
|
-
bottom: 0;
|
1021
|
-
background:#fff;
|
1022
|
-
}
|
1
|
+
/* cyrillic-ext */
|
2
|
+
@font-face {
|
3
|
+
font-family: 'Regular';
|
4
|
+
font-style: normal;
|
5
|
+
font-weight: 400;
|
6
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
7
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWJ0bf8pkAp6a.woff2)
|
8
|
+
format('woff2');
|
9
|
+
unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
|
10
|
+
U + A640-A69F, U + FE2E-FE2F;
|
11
|
+
}
|
12
|
+
/* cyrillic */
|
13
|
+
@font-face {
|
14
|
+
font-family: 'Regular';
|
15
|
+
font-style: normal;
|
16
|
+
font-weight: 400;
|
17
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
18
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0bf8pkAp6a.woff2)
|
19
|
+
format('woff2');
|
20
|
+
unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
|
21
|
+
}
|
22
|
+
/* greek-ext */
|
23
|
+
@font-face {
|
24
|
+
font-family: 'Regular';
|
25
|
+
font-style: normal;
|
26
|
+
font-weight: 400;
|
27
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
28
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWZ0bf8pkAp6a.woff2)
|
29
|
+
format('woff2');
|
30
|
+
unicode-range: U + 1f00-1fff;
|
31
|
+
}
|
32
|
+
/* greek */
|
33
|
+
@font-face {
|
34
|
+
font-family: 'Regular';
|
35
|
+
font-style: normal;
|
36
|
+
font-weight: 400;
|
37
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
38
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVp0bf8pkAp6a.woff2)
|
39
|
+
format('woff2');
|
40
|
+
unicode-range: U + 0370-03ff;
|
41
|
+
}
|
42
|
+
/* vietnamese */
|
43
|
+
@font-face {
|
44
|
+
font-family: 'Regular';
|
45
|
+
font-style: normal;
|
46
|
+
font-weight: 400;
|
47
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
48
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFWp0bf8pkAp6a.woff2)
|
49
|
+
format('woff2');
|
50
|
+
unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
|
51
|
+
}
|
52
|
+
/* latin-ext */
|
53
|
+
@font-face {
|
54
|
+
font-family: 'Regular';
|
55
|
+
font-style: normal;
|
56
|
+
font-weight: 400;
|
57
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
58
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2)
|
59
|
+
format('woff2');
|
60
|
+
unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
|
61
|
+
U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
|
62
|
+
}
|
63
|
+
/* latin */
|
64
|
+
@font-face {
|
65
|
+
font-family: 'Regular';
|
66
|
+
font-style: normal;
|
67
|
+
font-weight: 400;
|
68
|
+
src: local('Open Sans Regular'), local('OpenSans-Regular'),
|
69
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2)
|
70
|
+
format('woff2');
|
71
|
+
unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
|
72
|
+
U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
|
73
|
+
U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
|
74
|
+
}
|
75
|
+
/* cyrillic-ext */
|
76
|
+
@font-face {
|
77
|
+
font-family: 'Semibold';
|
78
|
+
font-style: normal;
|
79
|
+
font-weight: 700;
|
80
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
81
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOX-hpKKSTj5PW.woff2)
|
82
|
+
format('woff2');
|
83
|
+
unicode-range: U + 0460-052f, U + 1c80-1c88, U + 20b4, U + 2de0-2dff,
|
84
|
+
U + A640-A69F, U + FE2E-FE2F;
|
85
|
+
}
|
86
|
+
/* cyrillic */
|
87
|
+
@font-face {
|
88
|
+
font-family: 'Semibold';
|
89
|
+
font-style: normal;
|
90
|
+
font-weight: 700;
|
91
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
92
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOVuhpKKSTj5PW.woff2)
|
93
|
+
format('woff2');
|
94
|
+
unicode-range: U + 0400-045f, U + 0490-0491, U + 04b0-04b1, U + 2116;
|
95
|
+
}
|
96
|
+
/* greek-ext */
|
97
|
+
@font-face {
|
98
|
+
font-family: 'Semibold';
|
99
|
+
font-style: normal;
|
100
|
+
font-weight: 700;
|
101
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
102
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXuhpKKSTj5PW.woff2)
|
103
|
+
format('woff2');
|
104
|
+
unicode-range: U + 1f00-1fff;
|
105
|
+
}
|
106
|
+
/* greek */
|
107
|
+
@font-face {
|
108
|
+
font-family: 'Semibold';
|
109
|
+
font-style: normal;
|
110
|
+
font-weight: 700;
|
111
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
112
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUehpKKSTj5PW.woff2)
|
113
|
+
format('woff2');
|
114
|
+
unicode-range: U + 0370-03ff;
|
115
|
+
}
|
116
|
+
/* vietnamese */
|
117
|
+
@font-face {
|
118
|
+
font-family: 'Semibold';
|
119
|
+
font-style: normal;
|
120
|
+
font-weight: 700;
|
121
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
122
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXehpKKSTj5PW.woff2)
|
123
|
+
format('woff2');
|
124
|
+
unicode-range: U + 0102-0103, U + 0110-0111, U + 1ea0-1ef9, U + 20ab;
|
125
|
+
}
|
126
|
+
/* latin-ext */
|
127
|
+
@font-face {
|
128
|
+
font-family: 'Semibold';
|
129
|
+
font-style: normal;
|
130
|
+
font-weight: 700;
|
131
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
132
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOXOhpKKSTj5PW.woff2)
|
133
|
+
format('woff2');
|
134
|
+
unicode-range: U + 0100-024f, U + 0259, U + 1-1eff, U + 2020, U + 20a0-20ab,
|
135
|
+
U + 20ad-20cf, U + 2113, U + 2c60-2c7f, U + A720-A7FF;
|
136
|
+
}
|
137
|
+
/* latin */
|
138
|
+
@font-face {
|
139
|
+
font-family: 'Semibold';
|
140
|
+
font-style: normal;
|
141
|
+
font-weight: 700;
|
142
|
+
src: local('Open Sans Bold'), local('OpenSans-Bold'),
|
143
|
+
url(https://fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN7rgOUuhpKKSTjw.woff2)
|
144
|
+
format('woff2');
|
145
|
+
unicode-range: U + 0000-00ff, U + 0131, U + 0152-0153, U + 02bb-02bc, U + 02c6,
|
146
|
+
U + 02da, U + 02dc, U + 2000-206f, U + 2074, U + 20ac, U + 2122, U + 2191,
|
147
|
+
U + 2193, U + 2212, U + 2215, U + FEFF, U + FFFD;
|
148
|
+
}
|
149
|
+
|
150
|
+
*,
|
151
|
+
:after,
|
152
|
+
:before {
|
153
|
+
margin: 0;
|
154
|
+
padding: 0;
|
155
|
+
outline: 0;
|
156
|
+
border: 0;
|
157
|
+
box-sizing: border-box;
|
158
|
+
-webkit-box-sizing: border-box;
|
159
|
+
-moz-box-sizing: border-box;
|
160
|
+
-ms-box-sizing: border-box;
|
161
|
+
}
|
162
|
+
a {
|
163
|
+
text-decoration: none;
|
164
|
+
}
|
165
|
+
|
166
|
+
/* FLex Assets*/
|
167
|
+
.dflex {
|
168
|
+
display: -webkit-box;
|
169
|
+
display: -ms-flexbox;
|
170
|
+
display: flex;
|
171
|
+
height: 100%;
|
172
|
+
width: 100%;
|
173
|
+
}
|
174
|
+
.flexwrap {
|
175
|
+
-ms-flex-wrap: wrap;
|
176
|
+
flex-wrap: wrap;
|
177
|
+
}
|
178
|
+
.flexcolumn {
|
179
|
+
-webkit-box-orient: vertical;
|
180
|
+
-webkit-box-direction: normal;
|
181
|
+
-webkit-flex-direction: column;
|
182
|
+
-ms-flex-direction: column;
|
183
|
+
flex-direction: column;
|
184
|
+
}
|
185
|
+
.flexrow {
|
186
|
+
-webkit-box-orient: horizontal;
|
187
|
+
-webkit-box-direction: normal;
|
188
|
+
-webkit-flex-direction: row;
|
189
|
+
-ms-flex-direction: row;
|
190
|
+
flex-direction: row;
|
191
|
+
}
|
192
|
+
.flexrowreverse {
|
193
|
+
-webkit-box-orient: horizontal;
|
194
|
+
-webkit-box-direction: reverse;
|
195
|
+
-webkit-flex-direction: row-reverse;
|
196
|
+
-ms-flex-direction: row-reverse;
|
197
|
+
flex-direction: row-reverse;
|
198
|
+
}
|
199
|
+
.flexcolumnreverse {
|
200
|
+
-webkit-box-orient: vertical;
|
201
|
+
-webkit-box-direction: reverse;
|
202
|
+
-webkit-flex-direction: column-reverse;
|
203
|
+
-ms-flex-direction: column-reverse;
|
204
|
+
flex-direction: column-reverse;
|
205
|
+
}
|
206
|
+
.flexgrow {
|
207
|
+
-webkit-box-flex: 1;
|
208
|
+
-ms-flex-positive: 1;
|
209
|
+
flex-grow: 1;
|
210
|
+
min-height: 0;
|
211
|
+
min-width: 0;
|
212
|
+
}
|
213
|
+
.flexshrink {
|
214
|
+
flex-shrink: 0;
|
215
|
+
-moz-flex-shrink: 0;
|
216
|
+
-webkit-flex-shrink: 0;
|
217
|
+
-ms-flex-shrink: 0;
|
218
|
+
}
|
219
|
+
.flexbasis {
|
220
|
+
flex-basis: 0%;
|
221
|
+
-webkit-flex-basis: 0%;
|
222
|
+
-moz-flex-basis: 0%;
|
223
|
+
-ms-flex-basis: 0%;
|
224
|
+
}
|
225
|
+
.alignVertical {
|
226
|
+
-webkit-box-align: center;
|
227
|
+
-ms-flex-align: center;
|
228
|
+
align-items: center;
|
229
|
+
}
|
230
|
+
.alignFstart {
|
231
|
+
-webkit-box-align: start;
|
232
|
+
-ms-flex-align: start;
|
233
|
+
align-items: flex-start;
|
234
|
+
}
|
235
|
+
.alignFend {
|
236
|
+
-webkit-box-align: end;
|
237
|
+
-ms-flex-align: end;
|
238
|
+
align-items: flex-end;
|
239
|
+
}
|
240
|
+
.alignHorizontal {
|
241
|
+
-webkit-box-pack: center;
|
242
|
+
-ms-flex-pack: center;
|
243
|
+
justify-content: center;
|
244
|
+
}
|
245
|
+
.dotted {
|
246
|
+
overflow: hidden;
|
247
|
+
white-space: nowrap;
|
248
|
+
word-wrap: normal;
|
249
|
+
text-overflow: ellipsis;
|
250
|
+
}
|
251
|
+
.offSelection {
|
252
|
+
-webkit-user-select: none;
|
253
|
+
-moz-user-select: none;
|
254
|
+
-ms-user-select: none;
|
255
|
+
user-select: none;
|
256
|
+
}
|
257
|
+
.scrollY {
|
258
|
+
overflow-y: auto;
|
259
|
+
overflow-x: hidden;
|
260
|
+
}
|
261
|
+
body {
|
262
|
+
background: #fff;
|
263
|
+
font-size: 14px;
|
264
|
+
overflow: hidden;
|
265
|
+
font-family: Regular;
|
266
|
+
}
|
267
|
+
|
268
|
+
main {
|
269
|
+
height: 100vh !important;
|
270
|
+
animation: slide 0.4s ease 0s normal;
|
271
|
+
}
|
272
|
+
@keyframes slide {
|
273
|
+
0% {
|
274
|
+
opacity: 0;
|
275
|
+
}
|
276
|
+
100% {
|
277
|
+
opacity: 1;
|
278
|
+
}
|
279
|
+
}
|
280
|
+
.menuBar {
|
281
|
+
width: 220px;
|
282
|
+
border-right: 1px solid #0e1c27;
|
283
|
+
transition: transform 0.3s;
|
284
|
+
background: #1d2b36;
|
285
|
+
}
|
286
|
+
.isMenuClose {
|
287
|
+
position: absolute;
|
288
|
+
top: 0;
|
289
|
+
left: 0;
|
290
|
+
bottom: 0;
|
291
|
+
transform: translateX(-110%);
|
292
|
+
transition: transform 0.3s;
|
293
|
+
}
|
294
|
+
|
295
|
+
.menuContainer {
|
296
|
+
padding-bottom: 5px;
|
297
|
+
}
|
298
|
+
.logoPart {
|
299
|
+
height: 50px;
|
300
|
+
border-bottom: 1px solid #16222b;
|
301
|
+
line-height: 50px;
|
302
|
+
padding-left: 5px;
|
303
|
+
justify-content: space-between;
|
304
|
+
}
|
305
|
+
.logoPart img {
|
306
|
+
max-width: 100%;
|
307
|
+
width: 130px;
|
308
|
+
vertical-align: middle;
|
309
|
+
}
|
310
|
+
.searchPart {
|
311
|
+
padding: 10px;
|
312
|
+
border-bottom: 1px solid #16222b;
|
313
|
+
}
|
314
|
+
.searchContainer {
|
315
|
+
position: relative;
|
316
|
+
}
|
317
|
+
.searchClose {
|
318
|
+
position: absolute;
|
319
|
+
top: 50%;
|
320
|
+
right: 5px;
|
321
|
+
width: 16px;
|
322
|
+
padding: 5px;
|
323
|
+
background: rgba(102, 106, 108, 0.57);
|
324
|
+
border-radius: 30px;
|
325
|
+
text-align: center;
|
326
|
+
height: 16px;
|
327
|
+
transform: translateY(-50%);
|
328
|
+
line-height: 0;
|
329
|
+
cursor: pointer;
|
330
|
+
}
|
331
|
+
.searchClose img {
|
332
|
+
width: 100%;
|
333
|
+
height: 100%;
|
334
|
+
}
|
335
|
+
.versionPart {
|
336
|
+
padding: 4px 4px 7px;
|
337
|
+
text-align: center;
|
338
|
+
background: #0c1115;
|
339
|
+
}
|
340
|
+
.versionPart span,
|
341
|
+
.tools span {
|
342
|
+
color: #fff;
|
343
|
+
font-size: 12px;
|
344
|
+
}
|
345
|
+
.tools img {
|
346
|
+
display: inline-block;
|
347
|
+
vertical-align: middle;
|
348
|
+
margin-right: 5px;
|
349
|
+
}
|
350
|
+
.tools {
|
351
|
+
padding: 4px 4px 7px;
|
352
|
+
background-color: #00995a;
|
353
|
+
cursor: pointer;
|
354
|
+
text-align: center;
|
355
|
+
}
|
356
|
+
.tools:hover {
|
357
|
+
background-color: #07ab67;
|
358
|
+
}
|
359
|
+
.sliderContainer {
|
360
|
+
position: relative;
|
361
|
+
}
|
362
|
+
.slider {
|
363
|
+
position: absolute;
|
364
|
+
top: 0;
|
365
|
+
left: 0;
|
366
|
+
right: 0;
|
367
|
+
bottom: 0;
|
368
|
+
overflow-y: auto;
|
369
|
+
background-color: #1d2b36;
|
370
|
+
transform: translateX(-100%);
|
371
|
+
transition: transform 0.3s;
|
372
|
+
}
|
373
|
+
.slider.sopen {
|
374
|
+
transform: translateX(0);
|
375
|
+
}
|
376
|
+
.sliderHeader {
|
377
|
+
position: relative;
|
378
|
+
background-color: #e79a2a;
|
379
|
+
text-align: left;
|
380
|
+
padding-left: 10px;
|
381
|
+
}
|
382
|
+
.sliderFormContainer {
|
383
|
+
padding: 20px 10px;
|
384
|
+
}
|
385
|
+
.sliderInputContainer {
|
386
|
+
margin-bottom: 12px;
|
387
|
+
}
|
388
|
+
.sliderInputTitle {
|
389
|
+
color: #999;
|
390
|
+
font-size: 13px;
|
391
|
+
letter-spacing: 0.1px;
|
392
|
+
padding-bottom: 4px;
|
393
|
+
display: block;
|
394
|
+
}
|
395
|
+
.sliderInput {
|
396
|
+
background: rgb(27, 27, 43, 0.8);
|
397
|
+
width: 100%;
|
398
|
+
border-radius: 3px;
|
399
|
+
padding: 7px 5px;
|
400
|
+
color: #fff;
|
401
|
+
font-size: 13px;
|
402
|
+
}
|
403
|
+
.sliderResult {
|
404
|
+
position: relative;
|
405
|
+
}
|
406
|
+
.copyResult {
|
407
|
+
position: absolute;
|
408
|
+
top: 0;
|
409
|
+
right: 0;
|
410
|
+
bottom: 0;
|
411
|
+
width: 30px;
|
412
|
+
text-align: center;
|
413
|
+
padding: 7px;
|
414
|
+
background: #01985b;
|
415
|
+
border-radius: 0 3px 3px 0;
|
416
|
+
cursor: pointer;
|
417
|
+
}
|
418
|
+
.copyResult:hover {
|
419
|
+
background: #03b7fe;
|
420
|
+
}
|
421
|
+
.copyResult img {
|
422
|
+
width: 100%;
|
423
|
+
height: 100%;
|
424
|
+
}
|
425
|
+
.copyTxtHiden {
|
426
|
+
height: 0px !important;
|
427
|
+
width: 0px !important;
|
428
|
+
font-size: 0px !important;
|
429
|
+
padding: 0px !important;
|
430
|
+
}
|
431
|
+
.mainMenu {
|
432
|
+
padding: 10px;
|
433
|
+
cursor: pointer;
|
434
|
+
font-size: 13px;
|
435
|
+
transition: all 0.3s;
|
436
|
+
}
|
437
|
+
.mainMenuActive,
|
438
|
+
.mainMenu:hover {
|
439
|
+
background-color: #162029;
|
440
|
+
}
|
441
|
+
.mainMenuActive .mainMenuArrow {
|
442
|
+
transform: rotate(90deg);
|
443
|
+
}
|
444
|
+
.mainMenutitle {
|
445
|
+
max-width: 100%;
|
446
|
+
color: #fff;
|
447
|
+
text-transform: capitalize;
|
448
|
+
}
|
449
|
+
.mainMenuCount {
|
450
|
+
padding: 3px 5px;
|
451
|
+
background: #008e4f;
|
452
|
+
border-radius: 15px;
|
453
|
+
font-size: 9px;
|
454
|
+
color: #fff;
|
455
|
+
margin-right: 10px;
|
456
|
+
margin-left: 5px;
|
457
|
+
min-width: 18px;
|
458
|
+
text-align: center;
|
459
|
+
}
|
460
|
+
.mainMenuArrow {
|
461
|
+
transition: all 0.3s;
|
462
|
+
height: 12px;
|
463
|
+
width: 12px;
|
464
|
+
}
|
465
|
+
.menuHideLeft {
|
466
|
+
width: 220px;
|
467
|
+
padding-bottom: 20px;
|
468
|
+
border-right: 1px solid #dbd8d8;
|
469
|
+
transition: margin-left 0.5s ease;
|
470
|
+
background: #f4f6f9;
|
471
|
+
display: none;
|
472
|
+
}
|
473
|
+
.listIcon {
|
474
|
+
width: 15px;
|
475
|
+
margin-right: 8px;
|
476
|
+
height: 15px;
|
477
|
+
}
|
478
|
+
.listItem,
|
479
|
+
.componentMain,
|
480
|
+
.componentDocs {
|
481
|
+
padding: 7px 5px 7px 10px;
|
482
|
+
transition: all 0.3s;
|
483
|
+
cursor: pointer;
|
484
|
+
}
|
485
|
+
.listItem path {
|
486
|
+
fill: #fff;
|
487
|
+
}
|
488
|
+
.listTitle {
|
489
|
+
color: #fff;
|
490
|
+
font-size: 12px;
|
491
|
+
text-transform: capitalize;
|
492
|
+
}
|
493
|
+
.listCount {
|
494
|
+
padding: 3px 5px;
|
495
|
+
background: #0072b0;
|
496
|
+
border-radius: 15px;
|
497
|
+
font-size: 9px;
|
498
|
+
color: #fff;
|
499
|
+
margin-left: 5px;
|
500
|
+
font-style: initial;
|
501
|
+
min-width: 18px;
|
502
|
+
text-align: center;
|
503
|
+
}
|
504
|
+
.listItem:hover,
|
505
|
+
.listItem.selected {
|
506
|
+
background-color: #0c1115;
|
507
|
+
}
|
508
|
+
.componentMain:hover,
|
509
|
+
.componentDocs:hover {
|
510
|
+
background-color: #162029;
|
511
|
+
}
|
512
|
+
.componentDocs {
|
513
|
+
padding-left: 35px;
|
514
|
+
}
|
515
|
+
.componentDocs > a.active,
|
516
|
+
.componentMain > a.active {
|
517
|
+
position: relative;
|
518
|
+
}
|
519
|
+
.componentDocs > a.active::after,
|
520
|
+
.componentMain > a.active::after {
|
521
|
+
content: '';
|
522
|
+
position: absolute;
|
523
|
+
top: 0px;
|
524
|
+
height: 15px;
|
525
|
+
width: 15px;
|
526
|
+
background-color: #008f4c;
|
527
|
+
border-radius: 1px;
|
528
|
+
left: -43px;
|
529
|
+
transform: rotate(45deg);
|
530
|
+
}
|
531
|
+
.componentMain > a.active::after {
|
532
|
+
left: -28px;
|
533
|
+
}
|
534
|
+
.componentMain {
|
535
|
+
padding-left: 20px;
|
536
|
+
}
|
537
|
+
.subCount {
|
538
|
+
background-color: #e03332;
|
539
|
+
}
|
540
|
+
.activeComponent {
|
541
|
+
position: relative;
|
542
|
+
}
|
543
|
+
.activeComponent::after {
|
544
|
+
position: absolute;
|
545
|
+
content: '';
|
546
|
+
top: 0;
|
547
|
+
bottom: 0;
|
548
|
+
left: 0;
|
549
|
+
width: 2px;
|
550
|
+
background-color: #008f4c;
|
551
|
+
}
|
552
|
+
|
553
|
+
section {
|
554
|
+
border: 15px solid #333;
|
555
|
+
position: relative;
|
556
|
+
border-radius: 16px;
|
557
|
+
transition:width 0.2ms;
|
558
|
+
}
|
559
|
+
.iframe {
|
560
|
+
position: absolute;
|
561
|
+
top: 0;
|
562
|
+
left: 0;
|
563
|
+
right: 0;
|
564
|
+
bottom: 0;
|
565
|
+
height: 100%;
|
566
|
+
width: 100%;
|
567
|
+
overflow: auto;
|
568
|
+
z-index: 1;
|
569
|
+
background-color: #fff;
|
570
|
+
}
|
571
|
+
|
572
|
+
.inputSearch {
|
573
|
+
width: 100%;
|
574
|
+
background: #0c1115;
|
575
|
+
color: #fff;
|
576
|
+
font-size: 11px;
|
577
|
+
border-radius: 15px;
|
578
|
+
padding: 6px 25px 6px 15px;
|
579
|
+
}
|
580
|
+
|
581
|
+
.cheader {
|
582
|
+
border-bottom: 1px solid #dad8d8;
|
583
|
+
padding: 6px 25px;
|
584
|
+
}
|
585
|
+
.ccontent {
|
586
|
+
background-color: #fff;
|
587
|
+
padding: 5px 20px 0px 20px;
|
588
|
+
overflow: auto;
|
589
|
+
}
|
590
|
+
|
591
|
+
.cheadertitle {
|
592
|
+
font-family: Semibold;
|
593
|
+
font-size: 21px;
|
594
|
+
margin-right: 30px;
|
595
|
+
color: #0c1015;
|
596
|
+
}
|
597
|
+
.responsive {
|
598
|
+
height: 30px
|
599
|
+
}
|
600
|
+
.responsiveOption {
|
601
|
+
width: 30px;
|
602
|
+
height: 30px;
|
603
|
+
display: inline-block;
|
604
|
+
position: relative;
|
605
|
+
vertical-align: middle;
|
606
|
+
text-align: center;
|
607
|
+
line-height: 27px;
|
608
|
+
background: #5c5e61;
|
609
|
+
border-radius: 50%;
|
610
|
+
color:#fff;
|
611
|
+
margin: 0 5px;
|
612
|
+
padding: 5px;
|
613
|
+
cursor: pointer;
|
614
|
+
transition: all 0.3s;
|
615
|
+
font-size: 10px;
|
616
|
+
}
|
617
|
+
.section .responsiveOption{
|
618
|
+
margin: 0px 5px 5px;
|
619
|
+
}
|
620
|
+
.responsiveOption:hover,.activeOption {
|
621
|
+
background-color: #00995a;
|
622
|
+
}
|
623
|
+
.activeOption:hover{
|
624
|
+
background-color: #d0263a;
|
625
|
+
}
|
626
|
+
.responsiveOption svg {
|
627
|
+
width: 15px;
|
628
|
+
height: 15px;
|
629
|
+
|
630
|
+
}
|
631
|
+
.responsiveOption svg path {
|
632
|
+
fill: #fff;
|
633
|
+
}
|
634
|
+
.propsTable {
|
635
|
+
margin: 40px auto;
|
636
|
+
border: 1px solid #ebedf0;
|
637
|
+
font-size: 14px;
|
638
|
+
line-height: 1.5;
|
639
|
+
empty-cells: show;
|
640
|
+
}
|
641
|
+
.tableHeader {
|
642
|
+
display: flex;
|
643
|
+
flex-direction: row;
|
644
|
+
}
|
645
|
+
.brR {
|
646
|
+
white-space: nowrap;
|
647
|
+
color: #5c6b77;
|
648
|
+
font-weight: 500;
|
649
|
+
background: rgba(0, 0, 0, 0.02);
|
650
|
+
padding: 16px 24px;
|
651
|
+
text-align: left;
|
652
|
+
}
|
653
|
+
.tableHeaderNB {
|
654
|
+
display: flex;
|
655
|
+
flex-direction: row;
|
656
|
+
border-bottom: 1px solid transparent;
|
657
|
+
}
|
658
|
+
.tableHeader span,
|
659
|
+
.tableHeaderNB span {
|
660
|
+
flex: 1;
|
661
|
+
overflow: hidden;
|
662
|
+
text-overflow: ellipsis;
|
663
|
+
word-wrap: normal;
|
664
|
+
word-break: break-word;
|
665
|
+
border-right: 1px solid #ebedf0;
|
666
|
+
padding: 16px 24px;
|
667
|
+
text-align: left;
|
668
|
+
border-bottom: 1px solid #ebedf0;
|
669
|
+
}
|
670
|
+
.tableHeaderNB span {
|
671
|
+
border-bottom-width: 0;
|
672
|
+
}
|
673
|
+
.bn {
|
674
|
+
border-right-width: 0;
|
675
|
+
}
|
676
|
+
.tableHeader .defaultProps,
|
677
|
+
.tableHeaderNB .defaultProps {
|
678
|
+
overflow: initial;
|
679
|
+
white-space: normal;
|
680
|
+
text-overflow: initial;
|
681
|
+
word-break: break-all;
|
682
|
+
}
|
683
|
+
.srcCode {
|
684
|
+
color: #2d2929;
|
685
|
+
width: 100%;
|
686
|
+
height: 100%;
|
687
|
+
overflow: auto;
|
688
|
+
padding: 20px 0;
|
689
|
+
display: block;
|
690
|
+
}
|
691
|
+
.referContainer {
|
692
|
+
padding: 20px 0;
|
693
|
+
color:#fff;
|
694
|
+
background-color: #2D313F;
|
695
|
+
border-radius: 5px;
|
696
|
+
height: 100%;
|
697
|
+
}
|
698
|
+
.refsBy {
|
699
|
+
padding: 10px;
|
700
|
+
font-size: 17px;
|
701
|
+
color: inherit;
|
702
|
+
}
|
703
|
+
.refsLin {
|
704
|
+
padding: 5px;
|
705
|
+
font-size: 15px;
|
706
|
+
color: inherit;
|
707
|
+
list-style-position: inside;
|
708
|
+
margin-left: 30px;
|
709
|
+
}
|
710
|
+
.refsLin a {
|
711
|
+
color: inherit;
|
712
|
+
}
|
713
|
+
.psdContainer {
|
714
|
+
width: 24%;
|
715
|
+
border: 1px solid #1c2b36;
|
716
|
+
border-radius: 5px;
|
717
|
+
padding: 5px;
|
718
|
+
margin-right: 10px;
|
719
|
+
margin-bottom: 10px;
|
720
|
+
display: inline-block;
|
721
|
+
vertical-align: top;
|
722
|
+
}
|
723
|
+
.imageContainer {
|
724
|
+
min-height: 150px;
|
725
|
+
text-align: center;
|
726
|
+
}
|
727
|
+
.psdImage {
|
728
|
+
max-width: 100%;
|
729
|
+
max-height: 150px;
|
730
|
+
}
|
731
|
+
.psdLink {
|
732
|
+
color: #fff;
|
733
|
+
background: #1c2b36;
|
734
|
+
padding: 5px;
|
735
|
+
display: block;
|
736
|
+
text-align: center;
|
737
|
+
border-radius: 5px;
|
738
|
+
cursor: pointer;
|
739
|
+
margin-bottom: 3px;
|
740
|
+
border: 1px solid transparent;
|
741
|
+
}
|
742
|
+
.psdLink:hover {
|
743
|
+
background: #fff;
|
744
|
+
color: #1c2b36;
|
745
|
+
border-color: #1c2b36;
|
746
|
+
}
|
747
|
+
.infoTabs span {
|
748
|
+
padding: 0px 10px;
|
749
|
+
font-size: 14px;
|
750
|
+
line-height: 30px;
|
751
|
+
cursor: pointer;
|
752
|
+
margin-right: 10px;
|
753
|
+
border-radius: 2px;
|
754
|
+
transition: all 0.1s;
|
755
|
+
}
|
756
|
+
.infoactive,
|
757
|
+
.infoTabs span:hover {
|
758
|
+
background: #3cc1a2;
|
759
|
+
color: #fff;
|
760
|
+
}
|
761
|
+
.showToggleLeft {
|
762
|
+
background-color: #fff;
|
763
|
+
z-index: 5;
|
764
|
+
position: absolute;
|
765
|
+
bottom: 15px;
|
766
|
+
left: 20px;
|
767
|
+
border-radius: 50%;
|
768
|
+
transition: all 0.5s ease;
|
769
|
+
transform: scale(1);
|
770
|
+
cursor: pointer;
|
771
|
+
height: 35px;
|
772
|
+
width: 35px;
|
773
|
+
border: 1px solid #1e2633;
|
774
|
+
align-items: center;
|
775
|
+
justify-content: center;
|
776
|
+
display: none;
|
777
|
+
}
|
778
|
+
.showToggleLeft img {
|
779
|
+
width: 28px;
|
780
|
+
height: 28px;
|
781
|
+
padding: 7px;
|
782
|
+
transform: rotateY(180deg);
|
783
|
+
}
|
784
|
+
.bn {
|
785
|
+
border: none !important;
|
786
|
+
}
|
787
|
+
#ifm {
|
788
|
+
outline: none;
|
789
|
+
border: none;
|
790
|
+
overflow: hidden;
|
791
|
+
z-index: 1;
|
792
|
+
position: fixed;
|
793
|
+
}
|
794
|
+
.iframeCentering {
|
795
|
+
height: 98vh;
|
796
|
+
width: 100vw;
|
797
|
+
display: flex;
|
798
|
+
background: #fff;
|
799
|
+
justify-content: center;
|
800
|
+
align-items: center;
|
801
|
+
position: relative;
|
802
|
+
z-index: 1;
|
803
|
+
}
|
804
|
+
.posAb {
|
805
|
+
position: absolute;
|
806
|
+
z-index: 0;
|
807
|
+
animation: jump 1.5s ease 0s infinite normal;
|
808
|
+
font-size: 24px;
|
809
|
+
color: black;
|
810
|
+
}
|
811
|
+
@keyframes jump {
|
812
|
+
0% {
|
813
|
+
transform: translateY(0);
|
814
|
+
}
|
815
|
+
20% {
|
816
|
+
transform: translateY(0);
|
817
|
+
}
|
818
|
+
40% {
|
819
|
+
transform: translateY(-30px);
|
820
|
+
}
|
821
|
+
50% {
|
822
|
+
transform: translateY(0);
|
823
|
+
}
|
824
|
+
60% {
|
825
|
+
transform: translateY(-15px);
|
826
|
+
}
|
827
|
+
80% {
|
828
|
+
transform: translateY(0);
|
829
|
+
}
|
830
|
+
100% {
|
831
|
+
transform: translateY(0);
|
832
|
+
}
|
833
|
+
}
|
834
|
+
.logo {
|
835
|
+
background-image: url('desklogo.png');
|
836
|
+
height: 40px;
|
837
|
+
width: 130px;
|
838
|
+
background-size: 100% 100%;
|
839
|
+
display: inline-block;
|
840
|
+
vertical-align: middle;
|
841
|
+
margin-top: 4px;
|
842
|
+
margin-left: 10px;
|
843
|
+
}
|
844
|
+
@media only screen and (max-width: 980px) {
|
845
|
+
.menuBar {
|
846
|
+
position: absolute;
|
847
|
+
top: 0;
|
848
|
+
left: 0;
|
849
|
+
bottom: 0;
|
850
|
+
transform: translate(-110%);
|
851
|
+
z-index: 2;
|
852
|
+
}
|
853
|
+
.isMenuOpen {
|
854
|
+
transform: translateX(0);
|
855
|
+
}
|
856
|
+
.showToggleLeft {
|
857
|
+
display: flex;
|
858
|
+
}
|
859
|
+
}
|
860
|
+
|
861
|
+
.iframeSection {
|
862
|
+
position: relative;
|
863
|
+
margin: 0 auto;
|
864
|
+
}
|
865
|
+
.loadingText {
|
866
|
+
position: absolute;
|
867
|
+
top: 50%;
|
868
|
+
left: 50%;
|
869
|
+
transform: translate(-50%, -50%);
|
870
|
+
display: inline-block;
|
871
|
+
z-index: 3;
|
872
|
+
display: none;
|
873
|
+
}
|
874
|
+
.lds-ripple {
|
875
|
+
display: inline-block;
|
876
|
+
position: relative;
|
877
|
+
width: 64px;
|
878
|
+
height: 64px;
|
879
|
+
}
|
880
|
+
.lds-ripple div {
|
881
|
+
position: absolute;
|
882
|
+
border: 4px solid #3a3a3a;
|
883
|
+
opacity: 1;
|
884
|
+
border-radius: 50%;
|
885
|
+
top: 0;
|
886
|
+
left: 0;
|
887
|
+
right: 0;
|
888
|
+
bottom: 0;
|
889
|
+
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
|
890
|
+
}
|
891
|
+
.lds-ripple div:nth-child(2) {
|
892
|
+
animation-delay: -0.5s;
|
893
|
+
}
|
894
|
+
@keyframes lds-ripple {
|
895
|
+
0% {
|
896
|
+
transform: scale(0);
|
897
|
+
opacity: 1;
|
898
|
+
}
|
899
|
+
100% {
|
900
|
+
transform: scale(1.5);
|
901
|
+
opacity: 0;
|
902
|
+
}
|
903
|
+
}
|
904
|
+
.hide {
|
905
|
+
display: none;
|
906
|
+
}
|
907
|
+
.compListItem{
|
908
|
+
padding: 5px;
|
909
|
+
font-size: 15px;
|
910
|
+
list-style-position: inside;
|
911
|
+
margin-left: 30px;
|
912
|
+
}
|
913
|
+
.compListTitle{
|
914
|
+
padding: 10px;
|
915
|
+
font-size: 17px;
|
916
|
+
flex:1;
|
917
|
+
max-width: 90%;
|
918
|
+
display: block;
|
919
|
+
}
|
920
|
+
.toolOptions{
|
921
|
+
background: #333;
|
922
|
+
border-radius: 12px;
|
923
|
+
margin: 5px 0;
|
924
|
+
}
|
925
|
+
.toolarea{
|
926
|
+
overflow: auto;
|
927
|
+
}
|
928
|
+
.range{
|
929
|
+
width: 500px;
|
930
|
+
padding: 15px 0;
|
931
|
+
position: relative;
|
932
|
+
margin-left: 20px;
|
933
|
+
flex: .5;
|
934
|
+
}
|
935
|
+
.rangeSlider{
|
936
|
+
min-width: 200px;
|
937
|
+
}
|
938
|
+
.tooltip,.window {
|
939
|
+
padding: 4px;
|
940
|
+
font-size: 12px;
|
941
|
+
color: #fff;
|
942
|
+
background-color: #5c5e61;
|
943
|
+
white-space: nowrap;
|
944
|
+
border-radius: 5px;
|
945
|
+
margin: 0px 6px;
|
946
|
+
}
|
947
|
+
.tooltip{
|
948
|
+
min-width:80px;
|
949
|
+
text-align: center;
|
950
|
+
}
|
951
|
+
.tooltipVal{
|
952
|
+
font-size: 12px;
|
953
|
+
color:#fff;
|
954
|
+
padding: 4px;
|
955
|
+
}
|
956
|
+
.rangeInput {
|
957
|
+
-webkit-appearance: none;
|
958
|
+
display: block;
|
959
|
+
width: 100%;
|
960
|
+
min-width: 100px;
|
961
|
+
height: 8px;
|
962
|
+
padding: 0;
|
963
|
+
border-radius: 4px;
|
964
|
+
background: #dbdbdb;
|
965
|
+
box-sizing: content-box;
|
966
|
+
}
|
967
|
+
.rangeInput:focus {
|
968
|
+
outline: none;
|
969
|
+
}
|
970
|
+
.rangeInput::-webkit-slider-thumb {
|
971
|
+
-webkit-appearance: none;
|
972
|
+
width: 15px;
|
973
|
+
height: 20px;
|
974
|
+
border: 1px solid #03613b;
|
975
|
+
border-radius: 5px;
|
976
|
+
background: #00995a;
|
977
|
+
}
|
978
|
+
.transform{
|
979
|
+
transform: rotateY(180deg);
|
980
|
+
}
|
981
|
+
.home{
|
982
|
+
display: block;
|
983
|
+
padding: 2px 15px 2px 0px;
|
984
|
+
cursor: pointer;
|
985
|
+
}
|
986
|
+
.fullScreen svg{
|
987
|
+
width: 18px;
|
988
|
+
height: 18px;
|
989
|
+
}
|
990
|
+
.textSize{
|
991
|
+
line-height: 23px;
|
992
|
+
}
|
993
|
+
.textSize svg{
|
994
|
+
width: 12px;
|
995
|
+
height: 12px;
|
996
|
+
}
|
997
|
+
.svg{
|
998
|
+
width: inherit;
|
999
|
+
height: inherit;
|
1000
|
+
fill: #fff;
|
1001
|
+
}
|
1002
|
+
.homeIcon{
|
1003
|
+
width: 20px;
|
1004
|
+
height: 20px;
|
1005
|
+
}
|
1006
|
+
.smileIcon{
|
1007
|
+
width: 60px;
|
1008
|
+
margin-bottom: 30px
|
1009
|
+
}
|
1010
|
+
.authorview{
|
1011
|
+
height: 100%;
|
1012
|
+
overflow: auto;
|
1013
|
+
}
|
1014
|
+
#react{
|
1015
|
+
position: fixed;
|
1016
|
+
top: 0;
|
1017
|
+
z-index: 1;
|
1018
|
+
left: 0;
|
1019
|
+
right: 0;
|
1020
|
+
bottom: 0;
|
1021
|
+
background:#fff;
|
1022
|
+
}
|