mis-crystal-design-system 18.0.21-test-1 → 18.0.22

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,149 @@
1
+ // PRIMARY_COLORS -----------------------
2
+ $pmry_100: #CBDDFB;
3
+ $pmry_200: #99BAF7;
4
+ $pmry_500: #0937B2;
5
+ $pmry_400: #3C68D0;
6
+ $pmry_600: #062A99;
7
+ $pmry_700: #041F80;
8
+ $pmry_300: #638FE7;
9
+ $pmry_800: #021567;
10
+ $pmry_900: #010F55;
11
+
12
+ // SECONDARY_COLORS ---------------------
13
+ $sec_d_purple: #40447F;
14
+ $sec_maroon: #6B034E;
15
+ $sec_mud_red: #B23600;
16
+ $sec_orange: #ED711C;
17
+ $sec_purple: #815FD5;
18
+ $sec_teal: #10ADAE;
19
+ $sec_yellow: #D4900C;
20
+ $sec_green: #547F40;
21
+ $sec_bright_green: #27D22E;
22
+ $sec_dark_teal: #035F6B;
23
+ $sec_chocolate: #7C2F33;
24
+ $sec_rube_pink: #C13D6D;
25
+ $sec_cerulean: #0087B2;
26
+
27
+ //SEMANTIC COLORS --------------------------
28
+ $sem_error: #B00020;
29
+ $sem_info: #0091FF;
30
+ $sem_warning: #FF9D00;
31
+ $sem_success: #38AF49;
32
+
33
+ //grey -------------------------------------
34
+ $grey_bg-1: #FAFAFA;
35
+ $grey_bg: #F5F5F5;
36
+ $grey_seperators: #E0E0E0;
37
+ $grey_disabled: #C8CDD3;
38
+ $grey_hover: #F5F7FC;
39
+ $grey_pressed: #E6EBF7;
40
+ $grey_row: #F5F7FC;
41
+
42
+ //decor ------------------------------------
43
+ $dec_light-yellow:#F4E7C3;
44
+ $dec_light-purple:#DACFF9;
45
+ $dec_light-green:#E4F5E9;
46
+ $dec_light-green2:#F1FFF3;
47
+ $dec_light-pink:#FAE1EA;
48
+ $dec_:#F4CBC1;
49
+ $dec_lt-orange:#FAEFED;
50
+ $dec_light-blue:#CFECF9;
51
+ $dec_row-selection:#F1FDF8;
52
+ $dec_row-selection2:#F2FBFF;
53
+ $dec_row-lines:#D3E1E9;
54
+
55
+ //Text -------------------------------------
56
+ $text_white: #FFFFFF;
57
+ $text-disabled: #929DAB;
58
+ $text_muted: #6A737D;
59
+ $text_black: #181F33;
60
+
61
+ //meeting-rooms ----------------------------
62
+ $MR_solid_blue2: #C8D5F6;
63
+ $MR_solid_purple: #C9C3FB;
64
+ $MR_solid_orange: #EEAC9F;
65
+ $MR_solid_green: #ACDADA;
66
+ $MR_solid_brown: #E8C8AF;
67
+ $MR_solid_yellow: #FFEFC7;
68
+ $MR_solid_blue: #BBE6FF;
69
+ $MR_solid_pink: #FFC6F2;
70
+
71
+ //transparency -----------------------------
72
+ $tr_hover: #F0F3FA;
73
+ $tr_pressed: #DAE1F3;
74
+
75
+ :root{
76
+ // PRIMARY_COLORS -----------------------
77
+ --pmry-200 : #{$pmry_200};
78
+ --pmry-100 : #{$pmry_100};
79
+ --pmry-500 : #{$pmry_500};
80
+ --pmry-400 : #{$pmry_400};
81
+ --pmry-600 : #{$pmry_600};
82
+ --pmry-700 : #{$pmry_700};
83
+ --pmry-300 : #{$pmry_300};
84
+ --pmry-800 : #{$pmry_800};
85
+ --pmry-900 : #{$pmry_900};
86
+
87
+ // SECONDARY_COLORS ---------------------
88
+ --sec-d-purple: #{$sec_d_purple};
89
+ --sec-maroon: #{$sec_maroon};
90
+ --sec-mud-red: #{$sec_mud_red};
91
+ --sec-orange: #{$sec_orange};
92
+ --sec-purple: #{$sec_purple};
93
+ --sec-teal: #{$sec_teal};
94
+ --sec-yellow: #{$sec_yellow};
95
+ --sec-green: #{$sec_green};
96
+ --sec-bright-green: #{$sec_bright_green};
97
+ --sec-dark-teal: #{$sec_dark_teal};
98
+ --sec-chocolate: #{$sec_chocolate};
99
+ --sec-rube-pink: #{$sec_rube_pink};
100
+ --sec-cerulean: #{$sec_cerulean};
101
+
102
+ //SEMANTIC COLORS --------------------------
103
+ --sem-error: #{$sem_error};
104
+ --sem-info: #{$sem_info};
105
+ --sem-warning: #{$sem_warning};
106
+ --sem-success: #{$sem_success};
107
+
108
+ //grey -------------------------------------
109
+ --grey-bg-1: #{$grey_bg-1};
110
+ --grey-bg: #{$grey_bg};
111
+ --grey-seperators: #{$grey_seperators};
112
+ --grey-disabled: #{$grey_disabled};
113
+ --grey-hover: #{$grey_hover};
114
+ --grey-pressed: #{$grey_pressed};
115
+ --grey-row: #{$grey_row};
116
+
117
+ //decor ------------------------------------
118
+ --dec-light-yellow : #{$dec_light-yellow};
119
+ --dec-light-purple: #{$dec_light-purple};
120
+ --dec-light-green: #{$dec_light-green};
121
+ --dec-light-green2: #{$dec_light-green2};
122
+ --dec-light-pink: #{$dec_light-pink};
123
+ --dec-: #{$dec_};
124
+ --dec-lt-orange: #{$dec_lt-orange};
125
+ --dec-light-blue: #{$dec_light-blue};
126
+ --dec-row-selection: #{$dec_row-selection};
127
+ --dec-row-selection2: #{$dec_row-selection2};
128
+ --dec-row-lines: #{$dec_row-lines};
129
+
130
+ //Text -------------------------------------
131
+ --text-white: #{$text_white};
132
+ --text-disabled: #{$text-disabled};
133
+ --text-muted: #{$text_muted};
134
+ --text-black: #{$text_black};
135
+
136
+ //meeting-rooms ----------------------------
137
+ --MR-solid-blue2 :#{$MR_solid_blue2};
138
+ --MR-solid-purple :#{$MR_solid_purple};
139
+ --MR-solid-orange :#{$MR_solid_orange};
140
+ --MR-solid-green :#{$MR_solid_green};
141
+ --MR-solid-brown :#{$MR_solid_brown};
142
+ --MR-solid-yellow :#{$MR_solid_yellow};
143
+ --MR-solid-blue :#{$MR_solid_blue};
144
+ --MR-solid-pink :#{$MR_solid_pink};
145
+
146
+ //transparency -----------------------------
147
+ --tr-hover :#{$tr_hover};
148
+ --tr-pressed :#{$tr_pressed};
149
+ }
@@ -0,0 +1,321 @@
1
+ //Flex---------------------------------------------------------------
2
+ .flex {
3
+ display: flex;
4
+ }
5
+
6
+ //Flex Direction----------------------------------
7
+ .flex-row {
8
+ flex-direction: row;
9
+ }
10
+ .flex-row-reverse {
11
+ flex-direction: row-reverse;
12
+ }
13
+ .flex-col {
14
+ flex-direction: column;
15
+ }
16
+ .flex-col-reverse {
17
+ flex-direction: column-reverse;
18
+ }
19
+ //Flex Basis-------------------------------------
20
+ .basis-0 {
21
+ flex-basis: 0px;
22
+ }
23
+ .basis-1 {
24
+ flex-basis: 0.25rem; /* 4px */
25
+ }
26
+ .basis-2 {
27
+ flex-basis: 0.5rem; /* 8px */
28
+ }
29
+ .basis-3 {
30
+ flex-basis: 0.75rem; /* 12px */
31
+ }
32
+ .basis-4 {
33
+ flex-basis: 1rem; /* 16px */
34
+ }
35
+ .basis-5 {
36
+ flex-basis: 1.25rem; /* 20px */
37
+ }
38
+ .basis-6 {
39
+ flex-basis: 1.5rem; /* 24px */
40
+ }
41
+ .basis-7 {
42
+ flex-basis: 1.75rem; /* 28px */
43
+ }
44
+ .basis-8 {
45
+ flex-basis: 2rem; /* 32px */
46
+ }
47
+ .basis-9 {
48
+ flex-basis: 2.25rem; /* 36px */
49
+ }
50
+ .basis-10 {
51
+ flex-basis: 2.5rem; /* 40px */
52
+ }
53
+ .basis-11 {
54
+ flex-basis: 2.75rem; /* 44px */
55
+ }
56
+ .basis-12 {
57
+ flex-basis: 3rem; /* 48px */
58
+ }
59
+ .basis-14 {
60
+ flex-basis: 3.5rem; /* 56px */
61
+ }
62
+ .basis-16 {
63
+ flex-basis: 4rem; /* 64px */
64
+ }
65
+ .basis-20 {
66
+ flex-basis: 5rem; /* 80px */
67
+ }
68
+ .basis-24 {
69
+ flex-basis: 6rem; /* 96px */
70
+ }
71
+ .basis-28 {
72
+ flex-basis: 7rem; /* 112px */
73
+ }
74
+ .basis-32 {
75
+ flex-basis: 8rem; /* 128px */
76
+ }
77
+ .basis-36 {
78
+ flex-basis: 9rem; /* 144px */
79
+ }
80
+ .basis-40 {
81
+ flex-basis: 10rem; /* 160px */
82
+ }
83
+ .basis-44 {
84
+ flex-basis: 11rem; /* 176px */
85
+ }
86
+ .basis-48 {
87
+ flex-basis: 12rem; /* 192px */
88
+ }
89
+ .basis-52 {
90
+ flex-basis: 13rem; /* 208px */
91
+ }
92
+ .basis-56 {
93
+ flex-basis: 14rem; /* 224px */
94
+ }
95
+ .basis-60 {
96
+ flex-basis: 15rem; /* 240px */
97
+ }
98
+ .basis-64 {
99
+ flex-basis: 16rem; /* 256px */
100
+ }
101
+ .basis-72 {
102
+ flex-basis: 18rem; /* 288px */
103
+ }
104
+ .basis-80 {
105
+ flex-basis: 20rem; /* 320px */
106
+ }
107
+ .basis-96 {
108
+ flex-basis: 24rem; /* 384px */
109
+ }
110
+ .basis-auto {
111
+ flex-basis: auto;
112
+ }
113
+ .basis-px {
114
+ flex-basis: 1px;
115
+ }
116
+ .basis-0-5 {
117
+ flex-basis: 0.125rem; /* 2px */
118
+ }
119
+ .basis-1-5 {
120
+ flex-basis: 0.375rem; /* 6px */
121
+ }
122
+ .basis-2-5 {
123
+ flex-basis: 0.625rem; /* 10px */
124
+ }
125
+ .basis-3-5 {
126
+ flex-basis: 0.875rem; /* 14px */
127
+ }
128
+ .basis-50per {
129
+ flex-basis: 50%;
130
+ }
131
+ .basis-33per {
132
+ flex-basis: 33.333333%;
133
+ }
134
+ .basis-66per {
135
+ flex-basis: 66.666667%;
136
+ }
137
+ .basis-25per {
138
+ flex-basis: 25%;
139
+ }
140
+ .basis-75per {
141
+ flex-basis: 75%;
142
+ }
143
+ .basis-20per {
144
+ flex-basis: 20%;
145
+ }
146
+ .basis-40per {
147
+ flex-basis: 40%;
148
+ }
149
+ .basis-60per {
150
+ flex-basis: 60%;
151
+ }
152
+ .basis-80per {
153
+ flex-basis: 80%;
154
+ }
155
+ .basis-full {
156
+ flex-basis: 100%;
157
+ }
158
+
159
+ //Flex wrap----------------------------------------------------
160
+ .flex-wrap {
161
+ flex-wrap: wrap;
162
+ }
163
+ .flex-wrap-reverse {
164
+ flex-wrap: wrap-reverse;
165
+ }
166
+ .flex-nowrap {
167
+ flex-wrap: nowrap;
168
+ }
169
+
170
+ //Flex Grow and Shrink-----------------------------------------
171
+ .grow {
172
+ flex-grow: 1;
173
+ }
174
+ .grow-0 {
175
+ flex-grow: 0;
176
+ }
177
+ .shrink {
178
+ flex-shrink: 1;
179
+ }
180
+ .shrink-0 {
181
+ flex-shrink: 0;
182
+ }
183
+
184
+ //Flex order---------------------------------------------------
185
+ .order-1 {
186
+ order: 1;
187
+ }
188
+ .order-2 {
189
+ order: 2;
190
+ }
191
+ .order-3 {
192
+ order: 3;
193
+ }
194
+ .order-4 {
195
+ order: 4;
196
+ }
197
+ .order-5 {
198
+ order: 5;
199
+ }
200
+ .order-6 {
201
+ order: 6;
202
+ }
203
+ .order-7 {
204
+ order: 7;
205
+ }
206
+ .order-8 {
207
+ order: 8;
208
+ }
209
+ .order-9 {
210
+ order: 9;
211
+ }
212
+ .order-10 {
213
+ order: 10;
214
+ }
215
+ .order-11 {
216
+ order: 11;
217
+ }
218
+ .order-12 {
219
+ order: 12;
220
+ }
221
+ .order-first {
222
+ order: -9999;
223
+ }
224
+ .order-last {
225
+ order: 9999;
226
+ }
227
+ .order-none {
228
+ order: 0;
229
+ }
230
+
231
+ //Justify content-------------------------------------------------------
232
+ .justify-normal {
233
+ justify-content: normal;
234
+ }
235
+ .justify-start {
236
+ justify-content: flex-start;
237
+ }
238
+ .justify-end {
239
+ justify-content: flex-end;
240
+ }
241
+ .justify-center {
242
+ justify-content: center;
243
+ }
244
+ .justify-between {
245
+ justify-content: space-between;
246
+ }
247
+ .justify-around {
248
+ justify-content: space-around;
249
+ }
250
+ .justify-evenly {
251
+ justify-content: space-evenly;
252
+ }
253
+ .justify-stretch {
254
+ justify-content: stretch;
255
+ }
256
+
257
+ //Align content----------------------------------------------------------
258
+ .content-normal {
259
+ align-content: normal;
260
+ }
261
+ .content-center {
262
+ align-content: center;
263
+ }
264
+ .content-start {
265
+ align-content: flex-start;
266
+ }
267
+ .content-end {
268
+ align-content: flex-end;
269
+ }
270
+ .content-between {
271
+ align-content: space-between;
272
+ }
273
+ .content-around {
274
+ align-content: space-around;
275
+ }
276
+ .content-evenly {
277
+ align-content: space-evenly;
278
+ }
279
+ .content-baseline {
280
+ align-content: baseline;
281
+ }
282
+ .content-stretch {
283
+ align-content: stretch;
284
+ }
285
+
286
+ //Align items------------------------------------------------
287
+ .items-start {
288
+ align-items: flex-start;
289
+ }
290
+ .items-end {
291
+ align-items: flex-end;
292
+ }
293
+ .items-center {
294
+ align-items: center;
295
+ }
296
+ .items-baseline {
297
+ align-items: baseline;
298
+ }
299
+ .items-stretch {
300
+ align-items: stretch;
301
+ }
302
+
303
+ //Align self---------------------------------------------------
304
+ .self-auto {
305
+ align-self: auto;
306
+ }
307
+ .self-start {
308
+ align-self: flex-start;
309
+ }
310
+ .self-end {
311
+ align-self: flex-end;
312
+ }
313
+ .self-center {
314
+ align-self: center;
315
+ }
316
+ .self-stretch {
317
+ align-self: stretch;
318
+ }
319
+ .self-baseline {
320
+ align-self: baseline;
321
+ }
@@ -0,0 +1,124 @@
1
+ .h1 {
2
+ font-size: 40px;
3
+ font-weight: 400;
4
+ letter-spacing: 0px;
5
+ line-height: 48px;
6
+ }
7
+ .h2 {
8
+ font-size: 32px;
9
+ font-weight: 400;
10
+ letter-spacing: 0px;
11
+ line-height: 40px;
12
+ }
13
+ .h3 {
14
+ font-size: 28px;
15
+ font-weight: 400;
16
+ letter-spacing: 0px;
17
+ line-height: 36px;
18
+ }
19
+ .h4 {
20
+ font-size: 24px;
21
+ font-weight: 400;
22
+ letter-spacing: 0px;
23
+ line-height: 32px;
24
+ }
25
+ .h5-b {
26
+ font-size: 20px;
27
+ font-weight: 700;
28
+ letter-spacing: 0.25px;
29
+ line-height: 28px;
30
+ }
31
+ .h5 {
32
+ font-size: 20px;
33
+ font-weight: 400;
34
+ letter-spacing: 0.15px;
35
+ line-height: 28px;
36
+ }
37
+ .h6-b{
38
+ font-size: 16px;
39
+ font-weight: 700;
40
+ letter-spacing: 0px;
41
+ line-height: 24px;
42
+ }
43
+ .h6{
44
+ font-size: 16px;
45
+ font-weight: 400;
46
+ letter-spacing: 0px;
47
+ line-height: 24px;
48
+ }
49
+ .p {
50
+ font-size: 16px;
51
+ font-weight: 400;
52
+ letter-spacing: 0px;
53
+ line-height: 180%;
54
+ }
55
+ .h7-b {
56
+ font-size: 14px;
57
+ font-weight: 700;
58
+ letter-spacing: 0.25px;
59
+ line-height: 20px;
60
+ }
61
+ .h7 {
62
+ font-size: 14px;
63
+ font-weight: 400;
64
+ letter-spacing: 0.2px;
65
+ line-height: 20px;
66
+ }
67
+
68
+ .h8-b {
69
+ font-size: 12px;
70
+ font-weight: 700;
71
+ letter-spacing: 0.25px;
72
+ line-height: 18px;
73
+ }
74
+ .h8 {
75
+ font-size: 12px;
76
+ font-weight: 400;
77
+ letter-spacing: 0.2px;
78
+ line-height: 18px;
79
+ }
80
+ .h9 {
81
+ font-size: 10px;
82
+ font-weight: 400;
83
+ letter-spacing: 0px;
84
+ line-height: 15px;
85
+ }
86
+
87
+ //button fonts ------------------------------------------------------------------
88
+
89
+ .btn-lg-b {
90
+ font-size: 16px;
91
+ font-weight: 700;
92
+ letter-spacing: 0.5px;
93
+ line-height: 24px;
94
+ }
95
+ .btn-lg {
96
+ font-size: 16px;
97
+ font-weight: 400;
98
+ letter-spacing: 0.2px;
99
+ line-height: 24px;
100
+ }
101
+ .btn-sm {
102
+ font-size: 14px;
103
+ font-weight: 400;
104
+ letter-spacing: 0.25px;
105
+ line-height: 20px;
106
+ }
107
+ .btn-link {
108
+ font-size: 16px;
109
+ font-weight: 400;
110
+ letter-spacing: 0px;
111
+ line-height: 24px;
112
+ }
113
+ .display-1 {
114
+ font-size: 48px;
115
+ font-weight: 400;
116
+ letter-spacing: 0px;
117
+ line-height: 56px;
118
+ }
119
+ .display-2 {
120
+ font-size: 14px;
121
+ font-weight: 400;
122
+ letter-spacing: 0.5px;
123
+ line-height: 20px;
124
+ }