@unlk/keymaster 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/keymaster.css +38766 -0
- package/dist/css/keymaster.css.map +1 -0
- package/dist/css/keymaster.min.css +38 -0
- package/dist/css/keymaster.min.css.map +1 -0
- package/dist/js/keymaster.js +11722 -0
- package/dist/js/keymaster.js.map +1 -0
- package/dist/js/keymaster.min.js +164 -0
- package/dist/js/keymaster.min.js.map +1 -0
- package/fonts/NeulisNeue-Medium.woff +0 -0
- package/fonts/NeulisNeue-Medium.woff2 +0 -0
- package/fonts/NeulisNeue-MediumItalic.woff +0 -0
- package/fonts/NeulisNeue-MediumItalic.woff2 +0 -0
- package/fonts/STIXTwoText-Italic.ttf +0 -0
- package/fonts/STIXTwoText-Italic.woff +0 -0
- package/fonts/STIXTwoText-Italic.woff2 +0 -0
- package/fonts/WixMadeforDisplay-Bold.ttf +0 -0
- package/fonts/WixMadeforDisplay-Bold.woff +0 -0
- package/fonts/WixMadeforDisplay-Bold.woff2 +0 -0
- package/fonts/WixMadeforDisplay-Regular.ttf +0 -0
- package/fonts/WixMadeforDisplay-Regular.woff +0 -0
- package/fonts/WixMadeforDisplay-Regular.woff2 +0 -0
- package/js/bootstrap.js +1 -0
- package/js/carousel-caption.js +39 -0
- package/package.json +5 -2
- package/scss/assets/bootstrap5/_variables.scss +2 -0
- package/scss/keymaster.scss +20 -3
- package/scss/theme/_accordion.scss +62 -0
- package/scss/theme/_alert.scss +24 -0
- package/scss/theme/_badge.scss +19 -0
- package/scss/theme/_buttons.scss +52 -0
- package/scss/theme/_carousel.scss +42 -0
- package/scss/theme/_maps-overrides.scss +44 -0
- package/scss/theme/_type.scss +3 -0
- package/scss/theme/_typography.scss +36 -0
- package/scss/theme/_utilities-overrides.scss +55 -0
- package/scss/theme/_variables-overrides.scss +417 -0
- package/scss/theme/_variables.scss +33 -0
- package/scss/theme/mixins/_badge.scss +5 -0
- package/scss/theme/mixins/_buttons.scss +55 -0
- package/scss/theme/_overrides.scss +0 -266
- package/scss/theme/_utility-overrides.scss +0 -7
@@ -1,266 +0,0 @@
|
|
1
|
-
@import "../assets/bootstrap5/functions";
|
2
|
-
|
3
|
-
$enable-shadows: true;
|
4
|
-
$enable-validation-icons: false;
|
5
|
-
|
6
|
-
// Fontawesome
|
7
|
-
$fa-font-path: "../../../fonts" !default;
|
8
|
-
|
9
|
-
// Font
|
10
|
-
$font-size-base: 1rem;
|
11
|
-
$font-size-lg: $font-size-base * 1.125;
|
12
|
-
|
13
|
-
// Colors
|
14
|
-
$foundation: #1D1F50;
|
15
|
-
$blueprint: #3E51A2;
|
16
|
-
$entryway: #3B7BBF;
|
17
|
-
$turnkey:#6346D3;
|
18
|
-
$sunglow: #FBCD2F;
|
19
|
-
$green: #198754;
|
20
|
-
$red: #b50505;
|
21
|
-
$gray: #9e9e9e;
|
22
|
-
|
23
|
-
$white: #fff;
|
24
|
-
$gray-25: tint-color($gray, 95%);
|
25
|
-
$gray-50: tint-color($gray, 90%);
|
26
|
-
$gray-100: tint-color($gray, 80%);
|
27
|
-
$gray-200: tint-color($gray, 60%);
|
28
|
-
$gray-300: tint-color($gray, 40%);
|
29
|
-
$gray-400: tint-color($gray, 20%);
|
30
|
-
$gray-500: $gray;
|
31
|
-
$gray-600: shade-color($gray, 20%);
|
32
|
-
$gray-700: shade-color($gray, 40%);
|
33
|
-
$gray-800: shade-color($gray, 60%);
|
34
|
-
$gray-900: shade-color($gray, 80%);
|
35
|
-
$black: #000;
|
36
|
-
|
37
|
-
$grays: (
|
38
|
-
"25": $gray-25,
|
39
|
-
"50": $gray-50,
|
40
|
-
"100": $gray-100,
|
41
|
-
"200": $gray-200,
|
42
|
-
"300": $gray-300,
|
43
|
-
"400": $gray-400,
|
44
|
-
"500": $gray-500,
|
45
|
-
"600": $gray-600,
|
46
|
-
"700": $gray-700,
|
47
|
-
"800": $gray-800,
|
48
|
-
"900": $gray-900
|
49
|
-
);
|
50
|
-
|
51
|
-
$colors: (
|
52
|
-
"foundation": $foundation,
|
53
|
-
"blueprint": $blueprint,
|
54
|
-
"entryway": $entryway,
|
55
|
-
"sunglow": $sunglow,
|
56
|
-
"green": $green,
|
57
|
-
"turnkey": $turnkey,
|
58
|
-
"red": $red,
|
59
|
-
"gray": $gray-600,
|
60
|
-
);
|
61
|
-
|
62
|
-
// Color variants
|
63
|
-
$foundation-100: tint-color($foundation, 80%);
|
64
|
-
$foundation-200: tint-color($foundation, 60%);
|
65
|
-
$foundation-300: tint-color($foundation, 40%);
|
66
|
-
$foundation-400: tint-color($foundation, 20%);
|
67
|
-
$foundation-500: $foundation;
|
68
|
-
$foundation-600: shade-color($foundation, 20%);
|
69
|
-
$foundation-700: shade-color($foundation, 40%);
|
70
|
-
$foundation-800: shade-color($foundation, 60%);
|
71
|
-
$foundation-900: shade-color($foundation, 80%);
|
72
|
-
|
73
|
-
$blueprint-100: tint-color($blueprint, 80%);
|
74
|
-
$blueprint-200: tint-color($blueprint, 60%);
|
75
|
-
$blueprint-300: tint-color($blueprint, 40%);
|
76
|
-
$blueprint-400: tint-color($blueprint, 20%);
|
77
|
-
$blueprint-500: $blueprint;
|
78
|
-
$blueprint-600: shade-color($blueprint, 20%);
|
79
|
-
$blueprint-700: shade-color($blueprint, 40%);
|
80
|
-
$blueprint-800: shade-color($blueprint, 60%);
|
81
|
-
$blueprint-900: shade-color($blueprint, 80%);
|
82
|
-
|
83
|
-
$entryway-100: tint-color($entryway, 80%);
|
84
|
-
$entryway-200: tint-color($entryway, 60%);
|
85
|
-
$entryway-300: tint-color($entryway, 40%);
|
86
|
-
$entryway-400: tint-color($entryway, 20%);
|
87
|
-
$entryway-500: $entryway;
|
88
|
-
$entryway-600: shade-color($entryway, 20%);
|
89
|
-
$entryway-700: shade-color($entryway, 40%);
|
90
|
-
$entryway-800: shade-color($entryway, 60%);
|
91
|
-
$entryway-900: shade-color($entryway, 80%);
|
92
|
-
|
93
|
-
$sunglow-100: tint-color($sunglow, 80%);
|
94
|
-
$sunglow-200: tint-color($sunglow, 60%);
|
95
|
-
$sunglow-300: tint-color($sunglow, 40%);
|
96
|
-
$sunglow-400: tint-color($sunglow, 20%);
|
97
|
-
$sunglow-500: $sunglow;
|
98
|
-
$sunglow-600: shade-color($sunglow, 20%);
|
99
|
-
$sunglow-700: shade-color($sunglow, 40%);
|
100
|
-
$sunglow-800: shade-color($sunglow, 60%);
|
101
|
-
$sunglow-900: shade-color($sunglow, 80%);
|
102
|
-
|
103
|
-
$turnkey-100: tint-color($turnkey, 80%);
|
104
|
-
$turnkey-200: tint-color($turnkey, 60%);
|
105
|
-
$turnkey-300: tint-color($turnkey, 40%);
|
106
|
-
$turnkey-400: tint-color($turnkey, 20%);
|
107
|
-
$turnkey-500: $turnkey;
|
108
|
-
$turnkey-600: shade-color($turnkey, 20%);
|
109
|
-
$turnkey-700: shade-color($turnkey, 40%);
|
110
|
-
$turnkey-800: shade-color($turnkey, 60%);
|
111
|
-
$turnkey-900: shade-color($turnkey, 80%);
|
112
|
-
|
113
|
-
$green-100: tint-color($green, 80%);
|
114
|
-
$green-200: tint-color($green, 60%);
|
115
|
-
$green-300: tint-color($green, 40%);
|
116
|
-
$green-400: tint-color($green, 20%);
|
117
|
-
$green-500: $green;
|
118
|
-
$green-600: shade-color($green, 20%);
|
119
|
-
$green-700: shade-color($green, 40%);
|
120
|
-
$green-800: shade-color($green, 60%);
|
121
|
-
$green-900: shade-color($green, 80%);
|
122
|
-
|
123
|
-
$red-100: tint-color($red, 80%);
|
124
|
-
$red-200: tint-color($red, 60%);
|
125
|
-
$red-300: tint-color($red, 40%);
|
126
|
-
$red-400: tint-color($red, 20%);
|
127
|
-
$red-500: $red;
|
128
|
-
$red-600: shade-color($red, 20%);
|
129
|
-
$red-700: shade-color($red, 40%);
|
130
|
-
$red-800: shade-color($red, 60%);
|
131
|
-
$red-900: shade-color($red, 80%);
|
132
|
-
|
133
|
-
$foundations: (
|
134
|
-
"foundation-100": $foundation-100,
|
135
|
-
"foundation-200": $foundation-200,
|
136
|
-
"foundation-300": $foundation-300,
|
137
|
-
"foundation-400": $foundation-400,
|
138
|
-
"foundation-500": $foundation-500,
|
139
|
-
"foundation-600": $foundation-600,
|
140
|
-
"foundation-700": $foundation-700,
|
141
|
-
"foundation-800": $foundation-800,
|
142
|
-
"foundation-900": $foundation-900
|
143
|
-
);
|
144
|
-
|
145
|
-
$blueprints: (
|
146
|
-
"blueprint-100": $blueprint-100,
|
147
|
-
"blueprint-200": $blueprint-200,
|
148
|
-
"blueprint-300": $blueprint-300,
|
149
|
-
"blueprint-400": $blueprint-400,
|
150
|
-
"blueprint-500": $blueprint-500,
|
151
|
-
"blueprint-600": $blueprint-600,
|
152
|
-
"blueprint-700": $blueprint-700,
|
153
|
-
"blueprint-800": $blueprint-800,
|
154
|
-
"blueprint-900": $blueprint-900
|
155
|
-
);
|
156
|
-
|
157
|
-
$entryways: (
|
158
|
-
"entryway-100": $entryway-100,
|
159
|
-
"entryway-200": $entryway-200,
|
160
|
-
"entryway-300": $entryway-300,
|
161
|
-
"entryway-400": $entryway-400,
|
162
|
-
"entryway-500": $entryway-500,
|
163
|
-
"entryway-600": $entryway-600,
|
164
|
-
"entryway-700": $entryway-700,
|
165
|
-
"entryway-800": $entryway-800,
|
166
|
-
"entryway-900": $entryway-900
|
167
|
-
);
|
168
|
-
|
169
|
-
$sunglows: (
|
170
|
-
"sunglow-100": $sunglow-100,
|
171
|
-
"sunglow-200": $sunglow-200,
|
172
|
-
"sunglow-300": $sunglow-300,
|
173
|
-
"sunglow-400": $sunglow-400,
|
174
|
-
"sunglow-500": $sunglow-500,
|
175
|
-
"sunglow-600": $sunglow-600,
|
176
|
-
"sunglow-700": $sunglow-700,
|
177
|
-
"sunglow-800": $sunglow-800,
|
178
|
-
"sunglow-900": $sunglow-900
|
179
|
-
);
|
180
|
-
|
181
|
-
$turnkeys: (
|
182
|
-
"turnkey-100": $turnkey-100,
|
183
|
-
"turnkey-200": $turnkey-200,
|
184
|
-
"turnkey-300": $turnkey-300,
|
185
|
-
"turnkey-400": $turnkey-400,
|
186
|
-
"turnkey-500": $turnkey-500,
|
187
|
-
"turnkey-600": $turnkey-600,
|
188
|
-
"turnkey-700": $turnkey-700,
|
189
|
-
"turnkey-800": $turnkey-800,
|
190
|
-
"turnkey-900": $turnkey-900
|
191
|
-
);
|
192
|
-
|
193
|
-
$reds: (
|
194
|
-
"red-100": $red-100,
|
195
|
-
"red-200": $red-200,
|
196
|
-
"red-300": $red-300,
|
197
|
-
"red-400": $red-400,
|
198
|
-
"red-500": $red-500,
|
199
|
-
"red-600": $red-600,
|
200
|
-
"red-700": $red-700,
|
201
|
-
"red-800": $red-800,
|
202
|
-
"red-900": $red-900
|
203
|
-
);
|
204
|
-
|
205
|
-
$primary: $blueprint;
|
206
|
-
$secondary: $entryway;
|
207
|
-
$success: $green;
|
208
|
-
$action: $turnkey;
|
209
|
-
$warning: $sunglow;
|
210
|
-
$danger: $red;
|
211
|
-
$light: $white;
|
212
|
-
$dark: $gray-900;
|
213
|
-
|
214
|
-
$theme-colors: (
|
215
|
-
"primary": $primary,
|
216
|
-
"secondary": $secondary,
|
217
|
-
"success": $success,
|
218
|
-
"action": $action,
|
219
|
-
"warning": $warning,
|
220
|
-
"danger": $danger,
|
221
|
-
"light": $light,
|
222
|
-
"dark": $dark,
|
223
|
-
);
|
224
|
-
|
225
|
-
|
226
|
-
// Body
|
227
|
-
$body-color: $gray-900;
|
228
|
-
|
229
|
-
// Grid breakpoints
|
230
|
-
$grid-breakpoints: (
|
231
|
-
xs: 0,
|
232
|
-
sm: 576px,
|
233
|
-
md: 768px,
|
234
|
-
lg: 992px,
|
235
|
-
xl: 1200px,
|
236
|
-
xxl: 1400px,
|
237
|
-
xxxl: 1600px
|
238
|
-
);
|
239
|
-
|
240
|
-
// Grid containers
|
241
|
-
$container-max-widths: (
|
242
|
-
xs: 100%,
|
243
|
-
sm: 540px,
|
244
|
-
md: 720px,
|
245
|
-
lg: 960px,
|
246
|
-
xl: 1140px,
|
247
|
-
xxl: 1320px,
|
248
|
-
xxxl: 1510px
|
249
|
-
);
|
250
|
-
|
251
|
-
// Headings
|
252
|
-
$headings-color: $gray-800;
|
253
|
-
|
254
|
-
// Tables
|
255
|
-
$table-bg-scale: -80% !default;
|
256
|
-
|
257
|
-
$table-variants: (
|
258
|
-
"primary": shift-color($primary, $table-bg-scale),
|
259
|
-
"secondary": shift-color($secondary, $table-bg-scale),
|
260
|
-
"action": shift-color($action, $table-bg-scale),
|
261
|
-
"success": shift-color($success, $table-bg-scale),
|
262
|
-
"warning": shift-color($warning, $table-bg-scale),
|
263
|
-
"danger": shift-color($danger, $table-bg-scale),
|
264
|
-
"light": $light,
|
265
|
-
"dark": $dark,
|
266
|
-
);
|
@@ -1,7 +0,0 @@
|
|
1
|
-
@import "../assets/bootstrap5/variables";
|
2
|
-
@import "../assets/bootstrap5/variables-dark";
|
3
|
-
@import "../assets/bootstrap5/maps";
|
4
|
-
@import "../assets/bootstrap5/utilities";
|
5
|
-
@import "../assets/bootstrap5/vendor/rfs";
|
6
|
-
|
7
|
-
$all-colors: map-merge-multiple($foundations, $blueprints, $entryways, $turnkeys, $sunglows, $greens, $reds);
|