@vixcom/ui 1.0.0
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/.firebaserc +17 -0
- package/.github/workflows/deploy-prod.yml +26 -0
- package/.pnpm-debug.log +19 -0
- package/assets/img/favicon.png +0 -0
- package/assets/img/icon.png +0 -0
- package/css/animations.css +175 -0
- package/css/animations.css.map +1 -0
- package/css/app.css +1896 -0
- package/css/app.css.map +1 -0
- package/css/colors.css +5591 -0
- package/css/colors.css.map +1 -0
- package/css/external/bootstrap-grid.css +4997 -0
- package/css/external/bootstrap.css +10308 -0
- package/css/external/mdb.css +9444 -0
- package/css/external/owl-carousel.css +218 -0
- package/css/fonts.css +65 -0
- package/css/fonts.css.map +1 -0
- package/css/grid.css +6 -0
- package/css/grid.css.map +1 -0
- package/css/helper/owl.carousel.css +75 -0
- package/css/helper/owl.carousel.css.map +1 -0
- package/css/helper/primefaces.css +276 -0
- package/css/helper/primefaces.css.map +1 -0
- package/css/helper/primefaces.org.css.map +1 -0
- package/css/helper/tailwindcss.css +6 -0
- package/css/helper/tailwindcss.css.map +1 -0
- package/css/icons/external/bootstrap.icons.css +5502 -0
- package/css/icons/external/fontawesome.icons.css +6127 -0
- package/css/icons/external/material-design.icons.css +5728 -0
- package/css/icons/external/themify.icons.css +1428 -0
- package/css/index.css +23 -0
- package/css/index.css.map +1 -0
- package/css/menu.css +556 -0
- package/css/menu.css.map +1 -0
- package/css/polyfills.css +11 -0
- package/css/polyfills.css.map +1 -0
- package/css/sidebar.css.map +1 -0
- package/css/sizes.css +7457 -0
- package/css/sizes.css.map +1 -0
- package/css/variables.css +258 -0
- package/css/variables.css.map +1 -0
- package/firebase.json +55 -0
- package/fonts/MontessoriScript.ttf +0 -0
- package/fonts/Montserrat-Bold.ttf +0 -0
- package/fonts/Montserrat-Regular.ttf +0 -0
- package/fonts/NotoSans-Bold.ttf +0 -0
- package/fonts/Roboto-Bold.ttf +0 -0
- package/fonts/Roboto-Regular.ttf +0 -0
- package/fonts/bootstrap-icons.woff +0 -0
- package/fonts/fa-brands.woff +0 -0
- package/fonts/fa-regular.woff +0 -0
- package/fonts/fa-solid.woff +0 -0
- package/fonts/material-design-icons.ttf +0 -0
- package/http-server.sh +4 -0
- package/index.html +206 -0
- package/js/axios.min.js +3 -0
- package/js/bootstrap.min.js +7 -0
- package/js/jquery.min.js +4 -0
- package/js/lodash.min.js +139 -0
- package/js/mdb.min.js +15411 -0
- package/js/owl.carousel.min.js +7 -0
- package/js/sidebar.min.js +50 -0
- package/package.json +11 -0
- package/pages/error/index.html +32 -0
- package/pages/sidemenu/index.html +36 -0
- package/pages/tier-1/LICENSE +201 -0
- package/pages/tier-1/fonts/krub/Krub-Bold.ttf +0 -0
- package/pages/tier-1/fonts/krub/Krub-Light.ttf +0 -0
- package/pages/tier-1/fonts/krub/Krub-Regular.ttf +0 -0
- package/pages/tier-1/fonts/themify.woff +0 -0
- package/pages/tier-1/index.html +74 -0
- package/pages/tier-1/preview.png +0 -0
- package/pages/tier-1/scripts/jquery.min.js +4 -0
- package/pages/tier-1/scripts/sidebar.min.js +50 -0
- package/pages/tier-1/styles/bootstrap.css +9495 -0
- package/pages/tier-1/styles/color.css +28 -0
- package/pages/tier-1/styles/layout.css +33 -0
- package/pages/tier-1/styles/mdb.css +9657 -0
- package/pages/tier-1/styles/page.css +26 -0
- package/pages/tier-1/styles/sidebar.css +193 -0
- package/pages/tier-1/styles/themify.css +1428 -0
- package/pages/tier-2/LICENSE +201 -0
- package/pages/tier-2/fonts/krub/Krub-Bold.ttf +0 -0
- package/pages/tier-2/fonts/krub/Krub-Light.ttf +0 -0
- package/pages/tier-2/fonts/krub/Krub-Regular.ttf +0 -0
- package/pages/tier-2/fonts/themify.woff +0 -0
- package/pages/tier-2/index.html +65 -0
- package/pages/tier-2/preview.png +0 -0
- package/pages/tier-2/scripts/jquery.min.js +4 -0
- package/pages/tier-2/scripts/sidebar.min.js +50 -0
- package/pages/tier-2/styles/bootstrap.css +9495 -0
- package/pages/tier-2/styles/color.css +28 -0
- package/pages/tier-2/styles/layout.css +43 -0
- package/pages/tier-2/styles/mdb.css +9657 -0
- package/pages/tier-2/styles/page.css +26 -0
- package/pages/tier-2/styles/sidebar.css +193 -0
- package/pages/tier-2/styles/themify.css +1428 -0
- package/styles/_mixins.scss +309 -0
- package/styles/animations.scss +191 -0
- package/styles/app.scss +2020 -0
- package/styles/colors.scss +117 -0
- package/styles/fonts.scss +16 -0
- package/styles/grid.scss +4 -0
- package/styles/helper/owl.carousel.scss +92 -0
- package/styles/helper/primefaces.scss +364 -0
- package/styles/helper/tailwindcss.scss +4 -0
- package/styles/index.scss +25 -0
- package/styles/menu.scss +566 -0
- package/styles/polyfills.scss +9 -0
- package/styles/sizes.scss +191 -0
- package/styles/variables.scss +30 -0
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
// /* All color definition for buttons, inputs, filter-effects */
|
|
2
|
+
@use "sass:selector";
|
|
3
|
+
|
|
4
|
+
@mixin unify-selector($a, $b) {
|
|
5
|
+
@at-root #{selector.unify($a, $b)} {
|
|
6
|
+
@content;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@mixin append-selector($a, $b) {
|
|
11
|
+
@at-root #{selector.append($a, $b)} {
|
|
12
|
+
@content;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
@mixin flex-center {
|
|
17
|
+
display: flex;
|
|
18
|
+
align-items: center;
|
|
19
|
+
justify-content: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
@mixin absolute-content {
|
|
23
|
+
&:not(img::before, img::after) {
|
|
24
|
+
// Safari Fix.
|
|
25
|
+
content: '';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
content: '';
|
|
29
|
+
@include flex-center;
|
|
30
|
+
height: 100%;
|
|
31
|
+
width: 100%;
|
|
32
|
+
position: absolute;
|
|
33
|
+
border-radius: inherit;
|
|
34
|
+
top: 0;
|
|
35
|
+
left: 0;
|
|
36
|
+
z-index: 0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@mixin before-content {
|
|
40
|
+
& {
|
|
41
|
+
position: relative;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&>* {
|
|
45
|
+
/* position: relative; */
|
|
46
|
+
z-index: 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&::before {
|
|
50
|
+
@include absolute-content()
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@mixin after-content {
|
|
55
|
+
& {
|
|
56
|
+
position: relative;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&>* {
|
|
60
|
+
// position: relative;
|
|
61
|
+
z-index: 1;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&::after {
|
|
65
|
+
@include absolute-content()
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// @mixin check-child-state($child) {
|
|
70
|
+
// @at-root #{selector.unify($child, &)} {
|
|
71
|
+
// @content;
|
|
72
|
+
// }
|
|
73
|
+
// }
|
|
74
|
+
|
|
75
|
+
$default: #5B5B5B !default;
|
|
76
|
+
$accent: #BFBFBF !default;
|
|
77
|
+
$primary: #34A853 !default;
|
|
78
|
+
$secondary: #5C2B6D !default;
|
|
79
|
+
$white: #FFFFFF !default;
|
|
80
|
+
$light: #F8F9FA !default;
|
|
81
|
+
$black: #000000 !default;
|
|
82
|
+
$dark: #343A40 !default;
|
|
83
|
+
$green: #1D5C2E !default;
|
|
84
|
+
$orange: #F58220 !default;
|
|
85
|
+
$purple: #561843 !default;
|
|
86
|
+
$red: #C54646 !default;
|
|
87
|
+
$blue: #0365A3 !default;
|
|
88
|
+
$yellow: #C4C400 !default;
|
|
89
|
+
$gold: #FFDF00 !default;
|
|
90
|
+
$silver: #BFBFBF !default;
|
|
91
|
+
$pink: #ED028C !default;
|
|
92
|
+
$cyan: #16F1D9 !default;
|
|
93
|
+
$lemon: #62FFB1 !default;
|
|
94
|
+
$success: #24B624 !default;
|
|
95
|
+
$warn: #FFA500 !default;
|
|
96
|
+
$error: #DC3545 !default;
|
|
97
|
+
$info: #17A2b8 !default;
|
|
98
|
+
$muted: #7D7D7D !default;
|
|
99
|
+
$background-color: #FFFFFF !default;
|
|
100
|
+
$border-color: #E4E4E4 !default;
|
|
101
|
+
$card-shadow: 0 1px 30px -10px transparentize($black, 0.5) !default;
|
|
102
|
+
$font-size: 0.75rem;
|
|
103
|
+
|
|
104
|
+
$app-colors-mapped: () !default;
|
|
105
|
+
|
|
106
|
+
$app-colors-mapped: map-merge(( // ===
|
|
107
|
+
'default': (bg: $default, c: $white),
|
|
108
|
+
'accent': (bg: $accent, c: darken($accent, 45%)),
|
|
109
|
+
'primary': (bg: $primary, c: $white),
|
|
110
|
+
'secondary': (bg: $secondary, c: $white),
|
|
111
|
+
'white': (bg: $white, c: $default),
|
|
112
|
+
'light': (bg: $light, c: $dark),
|
|
113
|
+
'black': (bg: $black, c: $white),
|
|
114
|
+
'dark': (bg: $dark, c: $light),
|
|
115
|
+
'silver': (bg: $silver, c: $white),
|
|
116
|
+
'gold': (bg: $gold, c: $white),
|
|
117
|
+
'info': (bg: $info, c: $white),
|
|
118
|
+
'error': (bg: $error, c: $white),
|
|
119
|
+
// 'failed': (bg: $error, c: $white),
|
|
120
|
+
// 'danger': (bg: $error, c: $white),
|
|
121
|
+
'success': (bg: $success, c: $white),
|
|
122
|
+
// 'successful': (bg: $success, c: $white),
|
|
123
|
+
'warn': (bg: $warn, c: $black),
|
|
124
|
+
// 'warning': (bg: $warn, c: $black),
|
|
125
|
+
// 'pending': (bg: $warn, c: $black),
|
|
126
|
+
'red': (bg: $red, c: $white),
|
|
127
|
+
'orange': (bg: $orange, c: $black),
|
|
128
|
+
'yellow': (bg: $yellow, c: $black),
|
|
129
|
+
'green': (bg: $green, c: $white),
|
|
130
|
+
'blue': (bg: $blue, c: $white),
|
|
131
|
+
'cyan': (bg: $cyan, c: $white),
|
|
132
|
+
'purple': (bg: $purple, c: $white),
|
|
133
|
+
// 'pink': (bg: $pink, c: $white),
|
|
134
|
+
// 'lemon': (bg: $lemon, c: $white),
|
|
135
|
+
'muted': (bg: $muted, c: $white),
|
|
136
|
+
// 'color-1': (bg: $primary, c: $white),
|
|
137
|
+
// 'color-2': (bg: $secondary, c: $white),
|
|
138
|
+
// 'transparent': (bg: transparent, c: $default)
|
|
139
|
+
// ===
|
|
140
|
+
), $app-colors-mapped);
|
|
141
|
+
|
|
142
|
+
// /* Functions and Mixins */
|
|
143
|
+
|
|
144
|
+
@mixin mapped-bg-color-variant($selector, $k, $v) {
|
|
145
|
+
#{$selector} {
|
|
146
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), var(--#{$k}-a)) !important;
|
|
147
|
+
color: var(--#{$k}-c, map-get($v, "c")) !important;
|
|
148
|
+
border-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 20%), var(--#{$k}-a));
|
|
149
|
+
|
|
150
|
+
&.is-blur {
|
|
151
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.5) !important;
|
|
152
|
+
|
|
153
|
+
&:hover {
|
|
154
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.75) !important;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// [class*=-#{$k}] {
|
|
159
|
+
// --#{$k}-hs: var(--#{$k}-c-hs);
|
|
160
|
+
// }
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
a#{$selector},
|
|
164
|
+
#{$selector}.link,
|
|
165
|
+
button#{$selector} {
|
|
166
|
+
&:hover {
|
|
167
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 10%), var(--#{$k}-a)) !important;
|
|
168
|
+
border-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), var(--#{$k}-a));
|
|
169
|
+
color: var(--#{$k}-c, map-get($v, "c"));
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
&:active {
|
|
173
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 20%), var(--#{$k}-a)) !important;
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
@mixin mapped-tabs-variant($selector, $k, $v) {
|
|
179
|
+
#{$selector} {
|
|
180
|
+
// &:hover .tab.active {
|
|
181
|
+
// background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.275);
|
|
182
|
+
// }
|
|
183
|
+
|
|
184
|
+
.tab {
|
|
185
|
+
color: currentColor;
|
|
186
|
+
|
|
187
|
+
&:not(.active) {
|
|
188
|
+
&:hover {
|
|
189
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.075);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
&.active {
|
|
194
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.125);
|
|
195
|
+
color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 10%), var(--#{$k}-a));
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
&.fill,
|
|
200
|
+
&.prefill {
|
|
201
|
+
.tab {
|
|
202
|
+
&:hover {
|
|
203
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.25);
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
&.active {
|
|
207
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), var(--#{$k}-a));
|
|
208
|
+
color: var(--#{$k}-c, map-get($v, "c"));
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
&.prefill {
|
|
214
|
+
.tab {
|
|
215
|
+
background-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), 0.125);
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
@mixin mapped-neon-color-variant($selector, $k, $v) {
|
|
224
|
+
#{$selector} {
|
|
225
|
+
/* color: var(--white) !important; */
|
|
226
|
+
text-shadow: 0 0 20px var(--#{$k}, map-get($v, "bg")),
|
|
227
|
+
0 0 10px var(--white);
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@mixin mapped-color-variant($selector, $k, $v) {
|
|
232
|
+
#{$selector} {
|
|
233
|
+
color: var(--#{$k}, map-get($v, "bg")) !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
a#{$selector},
|
|
237
|
+
button#{$selector} {
|
|
238
|
+
&:hover {
|
|
239
|
+
color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 10%), var(--#{$k}-a));
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
&:active {
|
|
243
|
+
color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 20%), var(--#{$k}-a));
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
@mixin mapped-g-color-variant($selector, $k, $v) {
|
|
250
|
+
#{$selector} {
|
|
251
|
+
background-image: linear-gradient(var(--#{$k}, map-get($v, "bg")), hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 20%), var(--#{$k}-a))) !important;
|
|
252
|
+
color: var(--#{$k}-c, map-get($v, "c"));
|
|
253
|
+
border: none;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
a#{$selector},
|
|
257
|
+
button#{$selector} {
|
|
258
|
+
&:hover {
|
|
259
|
+
background-image: linear-gradient(hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) + 20%), var(--#{$k}-a)), var(--#{$k}, map-get($v, "bg"))) !important;
|
|
260
|
+
color: var(--#{$k}-c, map-get($v, "c"));
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
&:active {
|
|
264
|
+
background-image: linear-gradient(hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 20%), var(--#{$k}-a)), var(--#{$k}, map-get($v, "bg"))) !important;
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
@mixin mapped-alert-variant($selector, $k, $v) {
|
|
270
|
+
#{$selector} {
|
|
271
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) + 45%), var(--#{$k}-a)) !important;
|
|
272
|
+
color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 45%), var(--#{$k}-a)) !important;
|
|
273
|
+
border-color: hsla(var(--#{$k}-hs), var(--#{$k}-l), var(--#{$k}-a)) !important;
|
|
274
|
+
|
|
275
|
+
&.is-blur:not(:hover) {
|
|
276
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) + 45%), 0.5) !important;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
@mixin mapped-outline-variant($selector, $k, $v) {
|
|
282
|
+
#{$selector} {
|
|
283
|
+
background-color: transparent !important;
|
|
284
|
+
color: hsla(var(--#{$k}-hs), var(--#{$k}-l), var(--#{$k}-a)) !important;
|
|
285
|
+
border: thin solid;
|
|
286
|
+
// border-color: currentColor !important;
|
|
287
|
+
|
|
288
|
+
&.is-blur {
|
|
289
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 45%), 0.5) !important;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
a#{$selector},
|
|
294
|
+
#{$selector}.link,
|
|
295
|
+
button#{$selector},
|
|
296
|
+
#{$selector}:focus,
|
|
297
|
+
#{$selector}:focus-within {
|
|
298
|
+
&:hover {
|
|
299
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 10%), var(--#{$k}-a)) !important;
|
|
300
|
+
color: var(--#{$k}-c, map-get($v, "c")) !important;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
&.active,
|
|
304
|
+
&:active {
|
|
305
|
+
background-color: hsla(var(--#{$k}-hs), calc(var(--#{$k}-l) - 20%), var(--#{$k}-a)) !important;
|
|
306
|
+
color: var(--#{$k}-c, map-get($v, "c")) !important;
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
.loading {
|
|
2
|
+
overflow: hidden;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.loading::before,
|
|
6
|
+
.loading::after {
|
|
7
|
+
position: absolute;
|
|
8
|
+
top: 0;
|
|
9
|
+
left: 0;
|
|
10
|
+
width: 100%;
|
|
11
|
+
height: 100%;
|
|
12
|
+
z-index: 1;
|
|
13
|
+
border-radius: inherit;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.loading::before {
|
|
17
|
+
content: '';
|
|
18
|
+
background-color: inherit;
|
|
19
|
+
/* opacity: 0.75; */
|
|
20
|
+
backdrop-filter: blur(5px);
|
|
21
|
+
animation: fade-out-half 5s linear infinite alternate;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.loading::after {
|
|
25
|
+
content: '\f110' !important;
|
|
26
|
+
/* font-size: 200%; */
|
|
27
|
+
font-family: 'FontAwesome';
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
opacity: 1 !important;
|
|
32
|
+
background-color: unset !important;
|
|
33
|
+
animation: rotate-clockwise 0.25s linear infinite;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.loading-anim {
|
|
37
|
+
position: relative;
|
|
38
|
+
display: block;
|
|
39
|
+
text-align: center;
|
|
40
|
+
min-width: 100%;
|
|
41
|
+
opacity: 0.75;
|
|
42
|
+
font-size: 75%;
|
|
43
|
+
|
|
44
|
+
.animi {
|
|
45
|
+
width: 50%;
|
|
46
|
+
height: 50%;
|
|
47
|
+
object-fit: contain;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&.has-logo::after {
|
|
51
|
+
content: '';
|
|
52
|
+
background-image: url('/assets/img/icon.png');
|
|
53
|
+
background-size: contain;
|
|
54
|
+
background-clip: border-box;
|
|
55
|
+
background-repeat: no-repeat;
|
|
56
|
+
background-position: center;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.ani-logo,
|
|
60
|
+
&.has-logo::after {
|
|
61
|
+
position: absolute;
|
|
62
|
+
display: block;
|
|
63
|
+
object-fit: contain;
|
|
64
|
+
top: 50%;
|
|
65
|
+
left: 50%;
|
|
66
|
+
width: 25%;
|
|
67
|
+
height: 25%;
|
|
68
|
+
transform-origin: center;
|
|
69
|
+
transform: translate(-50%, -50%);
|
|
70
|
+
// transition: transform 1s linear 1s;
|
|
71
|
+
animation: fade-out-half 5s linear infinite alternate;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.list-loading {
|
|
76
|
+
width: 100%;
|
|
77
|
+
height: 5rem;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.loading-anim-list {
|
|
81
|
+
height: 5rem;
|
|
82
|
+
text-align: center;
|
|
83
|
+
|
|
84
|
+
img {
|
|
85
|
+
height: 100%;
|
|
86
|
+
width: 100%;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.drop-down {
|
|
91
|
+
animation: drop-down 1.2s linear;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.ind-x {
|
|
95
|
+
animation: x-ind-move 1.2s ease-out backwards infinite;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.spin {
|
|
99
|
+
animation: rotate-clockwise 1.2s linear infinite;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.pulse {
|
|
103
|
+
animation: rotate-clockwise 1.2s steps(6) infinite;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.rotate-clockwise {
|
|
107
|
+
animation: rotate-clockwise 1.2s linear;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.infinite {
|
|
111
|
+
animation-iteration-count: infinite
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
@keyframes fade-out-half {
|
|
115
|
+
from {
|
|
116
|
+
opacity: 0.5;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
to {
|
|
120
|
+
opacity: 1;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
@keyframes x-ind-move {
|
|
125
|
+
from {
|
|
126
|
+
transform: translateX(1rem)
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
@keyframes drop-down {
|
|
131
|
+
from {
|
|
132
|
+
transform: translateY(0)
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
@keyframes rotate-clockwise {
|
|
137
|
+
from {
|
|
138
|
+
transform: rotate(0deg)
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
to {
|
|
142
|
+
transform: rotate(1turn)
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@-webkit-keyframes rotate-clockwise {
|
|
147
|
+
from {
|
|
148
|
+
transform: rotate(0deg)
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
to {
|
|
152
|
+
transform: rotate(1turn)
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
@keyframes zoom-in-logo {
|
|
157
|
+
from {
|
|
158
|
+
transform-origin: center;
|
|
159
|
+
transform: scale(0)
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
to {
|
|
163
|
+
transform: scale(1)
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.page-loading {
|
|
168
|
+
display: none;
|
|
169
|
+
align-items: center;
|
|
170
|
+
justify-content: center;
|
|
171
|
+
position: absolute;
|
|
172
|
+
top: 0;
|
|
173
|
+
left: 0;
|
|
174
|
+
bottom: 0;
|
|
175
|
+
right: 0;
|
|
176
|
+
background-color: #ffffffb0;
|
|
177
|
+
z-index: 1;
|
|
178
|
+
|
|
179
|
+
&.show {
|
|
180
|
+
display: flex
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.show,
|
|
185
|
+
.collapsed {
|
|
186
|
+
|
|
187
|
+
&[class*="collapse-icon"],
|
|
188
|
+
[class*="collapse-icon"] {
|
|
189
|
+
transform: rotateX(-0.5turn);
|
|
190
|
+
}
|
|
191
|
+
}
|