cronapp-framework-mobile-js 2.9.6-SP.3 → 2.9.6-SP.5
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.
|
@@ -0,0 +1,1075 @@
|
|
|
1
|
+
/* Fonts */
|
|
2
|
+
@import '../../../fonts/raleway/raleway.css';
|
|
3
|
+
|
|
4
|
+
/* ==== VARIABLES ==== */
|
|
5
|
+
:root {
|
|
6
|
+
|
|
7
|
+
/* Font */
|
|
8
|
+
--fontFamily: "Raleway", "Arial", sans-serif;
|
|
9
|
+
--textColor: #f0f0f0;
|
|
10
|
+
--backgroundColor: #090f13;
|
|
11
|
+
|
|
12
|
+
--textSmallSize: 10px;
|
|
13
|
+
--textNormalSize: 12px;
|
|
14
|
+
--textMediumSize: 16px;
|
|
15
|
+
--textBigSize: 22px;
|
|
16
|
+
--textExtraBigSize: 28px;
|
|
17
|
+
--textFullSize: 34px;
|
|
18
|
+
|
|
19
|
+
--textColor10: #fbfbfb;
|
|
20
|
+
--textColor20: #f7f7f7;
|
|
21
|
+
--textColor30: #f4f4f4;
|
|
22
|
+
--textColor40: #f0f0f0;
|
|
23
|
+
--textColor50: #d2d2d2;
|
|
24
|
+
--textColor60: #5F5F5F;
|
|
25
|
+
--textColor70: #434343;
|
|
26
|
+
|
|
27
|
+
/* Icon Size */
|
|
28
|
+
--iconSizeDefault: 28px;
|
|
29
|
+
--iconSizeSmall: calc(var(--iconSizeDefault) - 3px);
|
|
30
|
+
--iconSizeBig: calc(var(--iconSizeDefault) + 3px);
|
|
31
|
+
--iconSizeExtraBig: calc(var(--iconSizeDefault) + 6px);
|
|
32
|
+
|
|
33
|
+
/* Menus - Sizes and Distances */
|
|
34
|
+
--menuVerticalWidth: 270px;
|
|
35
|
+
--menuSideSize: 20px;
|
|
36
|
+
--menuItemBarSize: 6px;
|
|
37
|
+
--menuElementOverallPadding: 10px;
|
|
38
|
+
--menuItemPaddingSize: calc(var(--menuElementOverallPadding) + 5px);
|
|
39
|
+
--menuItemIconWidth: 25px;
|
|
40
|
+
|
|
41
|
+
/* Background */
|
|
42
|
+
--backgroundColor10: #CED0D2;
|
|
43
|
+
--backgroundColor20: #a3a3a3;
|
|
44
|
+
--backgroundColor30: #546270;
|
|
45
|
+
--backgroundColor40: #090f13;
|
|
46
|
+
--backgroundColor50: #080d11;
|
|
47
|
+
--backgroundColor60: #070b0e;
|
|
48
|
+
--backgroundColor70: #05080a;
|
|
49
|
+
|
|
50
|
+
/* Background Login */
|
|
51
|
+
--backgroundLogin10: rgba(177, 186, 196, 1);
|
|
52
|
+
--backgroundLogin20: rgba(147, 161, 174, 1);
|
|
53
|
+
--backgroundLogin30: rgba(118, 135, 152, 1);
|
|
54
|
+
--backgroundLogin40: rgba(84, 92, 112, 1);
|
|
55
|
+
--backgroundLogin50: rgba(72, 84, 96, 1);
|
|
56
|
+
--backgroundLogin60: rgba(29, 33, 38, 1);
|
|
57
|
+
--backgroundLogin70: rgba(15, 18, 20, 1);
|
|
58
|
+
|
|
59
|
+
/* Distances */
|
|
60
|
+
--distanceNone: 0;
|
|
61
|
+
--distanceSmallest: 5px;
|
|
62
|
+
--distanceExtraSmall: 10px;
|
|
63
|
+
--distanceSmall: 15px;
|
|
64
|
+
--distanceMedium: 20px;
|
|
65
|
+
--distanceBig: 30px;
|
|
66
|
+
--distanceGiant: 40px;
|
|
67
|
+
--distanceTitan: 60px;
|
|
68
|
+
|
|
69
|
+
/* Border Radius */
|
|
70
|
+
--borderRadiusNone: 0;
|
|
71
|
+
--borderRadiusSmallest: 2px;
|
|
72
|
+
--borderRadiusExtraSmall: 10px;
|
|
73
|
+
--borderRadiusSmall: 15px;
|
|
74
|
+
--borderRadiusBig: 30px;
|
|
75
|
+
--borderRadiusGiant: 40px;
|
|
76
|
+
--borderRadiusTitan: 60px;
|
|
77
|
+
--borderRadiusFull: 99999px;
|
|
78
|
+
|
|
79
|
+
/* Color - Theme default */
|
|
80
|
+
--colorDefault10: #d6d7d7;
|
|
81
|
+
--colorDefault20: #b0b1b1;
|
|
82
|
+
--colorDefault30: #434343;
|
|
83
|
+
--colorDefault40: #262c32;
|
|
84
|
+
--colorDefault50: #252E36;
|
|
85
|
+
--colorDefault60: #1c2025;
|
|
86
|
+
--colorDefault70: #15181b;
|
|
87
|
+
--textColorDefault10: #434343;
|
|
88
|
+
--textColorDefault20: #b0b0b0;
|
|
89
|
+
--textColorDefault30: #d2d2d2;
|
|
90
|
+
--textColorDefault40: #f0f0f0;
|
|
91
|
+
--textColorDefault50: #f4f4f4;
|
|
92
|
+
--textColorDefault60: #f7f7f7;
|
|
93
|
+
--textColorDefault70: #fbfbfb;
|
|
94
|
+
|
|
95
|
+
/* Color - Primary (web) - Positive (mobile) */
|
|
96
|
+
--colorPrimary10: #d6e0f5;
|
|
97
|
+
--colorPrimary20: #afc5ed;
|
|
98
|
+
--colorPrimary30: #7da6e5;
|
|
99
|
+
--colorPrimary40: #197fdd;
|
|
100
|
+
--colorPrimary50: #166fc2;
|
|
101
|
+
--colorPrimary60: #125da2;
|
|
102
|
+
--colorPrimary70: #09467F;
|
|
103
|
+
--textColorPrimary10: #838383;
|
|
104
|
+
--textColorPrimary20: #b0b0b0;
|
|
105
|
+
--textColorPrimary30: #d2d2d2;
|
|
106
|
+
--textColorPrimary40: #f0f0f0;
|
|
107
|
+
--textColorPrimary50: #f4f4f4;
|
|
108
|
+
--textColorPrimary60: #f7f7f7;
|
|
109
|
+
--textColorPrimary70: #fbfbfb;
|
|
110
|
+
|
|
111
|
+
/* Color - Success (web) - Balanced (mobile) */
|
|
112
|
+
--colorSuccess10: #d7fed7;
|
|
113
|
+
--colorSuccess20: #b1fdb0;
|
|
114
|
+
--colorSuccess30: #82fd81;
|
|
115
|
+
--colorSuccess40: #2ffc2b;
|
|
116
|
+
--colorSuccess50: #29dd26;
|
|
117
|
+
--colorSuccess60: #22b920;
|
|
118
|
+
--colorSuccess70: #108D0D;
|
|
119
|
+
--textColorSuccess10: #838383;
|
|
120
|
+
--textColorSuccess20: #b0b0b0;
|
|
121
|
+
--textColorSuccess30: #d2d2d2;
|
|
122
|
+
--textColorSuccess40: #f0f0f0;
|
|
123
|
+
--textColorSuccess50: #f4f4f4;
|
|
124
|
+
--textColorSuccess60: #f7f7f7;
|
|
125
|
+
--textColorSuccess70: #fbfbfb;
|
|
126
|
+
|
|
127
|
+
/* Color - Warning (web) - energized (mobile) */
|
|
128
|
+
--colorWarning10: #fce3d6;
|
|
129
|
+
--colorWarning20: #facaae;
|
|
130
|
+
--colorWarning30: #f7ae7c;
|
|
131
|
+
--colorWarning40: #f58d11;
|
|
132
|
+
--colorWarning50: #d77b0f;
|
|
133
|
+
--colorWarning60: #B46406;
|
|
134
|
+
--colorWarning70: #864d09;
|
|
135
|
+
--textColorWarning10: #838383;
|
|
136
|
+
--textColorWarning20: #b0b0b0;
|
|
137
|
+
--textColorWarning30: #d2d2d2;
|
|
138
|
+
--textColorWarning40: #f0f0f0;
|
|
139
|
+
--textColorWarning50: #f4f4f4;
|
|
140
|
+
--textColorWarning60: #f7f7f7;
|
|
141
|
+
--textColorWarning70: #fbfbfb;
|
|
142
|
+
|
|
143
|
+
/* Color - Danger (web) - assertive (mobile) */
|
|
144
|
+
--colorDanger10: #fbd8d8;
|
|
145
|
+
--colorDanger20: #f7b3b3;
|
|
146
|
+
--colorDanger30: #f48585;
|
|
147
|
+
--colorDanger40: #f03a3a;
|
|
148
|
+
--colorDanger50: #d23333;
|
|
149
|
+
--colorDanger60: #7E2121;
|
|
150
|
+
--colorDanger70: #832020;
|
|
151
|
+
--textColorDanger10: #838383;
|
|
152
|
+
--textColorDanger20: #b0b0b0;
|
|
153
|
+
--textColorDanger30: #d2d2d2;
|
|
154
|
+
--textColorDanger40: #f0f0f0;
|
|
155
|
+
--textColorDanger50: #f4f4f4;
|
|
156
|
+
--textColorDanger60: #f7f7f7;
|
|
157
|
+
--textColorDanger70: #fbfbfb;
|
|
158
|
+
|
|
159
|
+
/* Color - Royal (mobile) */
|
|
160
|
+
--colorRoyal10: #d5d7dc;
|
|
161
|
+
--colorRoyal20: #5487bd;
|
|
162
|
+
--colorRoyal30: #394C5E;
|
|
163
|
+
--colorRoyal40: #0e3760;
|
|
164
|
+
--colorRoyal50: #0c3054;
|
|
165
|
+
--colorRoyal60: #0a2846;
|
|
166
|
+
--colorRoyal70: #1A2E43;
|
|
167
|
+
--textColorRoyal10: #838383;
|
|
168
|
+
--textColorRoyal20: #b0b0b0;
|
|
169
|
+
--textColorRoyal30: #d2d2d2;
|
|
170
|
+
--textColorRoyal40: #f0f0f0;
|
|
171
|
+
--textColorRoyal50: #f4f4f4;
|
|
172
|
+
--textColorRoyal60: #f7f7f7;
|
|
173
|
+
--textColorRoyal70: #fbfbfb;
|
|
174
|
+
|
|
175
|
+
/* Color - Calm (mobile) */
|
|
176
|
+
--colorCalm10: #cefffd;
|
|
177
|
+
--colorCalm20: #68f8f1;
|
|
178
|
+
--colorCalm30: #4eebe3;
|
|
179
|
+
--colorCalm40: #44e1d8;
|
|
180
|
+
--colorCalm50: #00ABC2;
|
|
181
|
+
--colorCalm60: #169F97;
|
|
182
|
+
--colorCalm70: #077988;
|
|
183
|
+
--textColorCalm10: #838383;
|
|
184
|
+
--textColorCalm20: #b0b0b0;
|
|
185
|
+
--textColorCalm30: #d2d2d2;
|
|
186
|
+
--textColorCalm40: #f0f0f0;
|
|
187
|
+
--textColorCalm50: #f4f4f4;
|
|
188
|
+
--textColorCalm60: #f7f7f7;
|
|
189
|
+
--textColorCalm70: #fbfbfb;
|
|
190
|
+
|
|
191
|
+
/* Color - Light (mobile) */
|
|
192
|
+
--colorLight10: #e3e7eb;
|
|
193
|
+
--colorLight20: #cad1d9;
|
|
194
|
+
--colorLight30: #aebbc7;
|
|
195
|
+
--colorLight40: #8da0b2;
|
|
196
|
+
--colorLight50: #7b8c9c;
|
|
197
|
+
--colorLight60: #303B46;
|
|
198
|
+
--colorLight70: #4d5861;
|
|
199
|
+
--textColorLight10: #838383;
|
|
200
|
+
--textColorLight20: #677582;
|
|
201
|
+
--textColorLight30: #d2d2d2;
|
|
202
|
+
--textColorLight40: #f0f0f0;
|
|
203
|
+
--textColorLight50: #f4f4f4;
|
|
204
|
+
--textColorLight60: #f7f7f7;
|
|
205
|
+
--textColorLight70: #fbfbfb;
|
|
206
|
+
/* Color - Stable (mobile) */
|
|
207
|
+
--colorStable10: #e1e1e1;
|
|
208
|
+
--colorStable20: #c6c6c6;
|
|
209
|
+
--colorStable30: #a7a7a7;
|
|
210
|
+
--colorStable40: #818181;
|
|
211
|
+
--colorStable50: #4D4D4D;
|
|
212
|
+
--colorStable60: #5f5f5f;
|
|
213
|
+
--colorStable70: #3e4042;
|
|
214
|
+
--textColorStable10: #838383;
|
|
215
|
+
--textColorStable20: #b0b0b0;
|
|
216
|
+
--textColorStable30: #d2d2d2;
|
|
217
|
+
--textColorStable40: #f0f0f0;
|
|
218
|
+
--textColorStable50: #f4f4f4;
|
|
219
|
+
--textColorStable60: #f7f7f7;
|
|
220
|
+
--textColorStable70: #fbfbfb;
|
|
221
|
+
|
|
222
|
+
/* Color - Dark (mobile) */
|
|
223
|
+
--colorDark10: #d5d5d5;
|
|
224
|
+
--colorDark20: #999999;
|
|
225
|
+
--colorDark30: #5e5e5e;
|
|
226
|
+
--colorDark40: #000000;
|
|
227
|
+
--colorDark50: #0A141E;
|
|
228
|
+
--colorDark60: #000000;
|
|
229
|
+
--colorDark70: #000000;
|
|
230
|
+
--textColorDark10: #838383;
|
|
231
|
+
--textColorDark20: #b0b0b0;
|
|
232
|
+
--textColorDark30: #d2d2d2;
|
|
233
|
+
--textColorDark40: #f0f0f0;
|
|
234
|
+
--textColorDark50: #f4f4f4;
|
|
235
|
+
--textColorDark60: #f7f7f7;
|
|
236
|
+
--textColorDark70: #fbfbfb;
|
|
237
|
+
|
|
238
|
+
/* Color - Neutral (web e mobile) */
|
|
239
|
+
--colorNeutral00: #FFFFFF;
|
|
240
|
+
--colorNeutral10: #F1F1F1;
|
|
241
|
+
--colorNeutral20: #E3E3E3;
|
|
242
|
+
--colorNeutral30: #D5D5D5;
|
|
243
|
+
--colorNeutral40: #C7C7C7;
|
|
244
|
+
--colorNeutral50: #B9B9B9;
|
|
245
|
+
--colorNeutral60: #ACACAC;
|
|
246
|
+
--colorNeutral70: #9E9E9E;
|
|
247
|
+
--colorNeutral80: #909090;
|
|
248
|
+
--colorNeutral90: #828282;
|
|
249
|
+
--colorNeutral100: #747474;
|
|
250
|
+
--colorNeutral110: #666666;
|
|
251
|
+
--colorNeutral120: #5D5D5D;
|
|
252
|
+
--colorNeutral130: #535353;
|
|
253
|
+
--colorNeutral140: #4A4A4A;
|
|
254
|
+
--colorNeutral150: #414141;
|
|
255
|
+
--colorNeutral160: #383838;
|
|
256
|
+
--colorNeutral170: #2E2E2E;
|
|
257
|
+
--colorNeutral180: #252525;
|
|
258
|
+
--colorNeutral190: #1C1C1C;
|
|
259
|
+
--colorNeutral200: #131313;
|
|
260
|
+
--colorNeutral210: #090909;
|
|
261
|
+
--colorNeutral220: #000000;
|
|
262
|
+
|
|
263
|
+
/* === Variables used exclusively in the color palette property === */
|
|
264
|
+
|
|
265
|
+
/* Components - Button */
|
|
266
|
+
--btnDefault: linear-gradient(180deg, #262C32 0%, #2D3843 100%);
|
|
267
|
+
--btnPrimary: linear-gradient(180deg, #197FDD 0%, #08427A 100%);
|
|
268
|
+
--btnSuccess: linear-gradient(180deg, #2FFC2B 0%, #0E890B 100%);
|
|
269
|
+
--btnCalm: linear-gradient(180deg, #44E1D8 0%, #25968F 100%);
|
|
270
|
+
--btnWarning: linear-gradient(180deg, #F58D11 0%, #B36305 100%);
|
|
271
|
+
--btnDanger: linear-gradient(180deg, #F03A3A 0%, #7E2121 100%);
|
|
272
|
+
--btnLight: linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%);
|
|
273
|
+
--btnLink: var(--colorCalm60, #2fc2ba);
|
|
274
|
+
--btnStable: linear-gradient(180deg, #818181 0%, #3E3E3E 100%);
|
|
275
|
+
--btnRoyal: linear-gradient(180deg, #0E3760 0%, #2D3843 100%);
|
|
276
|
+
--btnDark: linear-gradient(180deg, #000000 0%, #0F1E2E 100%);
|
|
277
|
+
|
|
278
|
+
--textColorDefault: var(--textColorDefault40, #f0f0f0);
|
|
279
|
+
--textColorPrimary: var(--textColorPrimary40, #f0f0f0);
|
|
280
|
+
--textColorSuccess: var(--textColorSuccess40, #f0f0f0);
|
|
281
|
+
--textColorCalm: var(--textColorCalm40, #f0f0f0);
|
|
282
|
+
--textColorWarning: var(--textColorWarning40, #f0f0f0);
|
|
283
|
+
--textColorDanger: var(--textColorDanger40, #f0f0f0);
|
|
284
|
+
--textColorLight: var(--textColorLight40, #f0f0f0);
|
|
285
|
+
--textColorStable: var(--textColorStable40, #f0f0f0);
|
|
286
|
+
--textColorRoyal: var(--textColorRoyal40, #f0f0f0);
|
|
287
|
+
--textColorDark: var(--textColorDark40, #f0f0f0);
|
|
288
|
+
|
|
289
|
+
--borderBtnLink: transparent;
|
|
290
|
+
--borderBtnDefault: transparent;
|
|
291
|
+
--borderBtnPrimary: transparent;
|
|
292
|
+
--borderBtnSuccess: transparent;
|
|
293
|
+
--borderBtnCalm: transparent;
|
|
294
|
+
--borderBtnWarning: transparent;
|
|
295
|
+
--borderBtnDanger: transparent;
|
|
296
|
+
--borderBtnLight: transparent;
|
|
297
|
+
--borderBtnStable: transparent;
|
|
298
|
+
--borderBtnRoyal: transparent;
|
|
299
|
+
--borderBtnDark: transparent;
|
|
300
|
+
|
|
301
|
+
/* Components - Text color */
|
|
302
|
+
--colorDefault: linear-gradient(180deg, #262C32 0%, #2D3843 100%);
|
|
303
|
+
--colorPrimary: linear-gradient(180deg, #197FDD 0%, #08427A 100%);
|
|
304
|
+
--colorSuccess: linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%);
|
|
305
|
+
--colorCalm: linear-gradient(180deg, #44E1D8 0%, #25968F 100%);
|
|
306
|
+
--colorWarning: linear-gradient(180deg, #F58D11 0%, #B36305 100%);
|
|
307
|
+
--colorDanger: linear-gradient(180deg, #F03A3A 0%, #7E2121 100%);
|
|
308
|
+
--colorLight: linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%);
|
|
309
|
+
--colorStable: linear-gradient(180deg, #818181 0%, #3E3E3E 100%);
|
|
310
|
+
--colorRoyal: linear-gradient(180deg, #0E3760 0%, #2D3843 100%);
|
|
311
|
+
--colorDark: linear-gradient(180deg, #000000 0%, #0F1E2E 100%);
|
|
312
|
+
|
|
313
|
+
/* Components - Checkbox */
|
|
314
|
+
--checkboxDefault: linear-gradient(180deg, #262C32 0%, #2D3843 100%);
|
|
315
|
+
--checkboxPrimary: linear-gradient(180deg, #197FDD 0%, #08427A 100%);
|
|
316
|
+
--checkboxSuccess: linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%);
|
|
317
|
+
--checkboxCalm: linear-gradient(180deg, #44E1D8 0%, #25968F 100%);
|
|
318
|
+
--checkboxWarning: linear-gradient(180deg, #F58D11 0%, #B36305 100%);
|
|
319
|
+
--checkboxDanger: linear-gradient(180deg, #F03A3A 0%, #7E2121 100%);
|
|
320
|
+
--checkboxLight: linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%);
|
|
321
|
+
--checkboxStable: linear-gradient(180deg, #818181 0%, #3E3E3E 100%);
|
|
322
|
+
--checkboxRoyal: linear-gradient(180deg, #0E3760 0%, #2D3843 100%);
|
|
323
|
+
--checkboxDark: linear-gradient(180deg, #000000 0%, #0F1E2E 100%);
|
|
324
|
+
|
|
325
|
+
--borderCheckboxDefault: transparent;
|
|
326
|
+
--borderCheckboxPrimary: transparent;
|
|
327
|
+
--borderCheckboxSuccess: transparent;
|
|
328
|
+
--borderCheckboxCalm: transparent;
|
|
329
|
+
--borderCheckboxWarning: transparent;
|
|
330
|
+
--borderCheckboxDanger: transparent;
|
|
331
|
+
--borderCheckboxLight: transparent;
|
|
332
|
+
--borderCheckboxStable: transparent;
|
|
333
|
+
--borderCheckboxRoyal: transparent;
|
|
334
|
+
--borderCheckboxDark: transparent;
|
|
335
|
+
|
|
336
|
+
/* Components - Toggle */
|
|
337
|
+
--toggleDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
338
|
+
--togglePrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
339
|
+
--toggleSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
340
|
+
--toggleCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
341
|
+
--toggleWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
342
|
+
--toggleDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
343
|
+
--toggleLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
344
|
+
--toggleStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
345
|
+
--toggleRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
346
|
+
--toggleDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
347
|
+
|
|
348
|
+
--borderToggleDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
349
|
+
--borderTogglePrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
350
|
+
--borderToggleSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
351
|
+
--borderToggleCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
352
|
+
--borderToggleWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
353
|
+
--borderToggleDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
354
|
+
--borderToggleLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
355
|
+
--borderToggleStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
356
|
+
--borderToggleRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
357
|
+
--borderToggleDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
358
|
+
|
|
359
|
+
/* Components - Tabs - crn-ion-segment */
|
|
360
|
+
--bgDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
361
|
+
--bgPrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
362
|
+
--bgSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
363
|
+
--bgCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
364
|
+
--bgWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
365
|
+
--bgDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
366
|
+
--bgLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
367
|
+
--bgStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
368
|
+
--bgRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
369
|
+
--bgDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
370
|
+
|
|
371
|
+
--borderActiveBackgroundDefault: transparent;
|
|
372
|
+
--borderActiveBackgroundPrimary: transparent;
|
|
373
|
+
--borderActiveBackgroundSuccess: transparent;
|
|
374
|
+
--borderActiveBackgroundCalm: transparent;
|
|
375
|
+
--borderActiveBackgroundWarning: transparent;
|
|
376
|
+
--borderActiveBackgroundDanger: transparent;
|
|
377
|
+
--borderActiveBackgroundLight: transparent;
|
|
378
|
+
--borderActiveBackgroundStable: transparent;
|
|
379
|
+
--borderActiveBackgroundRoyal: transparent;
|
|
380
|
+
--borderActiveBackgroundDark: transparent;
|
|
381
|
+
|
|
382
|
+
--activeBackgroundDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
383
|
+
--activeBackgroundPrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
384
|
+
--activeBackgroundSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
385
|
+
--activeBackgroundCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
386
|
+
--activeBackgroundWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
387
|
+
--activeBackgroundDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
388
|
+
--activeBackgroundLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
389
|
+
--activeBackgroundStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
390
|
+
--activeBackgroundRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
391
|
+
--activeBackgroundDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
392
|
+
--ionSegmentDefault: var(--textColorPrimary40, #f0f0f0);
|
|
393
|
+
--ionSegmentPrimary: var(--textColorDefault40, #f0f0f0);
|
|
394
|
+
--ionSegmentSuccess: var(--textColorSuccess40, #f0f0f0);
|
|
395
|
+
--ionSegmentCalm: var(--textColorCalm40, #f0f0f0);
|
|
396
|
+
--ionSegmentWarning: var(--textColorWarning40, #f0f0f0);
|
|
397
|
+
--ionSegmentDanger: var(--textColorDanger40, #f0f0f0);
|
|
398
|
+
--ionSegmentLight: var(--textColorLight40, #f0f0f0);
|
|
399
|
+
--ionSegmentStable: var(--textColorStable40, #f0f0f0);
|
|
400
|
+
--ionSegmentRoyal: var(--textColorRoyal40, #f0f0f0);
|
|
401
|
+
--ionSegmentDark: var(--textColorDark40, #f0f0f0);
|
|
402
|
+
|
|
403
|
+
--iconThemeLightDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
404
|
+
--iconThemeLightPrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
405
|
+
--iconThemeLightSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
406
|
+
--iconThemeLightCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
407
|
+
--iconThemeLightWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
408
|
+
--iconThemeLightDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
409
|
+
--iconThemeLightLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
410
|
+
--iconThemeLightStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
411
|
+
--iconThemeLightRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
412
|
+
--iconThemeLightDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
413
|
+
|
|
414
|
+
/* Components - Old Tabs - pallete false */
|
|
415
|
+
--tabsDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
416
|
+
--tabsPrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
417
|
+
--tabsSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
418
|
+
--tabsCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
419
|
+
--tabsWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
420
|
+
--tabsDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
421
|
+
--tabsLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
422
|
+
--tabsStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
423
|
+
--tabsRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
424
|
+
--tabsDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
425
|
+
|
|
426
|
+
/* Components - Header */
|
|
427
|
+
--barDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
428
|
+
--barPrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
429
|
+
--barSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
430
|
+
--barCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
431
|
+
--barWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
432
|
+
--barDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
433
|
+
--barLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
434
|
+
--barStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
435
|
+
--barRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
436
|
+
--barDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
437
|
+
|
|
438
|
+
/* Componentes - Footer with icon */
|
|
439
|
+
--backgroundDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
440
|
+
--backgroundPrimary: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
441
|
+
--backgroundSuccess: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
442
|
+
--backgroundCalm: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
443
|
+
--backgroundWarning: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
444
|
+
--backgroundDanger: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
445
|
+
--backgroundLight: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
446
|
+
--backgroundStable: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
447
|
+
--backgroundRoyal: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
448
|
+
--backgroundDark: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
449
|
+
|
|
450
|
+
--tabsIconDefault: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
451
|
+
--tabsIconPrimary: var(--textColorDefault40, #f0f0f0);
|
|
452
|
+
--tabsIconSuccess: var(--textColorSuccess40, #f0f0f0);
|
|
453
|
+
--tabsIconCalm: var(--textColorCalm40, #f0f0f0);
|
|
454
|
+
--tabsIconWarning: var(--textColorWarning40, #f0f0f0);
|
|
455
|
+
--tabsIconDanger: var(--textColorDanger40, #f0f0f0);
|
|
456
|
+
--tabsIconLight: var(--textColorLight40, #f0f0f0);
|
|
457
|
+
--tabsIconStable: var(--textColorStable40, #f0f0f0);
|
|
458
|
+
--tabsIconRoyal: var(--textColorRoyal40, #f0f0f0);
|
|
459
|
+
--tabsIconDark: var(--textColorDark40, #f0f0f0);
|
|
460
|
+
/* End - Variables used exclusively in the color palette property */
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
h1,
|
|
464
|
+
h2,
|
|
465
|
+
h3,
|
|
466
|
+
h4,
|
|
467
|
+
h5,
|
|
468
|
+
h6,
|
|
469
|
+
.h1,
|
|
470
|
+
.h2,
|
|
471
|
+
.h3,
|
|
472
|
+
.h4,
|
|
473
|
+
.h5,
|
|
474
|
+
.h6 {
|
|
475
|
+
font-family: var(--fontFamily, "Open Sans", "Arial", sans-serif);
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
a,
|
|
479
|
+
a:focus,
|
|
480
|
+
a:active,
|
|
481
|
+
a:hover {
|
|
482
|
+
color: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
.light,
|
|
486
|
+
a.light,
|
|
487
|
+
.color-light {
|
|
488
|
+
color: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.stable,
|
|
492
|
+
a.stable,
|
|
493
|
+
.color-stable {
|
|
494
|
+
color: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
/* Login */
|
|
498
|
+
.login-bg {
|
|
499
|
+
background: var(--backgroundColor30, #546270);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.login-mobile .button.button-positive,
|
|
503
|
+
.login-mobile .button.button-light {
|
|
504
|
+
background: var(--backgroundColor30, #546270);
|
|
505
|
+
border: 0;
|
|
506
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
.login-mobile .button.button-positive span,
|
|
510
|
+
.login-mobile .button.button-positive i,
|
|
511
|
+
.login-mobile .button.button-positive.active span,
|
|
512
|
+
.login-mobile .button.button-positive:active span,
|
|
513
|
+
.login-mobile .button.button-positive:focus span,
|
|
514
|
+
.login-mobile .button.button-positive:hover span,
|
|
515
|
+
.login-mobile .button.button-positive.active i,
|
|
516
|
+
.login-mobile .button.button-positive:active i,
|
|
517
|
+
.login-mobile .button.button-positive:focus i,
|
|
518
|
+
.login-mobile .button.button-positive:hover i,
|
|
519
|
+
.login-mobile .button.button-light span,
|
|
520
|
+
.login-mobile .button.button-light i,
|
|
521
|
+
.login-mobile .button.button-light.active span,
|
|
522
|
+
.login-mobile .button.button-light:active span,
|
|
523
|
+
.login-mobile .button.button-light:focus span,
|
|
524
|
+
.login-mobile .button.button-light:hover span,
|
|
525
|
+
.login-mobile .button.button-light.active i,
|
|
526
|
+
.login-mobile .button.button-light:active i,
|
|
527
|
+
.login-mobile .button.button-light:focus i,
|
|
528
|
+
.login-mobile .button.button-light:hover i {
|
|
529
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.login-mobile .button.button-positive.active,
|
|
533
|
+
.login-mobile .button.button-positive:active,
|
|
534
|
+
.login-mobile .button.button-positive.activated,
|
|
535
|
+
.login-mobile .button.button-light:active,
|
|
536
|
+
.login-mobile .button.button-light.activated {
|
|
537
|
+
background: var(--colorLight40, #f0f0f0);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.login-bg img[src="node_modules/cronapp-framework-mobile-js/img/logo.svg"] {
|
|
541
|
+
filter: brightness(0) invert(1);
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
#crn-heading-reset,
|
|
545
|
+
#reset-password-label {
|
|
546
|
+
color: var(--textColor10, #f0f0f0);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.item,
|
|
550
|
+
.item-select select {
|
|
551
|
+
border-color: var(--textColor10, #f0f0f0);
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
/* Cabeçalho */
|
|
555
|
+
.bar.bar-default {
|
|
556
|
+
border-color: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
557
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
558
|
+
color: var(--textColorPrimary40, #f0f0f0);
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
.bar.bar-default .button .icon,
|
|
562
|
+
.bar.bar-default .title {
|
|
563
|
+
color: var(--textColorPrimary40, #f0f0f0);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.bar.bar-positive {
|
|
567
|
+
border-color: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
568
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
569
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
.bar.bar-positive .button .icon,
|
|
573
|
+
.bar.bar-positive .title {
|
|
574
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
/* Menu */
|
|
578
|
+
.menu-view {
|
|
579
|
+
background: var(--colorLight60, #303B46);
|
|
580
|
+
color: var(--textColor10, #f0f0f0);
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
/* Button Positive */
|
|
584
|
+
.button.button-positive {
|
|
585
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.button.button-positive:active,
|
|
589
|
+
.button.button-positive.activated {
|
|
590
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
/* Light - Outline */
|
|
594
|
+
|
|
595
|
+
.button.button-light.button-outline {
|
|
596
|
+
border-color: none;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
.button.button-light.button-outline span,
|
|
600
|
+
.button.button-light.button-outline i {
|
|
601
|
+
color: none;
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.button.button-light.button-outline:active,
|
|
605
|
+
.button.button-light.button-outline.activated {
|
|
606
|
+
background: none;
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
/* Stable - Outline */
|
|
610
|
+
.button.button-stable.button-outline {
|
|
611
|
+
border-color: none;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.button.button-stable.button-outline span,
|
|
615
|
+
.button.button-stable.button-outline i {
|
|
616
|
+
color: none;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
.button.button-stable.button-outline:active,
|
|
620
|
+
.button.button-stable.button-outline.activated {
|
|
621
|
+
background: none;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
/* Rodapé com ícone */
|
|
625
|
+
|
|
626
|
+
.tabs-striped.background-default .tabs {
|
|
627
|
+
background: var(--textColorDefault40, #f0f0f0);
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.tabs-striped.tabs-icon-default .tab-item {
|
|
631
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
632
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
633
|
+
opacity: 0.5;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
.item-input .icon {
|
|
637
|
+
font-size: 12px;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
#menu-blue .item:hover {
|
|
641
|
+
background: var(--backgroundColor30, #f4f4f4);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.button.button-default:hover {
|
|
645
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.button.button-default:active {
|
|
649
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.login-mobile .button.button-light {
|
|
653
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
654
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
655
|
+
border-radius: 20px;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.login-mobile .button.button-light:hover {
|
|
659
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
660
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
.login-mobile .button.button-light:active {
|
|
664
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
665
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
.button#button-reset-password {
|
|
669
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
670
|
+
color: var(--textColorWarning40, #ffffff);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
.button#button-reset-password:hover {
|
|
674
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
675
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.button#button-reset-password:active {
|
|
679
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
680
|
+
color: var(--textColorWarning40, #f0f0f0);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.item-radio input:checked+.radio-content .item-content {
|
|
684
|
+
background: var(--backgroundColor40, #f2f2f2);
|
|
685
|
+
color: var(--textColor40, #f0f0f0);
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
.item-radio .radio-icon,
|
|
689
|
+
.range .icon {
|
|
690
|
+
color: var(--textColor40, #f0f0f0);
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.item-select:after,
|
|
694
|
+
.k-i-arrow-60-down::before {
|
|
695
|
+
color: var(--textColor40, #f0f0f0);
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
.item input.ng-invalid,
|
|
699
|
+
.item-input input.ng-invalid {
|
|
700
|
+
border-bottom: none;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
input[placeholder]:not([placeholder=""])::placeholder {
|
|
704
|
+
/* Chrome, Firefox, Opera, Safari 10.1+ */
|
|
705
|
+
color: var(--textColor60, #5F5F5F);
|
|
706
|
+
opacity: 1;
|
|
707
|
+
/* Firefox */
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
input:-ms-input-placeholder {
|
|
711
|
+
/* Internet Explorer 10-11 */
|
|
712
|
+
color: var(--textColor60, #5F5F5F);
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
input::-ms-input-placeholder {
|
|
716
|
+
/* Microsoft Edge */
|
|
717
|
+
color: var(--textColor60, #5F5F5F);
|
|
718
|
+
margin-left: 10px;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
.list-inset .item.item-input input {
|
|
722
|
+
background: var(--backgroundColor10, #CED0D2);
|
|
723
|
+
color: var(--textColor70, #434343);
|
|
724
|
+
border-radius: 20px;
|
|
725
|
+
}
|
|
726
|
+
|
|
727
|
+
.modal .item {
|
|
728
|
+
border-width: 1px;
|
|
729
|
+
border-color: none;
|
|
730
|
+
background: var(--backgroundColor10, #CED0D2);
|
|
731
|
+
color: var(--textColor40, #f0f0f0);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
|
|
735
|
+
.item-input-wrapper {
|
|
736
|
+
background: var(--backgroundColor40, #f2f2f2);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.ion-search:before {
|
|
740
|
+
color: var(--textColor40, #434343);
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.ion-asterisk:before {
|
|
744
|
+
font-size: 10px;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
input[type="text"],
|
|
748
|
+
input[type="email"],
|
|
749
|
+
input[type="password"] {
|
|
750
|
+
display: block;
|
|
751
|
+
padding-top: 2px;
|
|
752
|
+
padding-left: 10px;
|
|
753
|
+
height: 34px;
|
|
754
|
+
line-height: 16px;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.login-mobile .button {
|
|
758
|
+
text-transform: none;
|
|
759
|
+
letter-spacing: 0px;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
button#crn-button-signup {
|
|
763
|
+
letter-spacing: 0px;
|
|
764
|
+
border-radius: 0px;
|
|
765
|
+
margin: 0px;
|
|
766
|
+
height: 47px;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
button#crn-button-signup:hover {
|
|
770
|
+
border-radius: 10px;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.color-light {
|
|
774
|
+
color: var(--colorLight50, #cdc2c2);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.button span,
|
|
778
|
+
.button i {
|
|
779
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
780
|
+
font-weight: 300;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
/* Buttons search */
|
|
784
|
+
.button-bar,
|
|
785
|
+
.button-bar>.button:first-child,
|
|
786
|
+
.button-bar>.button:last-child {
|
|
787
|
+
border-radius: 20px;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
/*Default*/
|
|
791
|
+
.button.button-default.button-outline {
|
|
792
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
793
|
+
border-color: transparent;
|
|
794
|
+
color: var(--textColor40, #f0f0f0);
|
|
795
|
+
}
|
|
796
|
+
|
|
797
|
+
.button.button-default.button-outline span {
|
|
798
|
+
color: var(--textColor40, #f0f0f0);
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
.button.button-default.button-outline:active {
|
|
802
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.button.button-default.button-outline i {
|
|
806
|
+
color: var(--textColor40, #f0f0f0);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.button.button-default {
|
|
810
|
+
background: var(--colorDefault, linear-gradient(180deg, #262C32 0%, #2D3843 100%));
|
|
811
|
+
border-radius: 20px;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
/*Secundary*/
|
|
815
|
+
.button.button-positive {
|
|
816
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.button.button-positive.button-outline {
|
|
820
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
821
|
+
border-color: transparent;
|
|
822
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.button.button-positive.button-outline span {
|
|
826
|
+
color: var(--textColor40, #f0f0f0);
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
.button.button-positive.button-outline:active {
|
|
830
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
831
|
+
}
|
|
832
|
+
|
|
833
|
+
.button.button-positive.button-outline i {
|
|
834
|
+
color: var(--textColor40, #f0f0f0);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
/*Success*/
|
|
838
|
+
.button.button-balanced {
|
|
839
|
+
background: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
.button.button-balanced.button-outline {
|
|
843
|
+
background: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
844
|
+
border-color: transparent;
|
|
845
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.button.button-balanced.button-outline span {
|
|
849
|
+
color: var(--textColor40, #f0f0f0);
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.button.button-balanced.button-outline:active {
|
|
853
|
+
background: var(--colorSuccess, linear-gradient(180deg, #0EDA0A 0%, #0D840A 100%));
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
.button.button-balanced.button-outline i {
|
|
857
|
+
color: var(--textColor40, #f0f0f0);
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
/*Calm*/
|
|
861
|
+
.button.button-calm {
|
|
862
|
+
background: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.button.button-calm.button-outline {
|
|
866
|
+
background: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
867
|
+
border-color: transparent;
|
|
868
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.button.button-calm.button-outline span {
|
|
872
|
+
color: var(--textColor40, #f0f0f0);
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
.button.button-calm.button-outline:active {
|
|
876
|
+
background: var(--colorCalm, linear-gradient(180deg, #44E1D8 0%, #25968F 100%));
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
.button.button-calm.button-outline i {
|
|
880
|
+
color: var(--textColor40, #f0f0f0);
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
/*Warning*/
|
|
884
|
+
.button.button-energized {
|
|
885
|
+
background: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
.button.button-energized.button-outline {
|
|
889
|
+
background: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
890
|
+
border-color: transparent;
|
|
891
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
.button.button-energized.button-outline span {
|
|
895
|
+
color: var(--textColor40, #f0f0f0);
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.button.button-energized.button-outline:active {
|
|
899
|
+
background: var(--colorWarning, linear-gradient(180deg, #F58D11 0%, #B36305 100%));
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.button.button-energized.button-outline i {
|
|
903
|
+
color: var(--textColor40, #f0f0f0);
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
/*Danger*/
|
|
907
|
+
.button.button-assertive {
|
|
908
|
+
background: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
.button.button-assertive.button-outline {
|
|
912
|
+
background: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
913
|
+
border-color: transparent;
|
|
914
|
+
color: var(--textColorDanger40, #f0f0f0);
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
.button.button-assertive.button-outline span {
|
|
918
|
+
color: var(--textColor40, #f0f0f0);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
.button.button-assertive.button-outline:active {
|
|
922
|
+
background: var(--colorDanger, linear-gradient(180deg, #F03A3A 0%, #7E2121 100%));
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
.button.button-assertive.button-outline i {
|
|
926
|
+
color: var(--textColor40, #f0f0f0);
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
/*Light*/
|
|
930
|
+
.button.button-light {
|
|
931
|
+
background: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.button.button-light.button-outline {
|
|
935
|
+
background: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
936
|
+
border-color: transparent;
|
|
937
|
+
color: var(--textColorLight40, #f0f0f0);
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
.button.button-light.button-outline span {
|
|
941
|
+
color: var(--textColor40, #f0f0f0);
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.button.button-light.button-outline:active {
|
|
945
|
+
background: var(--colorLight, linear-gradient(180deg, #8DA0B3 0%, #2D3843 100%));
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.button.button-light.button-outline i {
|
|
949
|
+
color: var(--textColor40, #f0f0f0);
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
/*Stable*/
|
|
953
|
+
.button.button-stable {
|
|
954
|
+
background: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
.button.button-stable.button-outline {
|
|
958
|
+
background: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
959
|
+
border-color: transparent;
|
|
960
|
+
color: var(--textColorStable40, #434343);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
.button.button-stable.button-outline span {
|
|
964
|
+
color: var(--textColor40, #f0f0f0);
|
|
965
|
+
}
|
|
966
|
+
|
|
967
|
+
.button.button-stable.button-outline:active {
|
|
968
|
+
background: var(--colorStable, linear-gradient(180deg, #818181 0%, #3E3E3E 100%));
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.button.button-stable.button-outline i {
|
|
972
|
+
color: var(--textColor40, #f0f0f0);
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
/*Royal*/
|
|
976
|
+
.button.button-royal {
|
|
977
|
+
background: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.button.button-royal.button-outline {
|
|
981
|
+
background: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
982
|
+
border-color: transparent;
|
|
983
|
+
color: var(--textColorRoyal40, #f0f0f0);
|
|
984
|
+
}
|
|
985
|
+
|
|
986
|
+
.button.button-royal.button-outline span {
|
|
987
|
+
color: var(--textColor40, #f0f0f0);
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.button.button-royal.button-outline:active {
|
|
991
|
+
background: var(--colorRoyal, linear-gradient(180deg, #0E3760 0%, #2D3843 100%));
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.button.button-royal.button-outline i {
|
|
995
|
+
color: var(--textColor40, #f0f0f0);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
/*Dark*/
|
|
999
|
+
|
|
1000
|
+
.button.button-dark {
|
|
1001
|
+
background: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
1002
|
+
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.button.button-dark.button-outline {
|
|
1006
|
+
background: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
1007
|
+
border-color: transparent;
|
|
1008
|
+
color: var(--textColorDark40, #f0f0f0);
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
.button.button-dark.button-outline span {
|
|
1012
|
+
color: var(--textColorDark40, #f0f0f0);
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
.button.button-dark.button-outline:active {
|
|
1016
|
+
background: var(--colorDark, linear-gradient(180deg, #000000 0%, #0F1E2E 100%));
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
.button.button-dark.button-outline i {
|
|
1020
|
+
color: var(--textColor40, #f0f0f0);
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
.font-size-200 i {
|
|
1024
|
+
font-size: 10px;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
/*Chat*/
|
|
1028
|
+
.k-chat .k-alt .k-bubble {
|
|
1029
|
+
background: var(--colorDefault40, #442b69);
|
|
1030
|
+
color: var(--textColorDefault40, #f0f0f0);
|
|
1031
|
+
border-color: transparent;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.k-chat .k-message-box .k-button:hover {
|
|
1035
|
+
color: var(--colorDefault40, #442b69);
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.button#button-reset-password {
|
|
1039
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
1040
|
+
color: var(--textColorWarning40, #ffffff);
|
|
1041
|
+
border-radius: 20px;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
button#crn-button-signup {
|
|
1045
|
+
letter-spacing: 0px;
|
|
1046
|
+
border-radius: 20px;
|
|
1047
|
+
margin: 0px;
|
|
1048
|
+
height: 47px;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
.dynamicImage .buttomImage {
|
|
1052
|
+
justify-content: center;
|
|
1053
|
+
align-items: center;
|
|
1054
|
+
display: flex;
|
|
1055
|
+
background: var(--colorPrimary, linear-gradient(180deg, #197FDD 0%, #08427A 100%));
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.crn-ion-segment-light ul li a,
|
|
1059
|
+
.crn-ion-segment-modern ul li a,
|
|
1060
|
+
.crn-ion-segment-classic ul li a {
|
|
1061
|
+
height: 100%;
|
|
1062
|
+
background: var(--backgroundColor30, #546270);
|
|
1063
|
+
color: var(--textColor40, #f0f0f0);
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
.item h3:last-child,
|
|
1067
|
+
.item h3,
|
|
1068
|
+
.item h2 {
|
|
1069
|
+
color: var(--textColorDark40, #f0f0f0);
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
.item-icon-left .icon:before,
|
|
1073
|
+
.item-complex .item-content {
|
|
1074
|
+
color: var(--textColorDark40, #f0f0f0);
|
|
1075
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
@import '../../../cronapp-lib-js/dist/js/kendo-ui/styles/kendo.material-v2.min.css';
|
|
2
|
+
@import '../../lib/kendo/kendo.default-v2.min.css';
|
|
3
|
+
@import '../../css/app_2.9.css';
|
|
4
|
+
@import 'custom/theme-general/theme-general.css';
|
|
5
|
+
@import 'custom/krypton/custom-krypton.css';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '../../../fonts/raleway/raleway.css';:root{--fontFamily:"Raleway","Arial",sans-serif;--textColor:#f0f0f0;--backgroundColor:#090f13;--textSmallSize:10px;--textNormalSize:12px;--textMediumSize:16px;--textBigSize:22px;--textExtraBigSize:28px;--textFullSize:34px;--textColor10:#fbfbfb;--textColor20:#f7f7f7;--textColor30:#f4f4f4;--textColor40:#f0f0f0;--textColor50:#d2d2d2;--textColor60:#5f5f5f;--textColor70:#434343;--iconSizeDefault:28px;--iconSizeSmall:calc(var(--iconSizeDefault) - 3px);--iconSizeBig:calc(var(--iconSizeDefault) + 3px);--iconSizeExtraBig:calc(var(--iconSizeDefault) + 6px);--menuVerticalWidth:270px;--menuSideSize:20px;--menuItemBarSize:6px;--menuElementOverallPadding:10px;--menuItemPaddingSize:calc(var(--menuElementOverallPadding) + 5px);--menuItemIconWidth:25px;--backgroundColor10:#ced0d2;--backgroundColor20:#a3a3a3;--backgroundColor30:#546270;--backgroundColor40:#090f13;--backgroundColor50:#080d11;--backgroundColor60:#070b0e;--backgroundColor70:#05080a;--backgroundLogin10:rgba(177,186,196,1);--backgroundLogin20:rgba(147,161,174,1);--backgroundLogin30:rgba(118,135,152,1);--backgroundLogin40:rgba(84,92,112,1);--backgroundLogin50:rgba(72,84,96,1);--backgroundLogin60:rgba(29,33,38,1);--backgroundLogin70:rgba(15,18,20,1);--distanceNone:0;--distanceSmallest:5px;--distanceExtraSmall:10px;--distanceSmall:15px;--distanceMedium:20px;--distanceBig:30px;--distanceGiant:40px;--distanceTitan:60px;--borderRadiusNone:0;--borderRadiusSmallest:2px;--borderRadiusExtraSmall:10px;--borderRadiusSmall:15px;--borderRadiusBig:30px;--borderRadiusGiant:40px;--borderRadiusTitan:60px;--borderRadiusFull:99999px;--colorDefault10:#d6d7d7;--colorDefault20:#b0b1b1;--colorDefault30:#434343;--colorDefault40:#262c32;--colorDefault50:#252e36;--colorDefault60:#1c2025;--colorDefault70:#15181b;--textColorDefault10:#434343;--textColorDefault20:#b0b0b0;--textColorDefault30:#d2d2d2;--textColorDefault40:#f0f0f0;--textColorDefault50:#f4f4f4;--textColorDefault60:#f7f7f7;--textColorDefault70:#fbfbfb;--colorPrimary10:#d6e0f5;--colorPrimary20:#afc5ed;--colorPrimary30:#7da6e5;--colorPrimary40:#197fdd;--colorPrimary50:#166fc2;--colorPrimary60:#125da2;--colorPrimary70:#09467f;--textColorPrimary10:#838383;--textColorPrimary20:#b0b0b0;--textColorPrimary30:#d2d2d2;--textColorPrimary40:#f0f0f0;--textColorPrimary50:#f4f4f4;--textColorPrimary60:#f7f7f7;--textColorPrimary70:#fbfbfb;--colorSuccess10:#d7fed7;--colorSuccess20:#b1fdb0;--colorSuccess30:#82fd81;--colorSuccess40:#2ffc2b;--colorSuccess50:#29dd26;--colorSuccess60:#22b920;--colorSuccess70:#108d0d;--textColorSuccess10:#838383;--textColorSuccess20:#b0b0b0;--textColorSuccess30:#d2d2d2;--textColorSuccess40:#f0f0f0;--textColorSuccess50:#f4f4f4;--textColorSuccess60:#f7f7f7;--textColorSuccess70:#fbfbfb;--colorWarning10:#fce3d6;--colorWarning20:#facaae;--colorWarning30:#f7ae7c;--colorWarning40:#f58d11;--colorWarning50:#d77b0f;--colorWarning60:#b46406;--colorWarning70:#864d09;--textColorWarning10:#838383;--textColorWarning20:#b0b0b0;--textColorWarning30:#d2d2d2;--textColorWarning40:#f0f0f0;--textColorWarning50:#f4f4f4;--textColorWarning60:#f7f7f7;--textColorWarning70:#fbfbfb;--colorDanger10:#fbd8d8;--colorDanger20:#f7b3b3;--colorDanger30:#f48585;--colorDanger40:#f03a3a;--colorDanger50:#d23333;--colorDanger60:#7e2121;--colorDanger70:#832020;--textColorDanger10:#838383;--textColorDanger20:#b0b0b0;--textColorDanger30:#d2d2d2;--textColorDanger40:#f0f0f0;--textColorDanger50:#f4f4f4;--textColorDanger60:#f7f7f7;--textColorDanger70:#fbfbfb;--colorRoyal10:#d5d7dc;--colorRoyal20:#5487bd;--colorRoyal30:#394c5e;--colorRoyal40:#0e3760;--colorRoyal50:#0c3054;--colorRoyal60:#0a2846;--colorRoyal70:#1a2e43;--textColorRoyal10:#838383;--textColorRoyal20:#b0b0b0;--textColorRoyal30:#d2d2d2;--textColorRoyal40:#f0f0f0;--textColorRoyal50:#f4f4f4;--textColorRoyal60:#f7f7f7;--textColorRoyal70:#fbfbfb;--colorCalm10:#cefffd;--colorCalm20:#68f8f1;--colorCalm30:#4eebe3;--colorCalm40:#44e1d8;--colorCalm50:#00abc2;--colorCalm60:#169f97;--colorCalm70:#077988;--textColorCalm10:#838383;--textColorCalm20:#b0b0b0;--textColorCalm30:#d2d2d2;--textColorCalm40:#f0f0f0;--textColorCalm50:#f4f4f4;--textColorCalm60:#f7f7f7;--textColorCalm70:#fbfbfb;--colorLight10:#e3e7eb;--colorLight20:#cad1d9;--colorLight30:#aebbc7;--colorLight40:#8da0b2;--colorLight50:#7b8c9c;--colorLight60:#303b46;--colorLight70:#4d5861;--textColorLight10:#838383;--textColorLight20:#677582;--textColorLight30:#d2d2d2;--textColorLight40:#f0f0f0;--textColorLight50:#f4f4f4;--textColorLight60:#f7f7f7;--textColorLight70:#fbfbfb;--colorStable10:#e1e1e1;--colorStable20:#c6c6c6;--colorStable30:#a7a7a7;--colorStable40:#818181;--colorStable50:#4d4d4d;--colorStable60:#5f5f5f;--colorStable70:#3e4042;--textColorStable10:#838383;--textColorStable20:#b0b0b0;--textColorStable30:#d2d2d2;--textColorStable40:#f0f0f0;--textColorStable50:#f4f4f4;--textColorStable60:#f7f7f7;--textColorStable70:#fbfbfb;--colorDark10:#d5d5d5;--colorDark20:#999;--colorDark30:#5e5e5e;--colorDark40:#000;--colorDark50:#0a141e;--colorDark60:#000;--colorDark70:#000;--textColorDark10:#838383;--textColorDark20:#b0b0b0;--textColorDark30:#d2d2d2;--textColorDark40:#f0f0f0;--textColorDark50:#f4f4f4;--textColorDark60:#f7f7f7;--textColorDark70:#fbfbfb;--colorNeutral00:#fff;--colorNeutral10:#f1f1f1;--colorNeutral20:#e3e3e3;--colorNeutral30:#d5d5d5;--colorNeutral40:#c7c7c7;--colorNeutral50:#b9b9b9;--colorNeutral60:#acacac;--colorNeutral70:#9e9e9e;--colorNeutral80:#909090;--colorNeutral90:#828282;--colorNeutral100:#747474;--colorNeutral110:#666;--colorNeutral120:#5d5d5d;--colorNeutral130:#535353;--colorNeutral140:#4a4a4a;--colorNeutral150:#414141;--colorNeutral160:#383838;--colorNeutral170:#2e2e2e;--colorNeutral180:#252525;--colorNeutral190:#1c1c1c;--colorNeutral200:#131313;--colorNeutral210:#090909;--colorNeutral220:#000;--btnDefault:linear-gradient(180deg,#262c32 0,#2d3843 100%);--btnPrimary:linear-gradient(180deg,#197fdd 0,#08427a 100%);--btnSuccess:linear-gradient(180deg,#2ffc2b 0,#0e890b 100%);--btnCalm:linear-gradient(180deg,#44e1d8 0,#25968f 100%);--btnWarning:linear-gradient(180deg,#f58d11 0,#b36305 100%);--btnDanger:linear-gradient(180deg,#f03a3a 0,#7e2121 100%);--btnLight:linear-gradient(180deg,#8da0b3 0,#2d3843 100%);--btnLink:var(--colorCalm60,#2fc2ba);--btnStable:linear-gradient(180deg,#818181 0,#3e3e3e 100%);--btnRoyal:linear-gradient(180deg,#0e3760 0,#2d3843 100%);--btnDark:linear-gradient(180deg,#000 0,#0f1e2e 100%);--textColorDefault:var(--textColorDefault40,#f0f0f0);--textColorPrimary:var(--textColorPrimary40,#f0f0f0);--textColorSuccess:var(--textColorSuccess40,#f0f0f0);--textColorCalm:var(--textColorCalm40,#f0f0f0);--textColorWarning:var(--textColorWarning40,#f0f0f0);--textColorDanger:var(--textColorDanger40,#f0f0f0);--textColorLight:var(--textColorLight40,#f0f0f0);--textColorStable:var(--textColorStable40,#f0f0f0);--textColorRoyal:var(--textColorRoyal40,#f0f0f0);--textColorDark:var(--textColorDark40,#f0f0f0);--borderBtnLink:transparent;--borderBtnDefault:transparent;--borderBtnPrimary:transparent;--borderBtnSuccess:transparent;--borderBtnCalm:transparent;--borderBtnWarning:transparent;--borderBtnDanger:transparent;--borderBtnLight:transparent;--borderBtnStable:transparent;--borderBtnRoyal:transparent;--borderBtnDark:transparent;--colorDefault:linear-gradient(180deg,#262c32 0,#2d3843 100%);--colorPrimary:linear-gradient(180deg,#197fdd 0,#08427a 100%);--colorSuccess:linear-gradient(180deg,#0eda0a 0,#0d840a 100%);--colorCalm:linear-gradient(180deg,#44e1d8 0,#25968f 100%);--colorWarning:linear-gradient(180deg,#f58d11 0,#b36305 100%);--colorDanger:linear-gradient(180deg,#f03a3a 0,#7e2121 100%);--colorLight:linear-gradient(180deg,#8da0b3 0,#2d3843 100%);--colorStable:linear-gradient(180deg,#818181 0,#3e3e3e 100%);--colorRoyal:linear-gradient(180deg,#0e3760 0,#2d3843 100%);--colorDark:linear-gradient(180deg,#000 0,#0f1e2e 100%);--checkboxDefault:linear-gradient(180deg,#262c32 0,#2d3843 100%);--checkboxPrimary:linear-gradient(180deg,#197fdd 0,#08427a 100%);--checkboxSuccess:linear-gradient(180deg,#0eda0a 0,#0d840a 100%);--checkboxCalm:linear-gradient(180deg,#44e1d8 0,#25968f 100%);--checkboxWarning:linear-gradient(180deg,#f58d11 0,#b36305 100%);--checkboxDanger:linear-gradient(180deg,#f03a3a 0,#7e2121 100%);--checkboxLight:linear-gradient(180deg,#8da0b3 0,#2d3843 100%);--checkboxStable:linear-gradient(180deg,#818181 0,#3e3e3e 100%);--checkboxRoyal:linear-gradient(180deg,#0e3760 0,#2d3843 100%);--checkboxDark:linear-gradient(180deg,#000 0,#0f1e2e 100%);--borderCheckboxDefault:transparent;--borderCheckboxPrimary:transparent;--borderCheckboxSuccess:transparent;--borderCheckboxCalm:transparent;--borderCheckboxWarning:transparent;--borderCheckboxDanger:transparent;--borderCheckboxLight:transparent;--borderCheckboxStable:transparent;--borderCheckboxRoyal:transparent;--borderCheckboxDark:transparent;--toggleDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--togglePrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--toggleSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--toggleCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--toggleWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--toggleDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--toggleLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--toggleStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--toggleRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--toggleDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--borderToggleDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--borderTogglePrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--borderToggleSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--borderToggleCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--borderToggleWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--borderToggleDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--borderToggleLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--borderToggleStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--borderToggleRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--borderToggleDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--bgDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--bgPrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--bgSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--bgCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--bgWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--bgDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--bgLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--bgStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--bgRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--bgDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--borderActiveBackgroundDefault:transparent;--borderActiveBackgroundPrimary:transparent;--borderActiveBackgroundSuccess:transparent;--borderActiveBackgroundCalm:transparent;--borderActiveBackgroundWarning:transparent;--borderActiveBackgroundDanger:transparent;--borderActiveBackgroundLight:transparent;--borderActiveBackgroundStable:transparent;--borderActiveBackgroundRoyal:transparent;--borderActiveBackgroundDark:transparent;--activeBackgroundDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--activeBackgroundPrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--activeBackgroundSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--activeBackgroundCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--activeBackgroundWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--activeBackgroundDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--activeBackgroundLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--activeBackgroundStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--activeBackgroundRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--activeBackgroundDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--ionSegmentDefault:var(--textColorPrimary40,#f0f0f0);--ionSegmentPrimary:var(--textColorDefault40,#f0f0f0);--ionSegmentSuccess:var(--textColorSuccess40,#f0f0f0);--ionSegmentCalm:var(--textColorCalm40,#f0f0f0);--ionSegmentWarning:var(--textColorWarning40,#f0f0f0);--ionSegmentDanger:var(--textColorDanger40,#f0f0f0);--ionSegmentLight:var(--textColorLight40,#f0f0f0);--ionSegmentStable:var(--textColorStable40,#f0f0f0);--ionSegmentRoyal:var(--textColorRoyal40,#f0f0f0);--ionSegmentDark:var(--textColorDark40,#f0f0f0);--iconThemeLightDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--iconThemeLightPrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--iconThemeLightSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--iconThemeLightCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--iconThemeLightWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--iconThemeLightDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--iconThemeLightLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--iconThemeLightStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--iconThemeLightRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--iconThemeLightDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--tabsDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--tabsPrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--tabsSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--tabsCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--tabsWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--tabsDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--tabsLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--tabsStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--tabsRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--tabsDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--barDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--barPrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--barSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--barCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--barWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--barDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--barLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--barStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--barRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--barDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--backgroundDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--backgroundPrimary:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));--backgroundSuccess:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));--backgroundCalm:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));--backgroundWarning:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));--backgroundDanger:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));--backgroundLight:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));--backgroundStable:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));--backgroundRoyal:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));--backgroundDark:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));--tabsIconDefault:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));--tabsIconPrimary:var(--textColorDefault40,#f0f0f0);--tabsIconSuccess:var(--textColorSuccess40,#f0f0f0);--tabsIconCalm:var(--textColorCalm40,#f0f0f0);--tabsIconWarning:var(--textColorWarning40,#f0f0f0);--tabsIconDanger:var(--textColorDanger40,#f0f0f0);--tabsIconLight:var(--textColorLight40,#f0f0f0);--tabsIconStable:var(--textColorStable40,#f0f0f0);--tabsIconRoyal:var(--textColorRoyal40,#f0f0f0);--tabsIconDark:var(--textColorDark40,#f0f0f0)}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:var(--fontFamily,"Open Sans","Arial",sans-serif)}a,a:focus,a:active,a:hover{color:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%))}.light,a.light,.color-light{color:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%))}.stable,a.stable,.color-stable{color:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%))}.login-bg{background:var(--backgroundColor30,#546270)}.login-mobile .button.button-positive,.login-mobile .button.button-light{background:var(--backgroundColor30,#546270);border:0;color:var(--textColorWarning40,#f0f0f0)}.login-mobile .button.button-positive span,.login-mobile .button.button-positive i,.login-mobile .button.button-positive.active span,.login-mobile .button.button-positive:active span,.login-mobile .button.button-positive:focus span,.login-mobile .button.button-positive:hover span,.login-mobile .button.button-positive.active i,.login-mobile .button.button-positive:active i,.login-mobile .button.button-positive:focus i,.login-mobile .button.button-positive:hover i,.login-mobile .button.button-light span,.login-mobile .button.button-light i,.login-mobile .button.button-light.active span,.login-mobile .button.button-light:active span,.login-mobile .button.button-light:focus span,.login-mobile .button.button-light:hover span,.login-mobile .button.button-light.active i,.login-mobile .button.button-light:active i,.login-mobile .button.button-light:focus i,.login-mobile .button.button-light:hover i{color:var(--textColorWarning40,#f0f0f0)}.login-mobile .button.button-positive.active,.login-mobile .button.button-positive:active,.login-mobile .button.button-positive.activated,.login-mobile .button.button-light:active,.login-mobile .button.button-light.activated{background:var(--colorLight40,#f0f0f0)}.login-bg img[src="node_modules/cronapp-framework-mobile-js/img/logo.svg"]{filter:brightness(0) invert(1)}#crn-heading-reset,#reset-password-label{color:var(--textColor10,#f0f0f0)}.item,.item-select select{border-color:var(--textColor10,#f0f0f0)}.bar.bar-default{border-color:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));color:var(--textColorPrimary40,#f0f0f0)}.bar.bar-default .button .icon,.bar.bar-default .title{color:var(--textColorPrimary40,#f0f0f0)}.bar.bar-positive{border-color:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));color:var(--textColorDefault40,#f0f0f0)}.bar.bar-positive .button .icon,.bar.bar-positive .title{color:var(--textColorDefault40,#f0f0f0)}.menu-view{background:var(--colorLight60,#303b46);color:var(--textColor10,#f0f0f0)}.button.button-positive{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%))}.button.button-positive:active,.button.button-positive.activated{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%))}.button.button-light.button-outline{border-color:none}.button.button-light.button-outline span,.button.button-light.button-outline i{color:none}.button.button-light.button-outline:active,.button.button-light.button-outline.activated{background:0}.button.button-stable.button-outline{border-color:none}.button.button-stable.button-outline span,.button.button-stable.button-outline i{color:none}.button.button-stable.button-outline:active,.button.button-stable.button-outline.activated{background:0}.tabs-striped.background-default .tabs{background:var(--textColorDefault40,#f0f0f0)}.tabs-striped.tabs-icon-default .tab-item{color:var(--textColorDefault40,#f0f0f0);background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));opacity:.5}.item-input .icon{font-size:12px}#menu-blue .item:hover{background:var(--backgroundColor30,#f4f4f4)}.button.button-default:hover{background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%))}.button.button-default:active{background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%))}.login-mobile .button.button-light{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#f0f0f0);border-radius:20px}.login-mobile .button.button-light:hover{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#f0f0f0)}.login-mobile .button.button-light:active{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#f0f0f0)}.button#button-reset-password{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#fff)}.button#button-reset-password:hover{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#f0f0f0)}.button#button-reset-password:active{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#f0f0f0)}.item-radio input:checked+.radio-content .item-content{background:var(--backgroundColor40,#f2f2f2);color:var(--textColor40,#f0f0f0)}.item-radio .radio-icon,.range .icon{color:var(--textColor40,#f0f0f0)}.item-select:after,.k-i-arrow-60-down::before{color:var(--textColor40,#f0f0f0)}.item input.ng-invalid,.item-input input.ng-invalid{border-bottom:0}input[placeholder]:not([placeholder=""])::placeholder{color:var(--textColor60,#5f5f5f);opacity:1}input:-ms-input-placeholder{color:var(--textColor60,#5f5f5f)}input::-ms-input-placeholder{color:var(--textColor60,#5f5f5f);margin-left:10px}.list-inset .item.item-input input{background:var(--backgroundColor10,#ced0d2);color:var(--textColor70,#434343);border-radius:20px}.modal .item{border-width:1px;border-color:none;background:var(--backgroundColor10,#ced0d2);color:var(--textColor40,#f0f0f0)}.item-input-wrapper{background:var(--backgroundColor40,#f2f2f2)}.ion-search:before{color:var(--textColor40,#434343)}.ion-asterisk:before{font-size:10px}input[type="text"],input[type="email"],input[type="password"]{display:block;padding-top:2px;padding-left:10px;height:34px;line-height:16px}.login-mobile .button{text-transform:none;letter-spacing:0}button#crn-button-signup{letter-spacing:0;border-radius:0;margin:0;height:47px}button#crn-button-signup:hover{border-radius:10px}.color-light{color:var(--colorLight50,#cdc2c2)}.button span,.button i{color:var(--textColorDefault40,#f0f0f0);font-weight:300}.button-bar,.button-bar>.button:first-child,.button-bar>.button:last-child{border-radius:20px}.button.button-default.button-outline{background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));border-color:transparent;color:var(--textColor40,#f0f0f0)}.button.button-default.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-default.button-outline:active{background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%))}.button.button-default.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-default{background:var(--colorDefault,linear-gradient(180deg,#262c32 0,#2d3843 100%));border-radius:20px}.button.button-positive{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%))}.button.button-positive.button-outline{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));border-color:transparent;color:var(--textColorDefault40,#f0f0f0)}.button.button-positive.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-positive.button-outline:active{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%))}.button.button-positive.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-balanced{background:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%))}.button.button-balanced.button-outline{background:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%));border-color:transparent;color:var(--textColorDefault40,#f0f0f0)}.button.button-balanced.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-balanced.button-outline:active{background:var(--colorSuccess,linear-gradient(180deg,#0eda0a 0,#0d840a 100%))}.button.button-balanced.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-calm{background:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%))}.button.button-calm.button-outline{background:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%));border-color:transparent;color:var(--textColorDefault40,#f0f0f0)}.button.button-calm.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-calm.button-outline:active{background:var(--colorCalm,linear-gradient(180deg,#44e1d8 0,#25968f 100%))}.button.button-calm.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-energized{background:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%))}.button.button-energized.button-outline{background:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%));border-color:transparent;color:var(--textColorDefault40,#f0f0f0)}.button.button-energized.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-energized.button-outline:active{background:var(--colorWarning,linear-gradient(180deg,#f58d11 0,#b36305 100%))}.button.button-energized.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-assertive{background:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%))}.button.button-assertive.button-outline{background:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%));border-color:transparent;color:var(--textColorDanger40,#f0f0f0)}.button.button-assertive.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-assertive.button-outline:active{background:var(--colorDanger,linear-gradient(180deg,#f03a3a 0,#7e2121 100%))}.button.button-assertive.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-light{background:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%))}.button.button-light.button-outline{background:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%));border-color:transparent;color:var(--textColorLight40,#f0f0f0)}.button.button-light.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-light.button-outline:active{background:var(--colorLight,linear-gradient(180deg,#8da0b3 0,#2d3843 100%))}.button.button-light.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-stable{background:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%))}.button.button-stable.button-outline{background:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%));border-color:transparent;color:var(--textColorStable40,#434343)}.button.button-stable.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-stable.button-outline:active{background:var(--colorStable,linear-gradient(180deg,#818181 0,#3e3e3e 100%))}.button.button-stable.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-royal{background:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%))}.button.button-royal.button-outline{background:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%));border-color:transparent;color:var(--textColorRoyal40,#f0f0f0)}.button.button-royal.button-outline span{color:var(--textColor40,#f0f0f0)}.button.button-royal.button-outline:active{background:var(--colorRoyal,linear-gradient(180deg,#0e3760 0,#2d3843 100%))}.button.button-royal.button-outline i{color:var(--textColor40,#f0f0f0)}.button.button-dark{background:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%))}.button.button-dark.button-outline{background:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%));border-color:transparent;color:var(--textColorDark40,#f0f0f0)}.button.button-dark.button-outline span{color:var(--textColorDark40,#f0f0f0)}.button.button-dark.button-outline:active{background:var(--colorDark,linear-gradient(180deg,#000 0,#0f1e2e 100%))}.button.button-dark.button-outline i{color:var(--textColor40,#f0f0f0)}.font-size-200 i{font-size:10px}.k-chat .k-alt .k-bubble{background:var(--colorDefault40,#442b69);color:var(--textColorDefault40,#f0f0f0);border-color:transparent}.k-chat .k-message-box .k-button:hover{color:var(--colorDefault40,#442b69)}.button#button-reset-password{background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%));color:var(--textColorWarning40,#fff);border-radius:20px}button#crn-button-signup{letter-spacing:0;border-radius:20px;margin:0;height:47px}.dynamicImage .buttomImage{justify-content:center;align-items:center;display:flex;background:var(--colorPrimary,linear-gradient(180deg,#197fdd 0,#08427a 100%))}.crn-ion-segment-light ul li a,.crn-ion-segment-modern ul li a,.crn-ion-segment-classic ul li a{height:100%;background:var(--backgroundColor30,#546270);color:var(--textColor40,#f0f0f0)}.item h3:last-child,.item h3,.item h2{color:var(--textColorDark40,#f0f0f0)}.item-icon-left .icon:before,.item-complex .item-content{color:var(--textColorDark40,#f0f0f0)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import '../../../cronapp-lib-js/dist/js/kendo-ui/styles/kendo.material-v2.min.css';@import '../../lib/kendo/kendo.default-v2.min.css';@import '../../css/app_2.9.css';@import 'custom/theme-general/theme-general.css';@import 'custom/krypton/custom-krypton.css';
|