@sapphire-ion/framework 0.30.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/README.md +24 -0
- package/esm2022/lib/classes/comparison/comparison-operator.mjs +18 -0
- package/esm2022/lib/classes/comparison/comparison-value-type.mjs +25 -0
- package/esm2022/lib/classes/comparison/comparison.mjs +41 -0
- package/esm2022/lib/classes/comparison/properties/bool-property.mjs +15 -0
- package/esm2022/lib/classes/comparison/properties/date-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/datetime-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/decimal-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/enum-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/implicit-property.mjs +12 -0
- package/esm2022/lib/classes/comparison/properties/int-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/long-property.mjs +27 -0
- package/esm2022/lib/classes/comparison/properties/string-property.mjs +15 -0
- package/esm2022/lib/classes/comparison/properties/time-property.mjs +27 -0
- package/esm2022/lib/classes/credentials.mjs +2 -0
- package/esm2022/lib/classes/environment.mjs +32 -0
- package/esm2022/lib/classes/filters/view-filtros.mjs +18 -0
- package/esm2022/lib/classes/inputs/table-field-form-builder.mjs +10 -0
- package/esm2022/lib/classes/inputs/table-field.mjs +63 -0
- package/esm2022/lib/classes/page-option.mjs +2 -0
- package/esm2022/lib/classes/routes/default-routing-factory.mjs +23 -0
- package/esm2022/lib/classes/routes/id-preloader-configuration.mjs +22 -0
- package/esm2022/lib/classes/routes/route-data.mjs +9 -0
- package/esm2022/lib/components/carousel/carousel-image/carousel-image.component.mjs +18 -0
- package/esm2022/lib/components/carousel/carousel-item/carousel-item.component.mjs +15 -0
- package/esm2022/lib/components/carousel/carousel.component.mjs +79 -0
- package/esm2022/lib/components/carousel/carousel.module.mjs +31 -0
- package/esm2022/lib/components/carousel/i-carousel-item.component.mjs +16 -0
- package/esm2022/lib/components/content-block/content-block.component.mjs +27 -0
- package/esm2022/lib/components/default/default-list/abstract-list.mjs +49 -0
- package/esm2022/lib/components/default/default-list/default-list.component.mjs +94 -0
- package/esm2022/lib/components/default/default-list/header-list/header-list.component.mjs +98 -0
- package/esm2022/lib/components/default/default-list/list.mjs +110 -0
- package/esm2022/lib/components/default/default-pagination/default-pagination.component.mjs +123 -0
- package/esm2022/lib/components/default/default-table/default-table.component.mjs +206 -0
- package/esm2022/lib/components/default/default-table/th-filter/th-filter.component.mjs +182 -0
- package/esm2022/lib/components/default/default-view/abstract-view.mjs +18 -0
- package/esm2022/lib/components/default/default-view/default-view.component.mjs +51 -0
- package/esm2022/lib/components/default/default-view/header-view/header-view.component.mjs +72 -0
- package/esm2022/lib/components/default/default-view/view.mjs +170 -0
- package/esm2022/lib/components/default/default.module.mjs +87 -0
- package/esm2022/lib/components/default-page/default.page.mjs +73 -0
- package/esm2022/lib/components/drag-drop-file/drag-drop-file.directive.mjs +60 -0
- package/esm2022/lib/components/drag-drop-file/drag-drop-file.module.mjs +31 -0
- package/esm2022/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.mjs +15 -0
- package/esm2022/lib/components/drawer/default-drawer-end/default-drawer-end.component.mjs +34 -0
- package/esm2022/lib/components/drawer/drawer-group/drawer-group.component.mjs +49 -0
- package/esm2022/lib/components/drawer/drawer.component.mjs +117 -0
- package/esm2022/lib/components/drawer/menu.mjs +15 -0
- package/esm2022/lib/components/filter/filter.component.mjs +124 -0
- package/esm2022/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.mjs +17 -0
- package/esm2022/lib/components/image/image.component.mjs +91 -0
- package/esm2022/lib/components/info-popover/info-popover.component.mjs +91 -0
- package/esm2022/lib/components/inputs/custom-input.mjs +77 -0
- package/esm2022/lib/components/inputs/custom-signal-input.mjs +74 -0
- package/esm2022/lib/components/inputs/input-bool/input-bool.component.mjs +43 -0
- package/esm2022/lib/components/inputs/input-bool/input-bool.configuration.mjs +16 -0
- package/esm2022/lib/components/inputs/input-color/input-color.component.mjs +487 -0
- package/esm2022/lib/components/inputs/input-configuration.mjs +2 -0
- package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.mjs +93 -0
- package/esm2022/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.mjs +6 -0
- package/esm2022/lib/components/inputs/input-date/input-date.component.mjs +119 -0
- package/esm2022/lib/components/inputs/input-date/input-date.configuration.mjs +8 -0
- package/esm2022/lib/components/inputs/input-decimal/input-decimal.component.mjs +269 -0
- package/esm2022/lib/components/inputs/input-decimal/input-decimal.configuration.mjs +45 -0
- package/esm2022/lib/components/inputs/input-default-configurations.mjs +14 -0
- package/esm2022/lib/components/inputs/input-file/download-button/download-button.component.mjs +91 -0
- package/esm2022/lib/components/inputs/input-file/input-file.component.mjs +128 -0
- package/esm2022/lib/components/inputs/input-file/input-file.configuration.mjs +11 -0
- package/esm2022/lib/components/inputs/input-loading/input-loading.component.mjs +16 -0
- package/esm2022/lib/components/inputs/input-provider-factory.mjs +15 -0
- package/esm2022/lib/components/inputs/input-select/ISelect.mjs +11 -0
- package/esm2022/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.mjs +42 -0
- package/esm2022/lib/components/inputs/input-select/input-select-option/input-select-option.component.mjs +46 -0
- package/esm2022/lib/components/inputs/input-select/input-select-template.directive.mjs +16 -0
- package/esm2022/lib/components/inputs/input-select/input-select.component.mjs +322 -0
- package/esm2022/lib/components/inputs/input-select/input.select.configuration.mjs +164 -0
- package/esm2022/lib/components/inputs/input-string/input-string.component.mjs +50 -0
- package/esm2022/lib/components/inputs/input-string/input-string.configuration.mjs +18 -0
- package/esm2022/lib/components/inputs/input-textarea/input-textarea.component.mjs +47 -0
- package/esm2022/lib/components/inputs/input-type.mjs +18 -0
- package/esm2022/lib/components/inputs/input-validators.mjs +90 -0
- package/esm2022/lib/components/inputs/inputs.module.mjs +101 -0
- package/esm2022/lib/components/loading/loading.component.mjs +34 -0
- package/esm2022/lib/components/login/login-admin/login-admin.component.mjs +52 -0
- package/esm2022/lib/components/login/login.component.mjs +93 -0
- package/esm2022/lib/components/main-content/main-content.component.mjs +62 -0
- package/esm2022/lib/components/stepper/step/step.component.mjs +43 -0
- package/esm2022/lib/components/stepper/stepper.component.mjs +36 -0
- package/esm2022/lib/components/stepper/stepper.module.mjs +25 -0
- package/esm2022/lib/components/tabs/tab/tab.component.mjs +41 -0
- package/esm2022/lib/components/tabs/tabs/tabs.component.mjs +56 -0
- package/esm2022/lib/components/tabs/tabs.module.mjs +22 -0
- package/esm2022/lib/components/text-tooltip/text-tooltip.component.mjs +51 -0
- package/esm2022/lib/components/tooltip/tooltip.component.mjs +21 -0
- package/esm2022/lib/core.module.mjs +29 -0
- package/esm2022/lib/directives/ng-var.directive.mjs +29 -0
- package/esm2022/lib/guards/auth.guard.mjs +26 -0
- package/esm2022/lib/guards/error.interceptor.mjs +106 -0
- package/esm2022/lib/guards/token.interceptor.mjs +25 -0
- package/esm2022/lib/index.mjs +172 -0
- package/esm2022/lib/pipes/secure.pipe.mjs +42 -0
- package/esm2022/lib/services/auth.service.mjs +149 -0
- package/esm2022/lib/services/environment.service.mjs +26 -0
- package/esm2022/lib/services/generics.service.mjs +84 -0
- package/esm2022/lib/services/route/route.cache.service.mjs +15 -0
- package/esm2022/lib/services/route/route.provider.service.mjs +42 -0
- package/esm2022/lib/services/usuario.service.mjs +49 -0
- package/esm2022/lib/services/utils.service.mjs +149 -0
- package/esm2022/lib/services/web/api-url-provider.service.mjs +29 -0
- package/esm2022/lib/services/web/http.ativo.service.mjs +55 -0
- package/esm2022/lib/services/web/http.service.mjs +175 -0
- package/esm2022/lib/services/web/storage.service.mjs +115 -0
- package/esm2022/public-api.mjs +5 -0
- package/esm2022/sapphire-ion-framework.mjs +5 -0
- package/fesm2022/sapphire-ion-framework.mjs +6080 -0
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/classes/comparison/comparison-operator.d.ts +9 -0
- package/lib/classes/comparison/comparison-value-type.d.ts +23 -0
- package/lib/classes/comparison/comparison.d.ts +25 -0
- package/lib/classes/comparison/properties/bool-property.d.ts +7 -0
- package/lib/classes/comparison/properties/date-property.d.ts +11 -0
- package/lib/classes/comparison/properties/datetime-property.d.ts +11 -0
- package/lib/classes/comparison/properties/decimal-property.d.ts +11 -0
- package/lib/classes/comparison/properties/enum-property.d.ts +11 -0
- package/lib/classes/comparison/properties/implicit-property.d.ts +6 -0
- package/lib/classes/comparison/properties/int-property.d.ts +11 -0
- package/lib/classes/comparison/properties/long-property.d.ts +11 -0
- package/lib/classes/comparison/properties/string-property.d.ts +7 -0
- package/lib/classes/comparison/properties/time-property.d.ts +11 -0
- package/lib/classes/credentials.d.ts +5 -0
- package/lib/classes/environment.d.ts +13 -0
- package/lib/classes/filters/view-filtros.d.ts +10 -0
- package/lib/classes/inputs/table-field-form-builder.d.ts +5 -0
- package/lib/classes/inputs/table-field.d.ts +19 -0
- package/lib/classes/page-option.d.ts +7 -0
- package/lib/classes/routes/default-routing-factory.d.ts +8 -0
- package/lib/classes/routes/id-preloader-configuration.d.ts +28 -0
- package/lib/classes/routes/route-data.d.ts +5 -0
- package/lib/components/carousel/carousel-image/carousel-image.component.d.ts +10 -0
- package/lib/components/carousel/carousel-item/carousel-item.component.d.ts +9 -0
- package/lib/components/carousel/carousel.component.d.ts +32 -0
- package/lib/components/carousel/carousel.module.d.ts +12 -0
- package/lib/components/carousel/i-carousel-item.component.d.ts +9 -0
- package/lib/components/content-block/content-block.component.d.ts +15 -0
- package/lib/components/default/default-list/abstract-list.d.ts +21 -0
- package/lib/components/default/default-list/default-list.component.d.ts +42 -0
- package/lib/components/default/default-list/header-list/header-list.component.d.ts +45 -0
- package/lib/components/default/default-list/list.d.ts +37 -0
- package/lib/components/default/default-pagination/default-pagination.component.d.ts +36 -0
- package/lib/components/default/default-table/default-table.component.d.ts +71 -0
- package/lib/components/default/default-table/th-filter/th-filter.component.d.ts +20 -0
- package/lib/components/default/default-view/abstract-view.d.ts +16 -0
- package/lib/components/default/default-view/default-view.component.d.ts +26 -0
- package/lib/components/default/default-view/header-view/header-view.component.d.ts +25 -0
- package/lib/components/default/default-view/view.d.ts +55 -0
- package/lib/components/default/default.module.d.ts +28 -0
- package/lib/components/default-page/default.page.d.ts +35 -0
- package/lib/components/drag-drop-file/drag-drop-file.directive.d.ts +14 -0
- package/lib/components/drag-drop-file/drag-drop-file.module.d.ts +10 -0
- package/lib/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.d.ts +9 -0
- package/lib/components/drawer/default-drawer-end/default-drawer-end.component.d.ts +13 -0
- package/lib/components/drawer/drawer-group/drawer-group.component.d.ts +22 -0
- package/lib/components/drawer/drawer.component.d.ts +23 -0
- package/lib/components/drawer/menu.d.ts +9 -0
- package/lib/components/filter/filter.component.d.ts +29 -0
- package/lib/components/http-responses-pages/forbidden-403/forbidden-403.component.d.ts +8 -0
- package/lib/components/image/image.component.d.ts +23 -0
- package/lib/components/info-popover/info-popover.component.d.ts +15 -0
- package/lib/components/inputs/custom-input.d.ts +36 -0
- package/lib/components/inputs/custom-signal-input.d.ts +38 -0
- package/lib/components/inputs/input-bool/input-bool.component.d.ts +19 -0
- package/lib/components/inputs/input-bool/input-bool.configuration.d.ts +17 -0
- package/lib/components/inputs/input-color/input-color.component.d.ts +80 -0
- package/lib/components/inputs/input-configuration.d.ts +8 -0
- package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.d.ts +24 -0
- package/lib/components/inputs/input-cpf-cnpj/input-cpf-cnpj.configuration.d.ts +5 -0
- package/lib/components/inputs/input-date/input-date.component.d.ts +30 -0
- package/lib/components/inputs/input-date/input-date.configuration.d.ts +7 -0
- package/lib/components/inputs/input-decimal/input-decimal.component.d.ts +41 -0
- package/lib/components/inputs/input-decimal/input-decimal.configuration.d.ts +25 -0
- package/lib/components/inputs/input-default-configurations.d.ts +13 -0
- package/lib/components/inputs/input-file/download-button/download-button.component.d.ts +36 -0
- package/lib/components/inputs/input-file/input-file.component.d.ts +39 -0
- package/lib/components/inputs/input-file/input-file.configuration.d.ts +11 -0
- package/lib/components/inputs/input-loading/input-loading.component.d.ts +7 -0
- package/lib/components/inputs/input-provider-factory.d.ts +4 -0
- package/lib/components/inputs/input-select/ISelect.d.ts +21 -0
- package/lib/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.d.ts +18 -0
- package/lib/components/inputs/input-select/input-select-option/input-select-option.component.d.ts +24 -0
- package/lib/components/inputs/input-select/input-select-template.directive.d.ts +8 -0
- package/lib/components/inputs/input-select/input-select.component.d.ts +66 -0
- package/lib/components/inputs/input-select/input.select.configuration.d.ts +87 -0
- package/lib/components/inputs/input-string/input-string.component.d.ts +19 -0
- package/lib/components/inputs/input-string/input-string.configuration.d.ts +14 -0
- package/lib/components/inputs/input-textarea/input-textarea.component.d.ts +18 -0
- package/lib/components/inputs/input-type.d.ts +16 -0
- package/lib/components/inputs/input-validators.d.ts +19 -0
- package/lib/components/inputs/inputs.module.d.ts +28 -0
- package/lib/components/loading/loading.component.d.ts +18 -0
- package/lib/components/login/login-admin/login-admin.component.d.ts +20 -0
- package/lib/components/login/login.component.d.ts +28 -0
- package/lib/components/main-content/main-content.component.d.ts +17 -0
- package/lib/components/stepper/step/step.component.d.ts +15 -0
- package/lib/components/stepper/stepper.component.d.ts +17 -0
- package/lib/components/stepper/stepper.module.d.ts +10 -0
- package/lib/components/tabs/tab/tab.component.d.ts +19 -0
- package/lib/components/tabs/tabs/tabs.component.d.ts +18 -0
- package/lib/components/tabs/tabs.module.d.ts +12 -0
- package/lib/components/text-tooltip/text-tooltip.component.d.ts +16 -0
- package/lib/components/tooltip/tooltip.component.d.ts +7 -0
- package/lib/core.module.d.ts +11 -0
- package/lib/directives/ng-var.directive.d.ts +12 -0
- package/lib/guards/auth.guard.d.ts +11 -0
- package/lib/guards/error.interceptor.d.ts +32 -0
- package/lib/guards/token.interceptor.d.ts +11 -0
- package/lib/index.d.ts +108 -0
- package/lib/pipes/secure.pipe.d.ts +15 -0
- package/lib/services/auth.service.d.ts +47 -0
- package/lib/services/environment.service.d.ts +10 -0
- package/lib/services/generics.service.d.ts +22 -0
- package/lib/services/route/route.cache.service.d.ts +7 -0
- package/lib/services/route/route.provider.service.d.ts +13 -0
- package/lib/services/usuario.service.d.ts +21 -0
- package/lib/services/utils.service.d.ts +36 -0
- package/lib/services/web/api-url-provider.service.d.ts +13 -0
- package/lib/services/web/http.ativo.service.d.ts +31 -0
- package/lib/services/web/http.service.d.ts +51 -0
- package/lib/services/web/storage.service.d.ts +25 -0
- package/package.json +41 -0
- package/public-api.d.ts +1 -0
- package/themes/compiled-styles.scss +2291 -0
- package/themes/components/_inputs_new/input-string/input-string.component.scss +0 -0
- package/themes/components/_inputs_new/inputs.scss +15 -0
- package/themes/components/carousel/carousel-image/carousel-image.component.scss +0 -0
- package/themes/components/carousel/carousel-item/carousel-item.component.scss +0 -0
- package/themes/components/carousel/carousel.component.scss +9 -0
- package/themes/components/content-block/content-block.component.scss +0 -0
- package/themes/components/default/default-list/default-list.component.scss +0 -0
- package/themes/components/default/default-list/header-list/header-list.component.scss +0 -0
- package/themes/components/default/default-pagination/default-pagination.component.scss +22 -0
- package/themes/components/default/default-table/default-table.component.scss +33 -0
- package/themes/components/default/default-table/th-filter/th-filter.component.scss +24 -0
- package/themes/components/default/default-view/default-view.component.scss +5 -0
- package/themes/components/default/default-view/header-view/header-view.component.scss +7 -0
- package/themes/components/default-page/default.page.scss +4 -0
- package/themes/components/drag-drop-file/drag-drop-overlay/drag-drop-overlay.component.scss +9 -0
- package/themes/components/drawer/default-drawer-end/default-drawer-end.component.scss +0 -0
- package/themes/components/drawer/drawer-group/drawer-group.component.scss +22 -0
- package/themes/components/drawer/drawer.component.scss +46 -0
- package/themes/components/filter/filter.component.scss +0 -0
- package/themes/components/http-responses-pages/forbidden-403/forbidden-403.component.scss +19 -0
- package/themes/components/image/image.component.scss +0 -0
- package/themes/components/info-popover/info-popover.component.scss +3 -0
- package/themes/components/inputs/input-bool/input-bool.component.scss +14 -0
- package/themes/components/inputs/input-color/input-color.component.scss +48 -0
- package/themes/components/inputs/input-cpf-cnpj/input-cpf-cnpj.component.scss +0 -0
- package/themes/components/inputs/input-date/input-date.component.scss +41 -0
- package/themes/components/inputs/input-decimal/input-decimal.component.scss +44 -0
- package/themes/components/inputs/input-file/download-button/download-button.component.scss +3 -0
- package/themes/components/inputs/input-file/input-file.component.scss +3 -0
- package/themes/components/inputs/input-loading/input-loading.component.scss +0 -0
- package/themes/components/inputs/input-select/input-select-internal-option/input-select-internal-option.component.scss +0 -0
- package/themes/components/inputs/input-select/input-select-option/input-select-option.component.scss +0 -0
- package/themes/components/inputs/input-select/input-select.component.scss +28 -0
- package/themes/components/inputs/input-string/input-string.component.scss +0 -0
- package/themes/components/inputs/input-textarea/input-textarea.component.scss +0 -0
- package/themes/components/inputs/inputs.scss +67 -0
- package/themes/components/loading/loading.component.scss +0 -0
- package/themes/components/login/login-admin/login-admin.component.scss +3 -0
- package/themes/components/login/login.component.scss +40 -0
- package/themes/components/main-content/main-content.component.scss +9 -0
- package/themes/components/stepper/step/step.component.scss +48 -0
- package/themes/components/stepper/stepper.component.scss +0 -0
- package/themes/components/tabs/tab/tab.component.scss +0 -0
- package/themes/components/tabs/tabs/tabs.component.scss +23 -0
- package/themes/components/text-tooltip/text-tooltip.component.scss +0 -0
- package/themes/components/tooltip/tooltip.component.scss +23 -0
- package/themes/styles/components.scss +52 -0
- package/themes/styles/core.styles.scss +409 -0
- package/themes/styles/ionic/ion-action-sheet.scss +8 -0
- package/themes/styles/ionic/ion-alert.scss +9 -0
- package/themes/styles/ionic/ion-button.scss +3 -0
- package/themes/styles/ionic/ion-card.scss +3 -0
- package/themes/styles/ionic/ion-content.scss +3 -0
- package/themes/styles/ionic/ion-datetime.scss +6 -0
- package/themes/styles/ionic/ion-item.scss +10 -0
- package/themes/styles/ionic/ion-list.scss +4 -0
- package/themes/styles/ionic/ion-modal.scss +8 -0
- package/themes/styles/ionic/ion-popover.scss +31 -0
- package/themes/styles/ionic/ion-progress-bar.scss +3 -0
- package/themes/styles/ionic/ion-searchbar.scss +4 -0
- package/themes/styles/ionic/ion-toast.scss +14 -0
- package/themes/styles/ionic.scss +13 -0
- package/themes/styles/login-default.scss +87 -0
- package/themes/styles/mixins.scss +467 -0
- package/themes/styles/styles.scss +1 -0
- package/themes/styles/translucid.scss +21 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
.right{
|
|
2
|
+
@apply left-[calc(100%+0.5rem)] top-0 bottom-0 my-auto -translate-x-4;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.left{
|
|
6
|
+
@apply right-[calc(100%+0.5rem)] top-0 bottom-0 my-auto translate-x-4;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.top{
|
|
10
|
+
@apply bottom-[calc(100%+0.5rem)] left-0 right-0 mx-auto -translate-y-4;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.bottom{
|
|
14
|
+
@apply top-[calc(100%+0.5rem)] left-0 right-0 mx-auto translate-y-4;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
#wrapper{
|
|
18
|
+
&:hover{
|
|
19
|
+
#tooltip{
|
|
20
|
+
@apply translate-x-0 translate-y-0 opacity-100 filter-none #{!important};
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
default-list{
|
|
2
|
+
@apply size-full block;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
default-view{
|
|
6
|
+
@apply size-full block;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
tabs{
|
|
10
|
+
@apply size-full;
|
|
11
|
+
}
|
|
12
|
+
tab{
|
|
13
|
+
@apply overflow-hidden;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.wrapper{
|
|
17
|
+
@apply flex flex-col h-full;
|
|
18
|
+
ion-breadcrumbs{
|
|
19
|
+
@apply flex-shrink-0 my-1
|
|
20
|
+
}
|
|
21
|
+
& > ion-card{
|
|
22
|
+
@apply grow flex-1 flex flex-col m-0 shadow-none rounded-none border-x-0 border-b-0 rounded-t-2xl;
|
|
23
|
+
& > ion-card-header{
|
|
24
|
+
@apply shrink-0 p-3;
|
|
25
|
+
}
|
|
26
|
+
& > ion-card-content{
|
|
27
|
+
@apply px-3 h-full grow p-3 pt-0 flex flex-col overflow-hidden;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
image{
|
|
33
|
+
@apply max-h-full max-w-full flex items-center justify-center;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
//[ Taiwlind Extension ]
|
|
37
|
+
.rounded-none{
|
|
38
|
+
--border-radius: 0rem;
|
|
39
|
+
}
|
|
40
|
+
.\!rounded-none{
|
|
41
|
+
--border-radius: 0rem !important;
|
|
42
|
+
}
|
|
43
|
+
.bg-transparent{
|
|
44
|
+
--background: transparent
|
|
45
|
+
}
|
|
46
|
+
.\!bg-transparent{
|
|
47
|
+
--background: transparent !important
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
tabs{
|
|
51
|
+
@apply block;
|
|
52
|
+
}
|
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
|
|
3
|
+
@import "./assets/fonts/OpenSans/OpenSans.css";
|
|
4
|
+
@import "./assets/fonts/Poppins/Poppins.css";
|
|
5
|
+
@import "./mixins.scss";
|
|
6
|
+
|
|
7
|
+
.default-responsiveness{
|
|
8
|
+
@apply xl:col-span-3 md:col-span-6 col-span-full;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
input-date{
|
|
12
|
+
@apply rounded-2xl overflow-hidden;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
:root {
|
|
17
|
+
--ion-framework-table-light: #dfe0e3;
|
|
18
|
+
--ion-table-filter-wrap: nowrap;
|
|
19
|
+
--ion-table-row-wrap: nowrap;
|
|
20
|
+
--ion-color-translucid: color-mix(in srgb, var(--ion-color-medium) 20%, transparent 80%);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/* width */
|
|
24
|
+
::-webkit-scrollbar {
|
|
25
|
+
height: 5px;
|
|
26
|
+
width: 5px;
|
|
27
|
+
margin: 2px;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Handle */
|
|
31
|
+
::-webkit-scrollbar-thumb {
|
|
32
|
+
background: var(--ion-color-medium);
|
|
33
|
+
border-radius: 10px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
input-bool, input-color, input-date, input-date-time, input-time, input-decimal, input-number, input-currency,
|
|
37
|
+
input-file, input-select, input-string, input-textarea {
|
|
38
|
+
@apply block;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.translucid-border{
|
|
42
|
+
border: 1px solid $translucid-border-color;
|
|
43
|
+
}
|
|
44
|
+
.\!translucid-border{
|
|
45
|
+
border: 1px solid $translucid-border-color !important;
|
|
46
|
+
}
|
|
47
|
+
.translucid-background{
|
|
48
|
+
background: $translucid-background-color;
|
|
49
|
+
}
|
|
50
|
+
.\!translucid-background{
|
|
51
|
+
background: $translucid-background-color !important;
|
|
52
|
+
}
|
|
53
|
+
.translucid-primary-background{
|
|
54
|
+
background: $translucid-primary-background-color;
|
|
55
|
+
}
|
|
56
|
+
.\!translucid-primary-background{
|
|
57
|
+
background: $translucid-primary-background-color !important;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.blur-background{
|
|
61
|
+
--background: transparent !important;
|
|
62
|
+
background: $translucid-background-color;
|
|
63
|
+
backdrop-filter: blur(10px);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.default-transition{
|
|
67
|
+
@apply transition-all ease-in-out duration-200;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
ion-modal.filter-modal{
|
|
71
|
+
--height: fit-content;
|
|
72
|
+
--min-height: fit-content;
|
|
73
|
+
--max-height: calc(80vh);
|
|
74
|
+
--max-width: 80%;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
table{
|
|
78
|
+
color: var(--ion-color-step-700);
|
|
79
|
+
@apply min-w-full text-sm text-left rtl:text-right table-fixed;
|
|
80
|
+
thead{
|
|
81
|
+
@apply text-xs uppercase;
|
|
82
|
+
user-select: none;
|
|
83
|
+
background-color: var(--ion-color-step-300);
|
|
84
|
+
color: var(--ion-color-step-700);
|
|
85
|
+
@media (prefers-color-scheme: light) {
|
|
86
|
+
background-color: var(--ion-framework-table-light);
|
|
87
|
+
}
|
|
88
|
+
position: sticky;
|
|
89
|
+
position: -webkit-sticky;
|
|
90
|
+
top: 0;
|
|
91
|
+
z-index: 100;
|
|
92
|
+
}
|
|
93
|
+
tbody{
|
|
94
|
+
tr{
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
background-color: color-mix(in srgb, var(--ion-color-light) 70%, transparent 30%);
|
|
97
|
+
border-bottom: color-mix(in srgb, var(--ion-color-dark) 50%, transparent 50%) solid 1px;
|
|
98
|
+
&:last-child{
|
|
99
|
+
border: none;
|
|
100
|
+
}
|
|
101
|
+
&:hover{
|
|
102
|
+
background-color: color-mix(in srgb, var(--ion-color-light) 50%, var(--ion-color-dark) 10%)
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
*{
|
|
109
|
+
font-family: 'Poppins';
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.font-poppins{
|
|
113
|
+
font-family: 'Poppins' !important;
|
|
114
|
+
}
|
|
115
|
+
.font-open-sans{
|
|
116
|
+
font-family: 'OpenSans' !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
ion-icon{
|
|
120
|
+
transition: color .5s;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
ion-button, ion-item{
|
|
124
|
+
&::part(native){
|
|
125
|
+
transition: border-radius .5s;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
ion-item.submitted.ion-invalid{
|
|
130
|
+
&.submitted{
|
|
131
|
+
--border-color: var(--ion-color-danger) !important;
|
|
132
|
+
}
|
|
133
|
+
ion-icon{
|
|
134
|
+
color: var(--danger) !important;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
ion-toast{
|
|
139
|
+
&::part(container) {
|
|
140
|
+
padding-right: 0 !important;
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
ion-card-header, ion-card-content{
|
|
145
|
+
padding: .5rem;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
ion-card{
|
|
149
|
+
border-radius: 1rem;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
ion-button{
|
|
153
|
+
--border-radius: 1rem
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
ion-item{
|
|
157
|
+
ion-label{
|
|
158
|
+
ion-icon{
|
|
159
|
+
vertical-align: middle;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
ion-content{
|
|
165
|
+
@apply bg-transparent;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
ion-card{
|
|
169
|
+
@extend .translucid-border !optional;
|
|
170
|
+
background: transparent;
|
|
171
|
+
ion-card-header{
|
|
172
|
+
background: var(--ion-color-light);
|
|
173
|
+
}
|
|
174
|
+
ion-card-content{
|
|
175
|
+
background: var(--ion-color-light);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.blur-before{
|
|
180
|
+
&::before{
|
|
181
|
+
background-color: transparent;
|
|
182
|
+
content: '';
|
|
183
|
+
position: absolute;
|
|
184
|
+
inset: 0;
|
|
185
|
+
z-index: -1;
|
|
186
|
+
backdrop-filter: blur(5px);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
ion-input.number-class{
|
|
191
|
+
input[type=number]::-webkit-inner-spin-button,
|
|
192
|
+
input[type=number]::-webkit-outer-spin-button {
|
|
193
|
+
-webkit-appearance: none !important;
|
|
194
|
+
-moz-appearance: none !important;
|
|
195
|
+
appearance: none !important;
|
|
196
|
+
margin: 0;
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
home{
|
|
201
|
+
@apply size-full;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.card-disabled{
|
|
205
|
+
opacity: .5 !important;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
step{
|
|
209
|
+
@apply w-full;
|
|
210
|
+
}
|
|
211
|
+
tab{
|
|
212
|
+
@apply size-full block;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
.animated-from-right{
|
|
217
|
+
animation-name: from-right;
|
|
218
|
+
animation-duration: .3s;
|
|
219
|
+
animation-iteration-count: 1;
|
|
220
|
+
animation-timing-function: ease-in-out
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
@keyframes from-right {
|
|
224
|
+
from {
|
|
225
|
+
opacity: 0;
|
|
226
|
+
transform: translateX(3rem);
|
|
227
|
+
}
|
|
228
|
+
to {
|
|
229
|
+
opacity: 1;
|
|
230
|
+
transform: translateX();
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.animated-from-left{
|
|
235
|
+
animation-name: from-left;
|
|
236
|
+
animation-duration: .3s;
|
|
237
|
+
animation-iteration-count: 1;
|
|
238
|
+
animation-timing-function: ease-in-out
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
@keyframes from-left {
|
|
242
|
+
from {
|
|
243
|
+
opacity: 0;
|
|
244
|
+
transform: translateX(-3rem);
|
|
245
|
+
}
|
|
246
|
+
to {
|
|
247
|
+
opacity: 1;
|
|
248
|
+
transform: translateX();
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
.animated-from-top{
|
|
254
|
+
animation-name: from-top;
|
|
255
|
+
animation-duration: .3s;
|
|
256
|
+
animation-iteration-count: 1;
|
|
257
|
+
animation-timing-function: ease-in-out
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
@keyframes from-top {
|
|
261
|
+
from {
|
|
262
|
+
opacity: 0;
|
|
263
|
+
transform: translateY(-3rem);
|
|
264
|
+
}
|
|
265
|
+
to {
|
|
266
|
+
opacity: 1;
|
|
267
|
+
transform: translateY();
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.animated-from-bottom{
|
|
272
|
+
animation-name: from-bottom;
|
|
273
|
+
animation-duration: .3s;
|
|
274
|
+
animation-iteration-count: 1;
|
|
275
|
+
animation-timing-function: ease-in-out
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
@keyframes from-bottom {
|
|
279
|
+
from {
|
|
280
|
+
opacity: 0;
|
|
281
|
+
transform: translateY(3rem);
|
|
282
|
+
}
|
|
283
|
+
to {
|
|
284
|
+
opacity: 1;
|
|
285
|
+
transform: translateY();
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.animated{
|
|
290
|
+
animation-name: anim-opacity;
|
|
291
|
+
animation-duration: .3s;
|
|
292
|
+
animation-iteration-count: 1;
|
|
293
|
+
animation-timing-function: ease-in-out
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
@keyframes anim-opacity {
|
|
297
|
+
from {
|
|
298
|
+
opacity: 0;
|
|
299
|
+
}
|
|
300
|
+
to {
|
|
301
|
+
opacity: 1;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
ion-list{
|
|
306
|
+
& > ion-item{
|
|
307
|
+
--background: transparent
|
|
308
|
+
--border-color: var(--ion-color-translucid);
|
|
309
|
+
--border-width: 1px 1px 0px 1px;
|
|
310
|
+
--inner-border-width: 0 !important;
|
|
311
|
+
}
|
|
312
|
+
& > ion-item:first-child {
|
|
313
|
+
--border-radius: 1rem 1rem 0rem 0rem;
|
|
314
|
+
}
|
|
315
|
+
& > ion-item:last-child {
|
|
316
|
+
--border-radius: 0rem 0rem 1rem 1rem;
|
|
317
|
+
--border-width: 1px;
|
|
318
|
+
}
|
|
319
|
+
& > ion-item:only-child{
|
|
320
|
+
--border-radius: 1rem;
|
|
321
|
+
--border-width: 1px;
|
|
322
|
+
}
|
|
323
|
+
&.no-outer-border {
|
|
324
|
+
& > ion-item{
|
|
325
|
+
--border-width: 1px 0px 0px 0px;
|
|
326
|
+
}
|
|
327
|
+
& > ion-item:first-child{
|
|
328
|
+
--border-width: 0px;
|
|
329
|
+
}
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.ion-content-scroll-host::before,
|
|
334
|
+
.ion-content-scroll-host::after {
|
|
335
|
+
position: absolute;
|
|
336
|
+
|
|
337
|
+
width: 1px;
|
|
338
|
+
height: 1px;
|
|
339
|
+
|
|
340
|
+
content: "";
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.ion-content-scroll-host::before {
|
|
344
|
+
bottom: -1px;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.ion-content-scroll-host::after {
|
|
348
|
+
top: -1px;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
.bg-mesh{
|
|
353
|
+
background-color: var(--ion-color-background);
|
|
354
|
+
|
|
355
|
+
--color-1: color-mix(in srgb, var(--ion-color-secondary) 10%, var(--ion-color-light)); // rgb(4, 120, 87);
|
|
356
|
+
--color-2: color-mix(in srgb, var(--ion-color-primary) 30%, var(--ion-color-light)); // rgb(49, 46, 129);
|
|
357
|
+
--color-3: color-mix(in srgb, var(--ion-color-primary) 5% , var(--ion-color-light)); // rgb(110, 231, 183);
|
|
358
|
+
--color-4: color-mix(in srgb, var(--ion-color-danger) 10%, var(--ion-color-light)); // rgb(112, 26, 117);
|
|
359
|
+
--color-5: color-mix(in srgb, var(--ion-color-primary) 90%, var(--ion-color-light)); //rgb(191, 219, 254);
|
|
360
|
+
--color-6: color-mix(in srgb, var(--ion-color-secondary) 50%, var(--ion-color-light)); //rgb(153, 246, 228);
|
|
361
|
+
|
|
362
|
+
background-image:
|
|
363
|
+
radial-gradient(at 57% 67%,
|
|
364
|
+
var(--color-1) 0, transparent 86%),
|
|
365
|
+
radial-gradient(at 15% 68%,
|
|
366
|
+
var(--color-2) 0, transparent 70%),
|
|
367
|
+
radial-gradient(at 49% 40%,
|
|
368
|
+
var(--color-3) 0, transparent 84%),
|
|
369
|
+
radial-gradient(at 92% 45%,
|
|
370
|
+
var(--color-4) 0, transparent 90%),
|
|
371
|
+
radial-gradient(at 97% 5% ,
|
|
372
|
+
var(--color-5) 0, transparent 99%),
|
|
373
|
+
radial-gradient(at 72% 63%,
|
|
374
|
+
var(--color-6) 0, transparent 16%);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
cdk-virtual-scroll-viewport {
|
|
378
|
+
height: 100%;
|
|
379
|
+
width: 100%;
|
|
380
|
+
.cdk-virtual-scroll-content-wrapper{
|
|
381
|
+
@apply w-full;
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
.remove-select-padding{
|
|
385
|
+
--inner-padding-end: 10px !important;
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
ion-popover.input-select-popover{
|
|
389
|
+
&::part(arrow)::after{
|
|
390
|
+
background: color-mix(in srgb, var(--ion-color-primary) 10%, var(--ion-color-light));
|
|
391
|
+
border: var(--ion-color-step-250) 1px solid;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
carousel{
|
|
396
|
+
@apply block;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
ion-breadcrumb{
|
|
400
|
+
@apply text-sm
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
tooltip{
|
|
404
|
+
@apply size-full absolute left-0 top-0;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
text-tooltip{
|
|
408
|
+
@apply block relative w-full;
|
|
409
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
ion-popover{
|
|
2
|
+
&::part(content){
|
|
3
|
+
border-radius: 1rem;
|
|
4
|
+
overflow-y: hidden;
|
|
5
|
+
background: $translucid-background-color;
|
|
6
|
+
border: 1px solid $translucid-border-color;
|
|
7
|
+
//@apply backdrop-blur-md;
|
|
8
|
+
|
|
9
|
+
}
|
|
10
|
+
&::part(arrow)::after{
|
|
11
|
+
background: $translucid-background-color;
|
|
12
|
+
//backdrop-filter: blur(10px);
|
|
13
|
+
}
|
|
14
|
+
.popover-viewport{
|
|
15
|
+
--wheel-fade-background-rgb: transparent;
|
|
16
|
+
@apply rounded-2xl
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
ion-popover{
|
|
21
|
+
ion-select-popover{
|
|
22
|
+
ion-list{
|
|
23
|
+
ion-item:first-of-type{
|
|
24
|
+
--border-width: 0px !important;
|
|
25
|
+
}
|
|
26
|
+
ion-item{
|
|
27
|
+
--border-width: 1px 0px 0px 0px !important;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
ion-toast{
|
|
2
|
+
--background: var(--ion-color-light);
|
|
3
|
+
--ion-background-color-rgb: transparent;
|
|
4
|
+
--border-color: color-mix(in srgb, var(--ion-color-medium) 30%, transparent 90%);
|
|
5
|
+
--border-width: 1px;
|
|
6
|
+
--border-style: solid;
|
|
7
|
+
--border-radius: 1rem;
|
|
8
|
+
// &::part(container){
|
|
9
|
+
// //backdrop-filter: blur(12px) !important; //saturate(120%);
|
|
10
|
+
// //border: 1px solid color-mix(in srgb, var(--ion-color-medium) 30%, transparent 90%);
|
|
11
|
+
// @apply rounded-2xl;
|
|
12
|
+
// }
|
|
13
|
+
// }
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
@import './ionic/ion-action-sheet.scss';
|
|
2
|
+
@import './ionic/ion-alert.scss';
|
|
3
|
+
@import './ionic/ion-button.scss';
|
|
4
|
+
@import './ionic/ion-card.scss';
|
|
5
|
+
@import './ionic/ion-content.scss';
|
|
6
|
+
@import './ionic/ion-datetime.scss';
|
|
7
|
+
@import './ionic/ion-item.scss';
|
|
8
|
+
@import './ionic/ion-list.scss';
|
|
9
|
+
@import './ionic/ion-modal.scss';
|
|
10
|
+
@import './ionic/ion-popover.scss';
|
|
11
|
+
@import './ionic/ion-progress-bar.scss';
|
|
12
|
+
@import './ionic/ion-searchbar.scss';
|
|
13
|
+
@import './ionic/ion-toast.scss';
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
|
|
2
|
+
main {
|
|
3
|
+
@media (prefers-color-scheme: dark) {
|
|
4
|
+
background: $dark-gradient;
|
|
5
|
+
}
|
|
6
|
+
@media (prefers-color-scheme: light) {
|
|
7
|
+
background: $light-gradient;
|
|
8
|
+
}
|
|
9
|
+
//background: linear-gradient(45deg, #1e293b 0%,#0369a1 100%);
|
|
10
|
+
animation: Gradient 15s ease infinite;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
align-items: stretch;
|
|
14
|
+
justify-content: space-evenly;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
position: relative;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
main::before,
|
|
20
|
+
main::after {
|
|
21
|
+
content: "";
|
|
22
|
+
width: 70vmax;
|
|
23
|
+
height: 70vmax;
|
|
24
|
+
position: absolute;
|
|
25
|
+
background: rgba(255, 255, 255, 0.07);
|
|
26
|
+
left: -20vmin;
|
|
27
|
+
top: -20vmin;
|
|
28
|
+
animation: morph 15s linear infinite alternate, spin 20s linear infinite;
|
|
29
|
+
z-index: 1;
|
|
30
|
+
will-change: border-radius, transform;
|
|
31
|
+
transform-origin: 55% 55%;
|
|
32
|
+
pointer-events: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
main::after {
|
|
36
|
+
width: 70vmin;
|
|
37
|
+
height: 70vmin;
|
|
38
|
+
left: auto;
|
|
39
|
+
right: -10vmin;
|
|
40
|
+
top: auto;
|
|
41
|
+
bottom: 0;
|
|
42
|
+
animation: morph 10s linear infinite alternate, spin 26s linear infinite reverse;
|
|
43
|
+
transform-origin: 20% 20%;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
@keyframes Gradient {
|
|
49
|
+
0% {
|
|
50
|
+
background-position: 0 50%
|
|
51
|
+
}
|
|
52
|
+
50% {
|
|
53
|
+
background-position: 100% 50%
|
|
54
|
+
}
|
|
55
|
+
100% {
|
|
56
|
+
background-position: 0 50%
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
@keyframes morph {
|
|
61
|
+
0% {
|
|
62
|
+
border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%; }
|
|
63
|
+
100% {
|
|
64
|
+
border-radius: 40% 60%; }
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
@keyframes spin {
|
|
68
|
+
to {
|
|
69
|
+
transform: rotate(1turn);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
.st0{display:none;}
|
|
73
|
+
.st1{display:inline;}
|
|
74
|
+
.st2{opacity:0.29;}
|
|
75
|
+
.st3{fill:#FFFFFF;}
|
|
76
|
+
.st4{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
|
|
77
|
+
.st5{clip-path:url(#SVGID_4_);}
|
|
78
|
+
.st6{clip-path:url(#SVGID_6_);}
|
|
79
|
+
.st7{clip-path:url(#SVGID_8_);}
|
|
80
|
+
.st8{clip-path:url(#SVGID_10_);}
|
|
81
|
+
.st9{fill:none;}
|
|
82
|
+
.st10{clip-path:url(#SVGID_12_);}
|
|
83
|
+
.st11{opacity:0.7;}
|
|
84
|
+
.st12{clip-path:url(#SVGID_14_);}
|
|
85
|
+
.st13{opacity:0.2;}
|
|
86
|
+
.st14{clip-path:url(#SVGID_16_);}
|
|
87
|
+
.st15{opacity:0.3;fill:#FFFFFF;enable-background:new ;}
|