react-jupiter 5.12.0 → 6.0.0-beta.2
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/.babelrc +12 -0
- package/.env +3 -0
- package/.eslintignore +2 -0
- package/.eslintrc +18 -0
- package/.eslintrc.js +47 -0
- package/.eslintrc.json +16 -0
- package/.flowconfig +0 -0
- package/.storybook/main.js +27 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.js +30 -0
- package/.storybook/style.css +9 -0
- package/.vscode/settings.json +4 -0
- package/__mocks__/fileMock.js +1 -0
- package/config-overrides.js +34 -0
- package/dist/App.js +13 -0
- package/dist/components/accordion/index.js +25 -0
- package/dist/components/accordion/index.stories.js +82 -0
- package/dist/components/accordion/index.styles.js +52 -0
- package/dist/components/accordion/panel.js +41 -0
- package/dist/components/avatar/index.js +41 -0
- package/dist/components/avatar/index.stories.js +59 -0
- package/dist/components/avatar/index.styles.js +17 -0
- package/dist/components/avatar/index.test.js +10 -0
- package/dist/components/avatar/theme.js +13 -0
- package/dist/components/button/__snapshots__/index.test.js.snap +489 -0
- package/dist/components/button/index.js +209 -0
- package/dist/components/button/index.stories.js +304 -0
- package/dist/components/button/index.styles.js +104 -0
- package/dist/components/button/theme.js +58 -0
- package/dist/components/button/utils.js +12 -0
- package/dist/components/card/card-template/index.js +74 -0
- package/dist/components/card/card-template/index.stories.js +110 -0
- package/dist/components/card/card-template/index.style.js +25 -0
- package/dist/components/card/card-template/index.test.js +85 -0
- package/dist/components/card/event-card/constants.js +3 -0
- package/dist/components/card/event-card/event-card-label/index.js +24 -0
- package/dist/components/card/event-card/event-card-label/index.style.js +10 -0
- package/dist/components/card/event-card/event-card-label/index.test.js +23 -0
- package/dist/components/card/event-card/index.js +227 -0
- package/dist/components/card/event-card/index.stories.js +166 -0
- package/dist/components/card/event-card/index.style.js +129 -0
- package/dist/components/card/event-card/index.test.js +79 -0
- package/dist/components/card/index.js +16 -0
- package/dist/components/card/organization-card/index.js +59 -0
- package/dist/components/card/organization-card/index.stories.js +49 -0
- package/dist/components/card/organization-card/index.style.js +10 -0
- package/dist/components/card/organization-card/index.test.js +25 -0
- package/dist/components/card/orgnizer-card/buttons.js +48 -0
- package/dist/components/card/orgnizer-card/index.js +179 -0
- package/dist/components/card/orgnizer-card/index.stories.js +81 -0
- package/dist/components/card/orgnizer-card/index.style.js +58 -0
- package/dist/components/cover/index.js +74 -0
- package/dist/components/cover/index.style.js +48 -0
- package/dist/components/cover/index.test.js +25 -0
- package/dist/components/display/index.js +42 -0
- package/dist/components/display/index.style.js +79 -0
- package/dist/components/file-item/fileImgIcon.js +37 -0
- package/dist/components/file-item/fileImgsFont.js +800 -0
- package/dist/components/file-item/index.js +101 -0
- package/dist/components/file-item/index.stories.js +71 -0
- package/dist/components/file-item/index.style.js +31 -0
- package/dist/components/file-item/index.test.js +106 -0
- package/dist/components/file-item/theme.js +12 -0
- package/dist/components/file-item/utils.js +3 -0
- package/dist/components/form/captcha/index.js +86 -0
- package/dist/components/form/captcha/index.stories.js +42 -0
- package/dist/components/form/captcha/index.style.js +38 -0
- package/dist/components/form/captcha/index.test.js +31 -0
- package/dist/components/form/checkbox/checkbox-option.js +41 -0
- package/dist/components/form/checkbox/checkbox.js +54 -0
- package/dist/components/form/checkbox/index.js +10 -0
- package/dist/components/form/checkbox/index.stories.js +121 -0
- package/dist/components/form/checkbox/index.style.js +62 -0
- package/dist/components/form/dropdown/index.js +10 -0
- package/dist/components/form/dropdown/index.stories.js +119 -0
- package/dist/components/form/dropdown/index.style.js +57 -0
- package/dist/components/form/dropdown/index.test.js +20 -0
- package/dist/components/form/dropdown/option.js +22 -0
- package/dist/components/form/dropdown/select.js +68 -0
- package/dist/components/form/errorMsg.js +21 -0
- package/dist/components/form/index.js +22 -0
- package/dist/components/form/radio/index.js +10 -0
- package/dist/components/form/radio/index.stories.js +119 -0
- package/dist/components/form/radio/index.style.js +61 -0
- package/dist/components/form/radio/radio-option.js +45 -0
- package/dist/components/form/radio/radio.js +56 -0
- package/dist/components/form/text-input/index.js +92 -0
- package/dist/components/form/text-input/index.stories.js +77 -0
- package/dist/components/form/text-input/index.style.js +57 -0
- package/dist/components/form/text-input/index.test.js +63 -0
- package/dist/components/form/textarea/index.js +59 -0
- package/dist/components/form/textarea/index.stories.js +90 -0
- package/dist/components/form/textarea/index.style.js +25 -0
- package/dist/components/form/theme.js +16 -0
- package/dist/components/form-v7/captcha/index.js +101 -0
- package/dist/components/form-v7/captcha/index.stories.js +60 -0
- package/dist/components/form-v7/captcha/index.style.js +38 -0
- package/dist/components/form-v7/captcha/index.test.js +31 -0
- package/dist/components/form-v7/checkbox/checkbox-option.js +44 -0
- package/dist/components/form-v7/checkbox/checkbox.js +70 -0
- package/dist/components/form-v7/checkbox/index.js +10 -0
- package/dist/components/form-v7/checkbox/index.stories.js +113 -0
- package/dist/components/form-v7/checkbox/index.style.js +62 -0
- package/dist/components/form-v7/dropdown/index.js +10 -0
- package/dist/components/form-v7/dropdown/index.stories.js +130 -0
- package/dist/components/form-v7/dropdown/index.style.js +57 -0
- package/dist/components/form-v7/dropdown/index.test.js +20 -0
- package/dist/components/form-v7/dropdown/option.js +18 -0
- package/dist/components/form-v7/dropdown/select.js +85 -0
- package/dist/components/form-v7/errorMsg.js +21 -0
- package/dist/components/form-v7/file-input/index.js +73 -0
- package/dist/components/form-v7/file-input/index.stories.js +73 -0
- package/dist/components/form-v7/file-input/index.style.js +62 -0
- package/dist/components/form-v7/file-input/index.test.js +63 -0
- package/dist/components/form-v7/form/index.stories.js +276 -0
- package/dist/components/form-v7/index.js +25 -0
- package/dist/components/form-v7/index.style.js +11 -0
- package/dist/components/form-v7/label/index.js +31 -0
- package/dist/components/form-v7/label/index.style.js +12 -0
- package/dist/components/form-v7/radio/index.js +10 -0
- package/dist/components/form-v7/radio/index.stories.js +117 -0
- package/dist/components/form-v7/radio/index.style.js +61 -0
- package/dist/components/form-v7/radio/radio-option.js +45 -0
- package/dist/components/form-v7/radio/radio.js +75 -0
- package/dist/components/form-v7/text-input/index.js +132 -0
- package/dist/components/form-v7/text-input/index.stories.js +96 -0
- package/dist/components/form-v7/text-input/index.style.js +49 -0
- package/dist/components/form-v7/text-input/index.test.js +63 -0
- package/dist/components/form-v7/textarea/index.js +71 -0
- package/dist/components/form-v7/textarea/index.stories.js +91 -0
- package/dist/components/form-v7/textarea/index.style.js +25 -0
- package/dist/components/form-v7/theme.js +20 -0
- package/dist/components/globalStyle.js +28 -0
- package/dist/components/grid/index.js +83 -0
- package/dist/components/icon/iconFont.js +806 -0
- package/dist/components/icon/index.js +116 -0
- package/dist/components/icon/index.stories.js +45 -0
- package/dist/components/icon/index.styles.js +12 -0
- package/dist/components/icon/index.test.js +66 -0
- package/dist/components/icon/theme.js +23 -0
- package/dist/components/index.js +75 -0
- package/dist/components/modal/index.js +100 -0
- package/dist/components/modal/index.stories.js +86 -0
- package/dist/components/modal/index.style.js +40 -0
- package/dist/components/modal/theme.js +11 -0
- package/dist/components/numeric-summery-report/index.js +28 -0
- package/dist/components/numeric-summery-report/index.stories.js +37 -0
- package/dist/components/numeric-summery-report/index.style.js +16 -0
- package/dist/components/numeric-summery-report/index.test.js +22 -0
- package/dist/components/product-menu/index.js +10 -0
- package/dist/components/product-menu/index.stories.js +33 -0
- package/dist/components/product-menu/index.style.js +38 -0
- package/dist/components/product-menu/index.test.js +27 -0
- package/dist/components/product-menu/menu-item.js +23 -0
- package/dist/components/product-menu/menu.js +88 -0
- package/dist/components/product-menu/theme.js +16 -0
- package/dist/components/product-owner/index.js +85 -0
- package/dist/components/product-owner/index.style.js +16 -0
- package/dist/components/product-owner/index.test.js +75 -0
- package/dist/components/product-properties/index.js +65 -0
- package/dist/components/product-properties/index.stories.js +52 -0
- package/dist/components/product-properties/index.style.js +14 -0
- package/dist/components/product-properties/index.test.js +31 -0
- package/dist/components/product-properties/product-property/index.js +49 -0
- package/dist/components/product-properties/product-property/index.style.js +9 -0
- package/dist/components/progress-bar/index.js +46 -0
- package/dist/components/progress-bar/index.stories.js +33 -0
- package/dist/components/progress-bar/index.styles.js +65 -0
- package/dist/components/responsive/index.js +44 -0
- package/dist/components/show-date/index.js +25 -0
- package/dist/components/show-date/index.stories.js +51 -0
- package/dist/components/show-date/index.test.js +24 -0
- package/dist/components/spacing/core.js +106 -0
- package/dist/components/spacing/index.js +10 -0
- package/dist/components/spacing/margin/index.js +26 -0
- package/dist/components/spacing/padding/index.js +26 -0
- package/dist/components/storybook.css +54 -0
- package/dist/components/table/actionCell.js +57 -0
- package/dist/components/table/index.js +56 -0
- package/dist/components/table/index.stories.js +188 -0
- package/dist/components/table/index.style.js +107 -0
- package/dist/components/table/index.test.js +119 -0
- package/dist/components/table/tableHeaderRow.js +28 -0
- package/dist/components/table/tableRow.js +60 -0
- package/dist/components/table/theme.js +8 -0
- package/dist/components/tabs/index.js +10 -0
- package/dist/components/tabs/index.stories.js +61 -0
- package/dist/components/tabs/index.style.js +35 -0
- package/dist/components/tabs/index.test.js +30 -0
- package/dist/components/tabs/tabPanel.js +17 -0
- package/dist/components/tabs/tabs.js +71 -0
- package/dist/components/tabs/theme.js +10 -0
- package/dist/components/themes.js +97 -0
- package/dist/components/titled-avatar/index.js +48 -0
- package/dist/components/titled-avatar/index.stories.js +52 -0
- package/dist/components/titled-avatar/index.style.js +30 -0
- package/dist/components/titled-avatar/index.test.js +25 -0
- package/dist/components/typography/heading/index.js +59 -0
- package/dist/components/typography/heading/index.stories.js +94 -0
- package/dist/components/typography/heading/index.styles.js +69 -0
- package/dist/components/typography/heading/index.test.js +122 -0
- package/dist/components/typography/index.js +16 -0
- package/dist/components/typography/link/index.js +82 -0
- package/dist/components/typography/link/index.stories.js +70 -0
- package/dist/components/typography/link/index.styles.js +8 -0
- package/dist/components/typography/link/index.test.js +60 -0
- package/dist/components/typography/paragraph/index.js +37 -0
- package/dist/components/typography/paragraph/index.stories.js +56 -0
- package/dist/components/typography/paragraph/index.styles.js +12 -0
- package/dist/components/typography/paragraph/index.test.js +47 -0
- package/dist/components/typography/text/index.js +156 -0
- package/dist/components/typography/text/index.stories.js +196 -0
- package/dist/components/typography/text/index.styles.js +73 -0
- package/dist/components/typography/text/index.test.js +333 -0
- package/dist/components/typography/theme.js +66 -0
- package/dist/components/typography/utils.js +53 -0
- package/dist/components/typography/utils.test.js +188 -0
- package/dist/components/utils/date.js +7 -0
- package/dist/components/utils/date.test.js +15 -0
- package/dist/components/utils/detectMobile.js +15 -0
- package/dist/components/utils/index.js +7 -0
- package/dist/components/utils/media-query.js +12 -0
- package/dist/components/utils/numbers.js +25 -0
- package/dist/components/utils/test.js +6 -0
- package/dist/components/utils/theme.js +67 -0
- package/dist/docs/App.css +33 -0
- package/dist/docs/App.js +52 -0
- package/dist/docs/assets/ads-label.svg +13 -0
- package/dist/docs/assets/avatar-sample.jpeg +0 -0
- package/dist/docs/assets/cover-sample.png +0 -0
- package/dist/docs/assets/fonts/filesImgs.woff +0 -0
- package/dist/docs/assets/fonts/icomoon.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/dist/docs/assets/fonts/wer6t7890- +0 -0
- package/dist/docs/assets/logo.svg +7 -0
- package/dist/docs/components/header/index.js +10 -0
- package/dist/docs/components/header/index.styles.js +10 -0
- package/dist/docs/components/side-navigation/index.js +167 -0
- package/dist/docs/components/side-navigation/index.styles.js +46 -0
- package/dist/docs/containers/avatar/index.js +92 -0
- package/dist/docs/containers/button/index.js +295 -0
- package/dist/docs/containers/card/index.js +153 -0
- package/dist/docs/containers/cover/index.js +77 -0
- package/dist/docs/containers/form/index.js +41 -0
- package/dist/docs/containers/home/index.js +41 -0
- package/dist/docs/containers/icon/index.js +56 -0
- package/dist/docs/containers/icons/index.js +1488 -0
- package/dist/docs/containers/product/index.js +123 -0
- package/dist/docs/containers/typography/index.js +138 -0
- package/dist/docs/globalStyle.js +58 -0
- package/dist/index.css +3 -0
- package/dist/index.js +18 -0
- package/dist/playground/index.js +144 -0
- package/dist/playground.css +26 -0
- package/dist/serviceWorker.js +135 -0
- package/dist/setupTests.js +24 -0
- package/dist/stories/Page.js +67 -0
- package/dist/storybook.css +58 -0
- package/dist/styles.css +3 -0
- package/dist/test-utils.js +21 -0
- package/doctor-storybook.log +25 -0
- package/migration-storybook.log +329 -0
- package/package.json +132 -12
- package/package.lib.json +75 -0
- package/postcss.config.js +6 -0
- package/public/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_light_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo.svg +1 -0
- package/public/logo142.svg +1 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +2 -0
- package/src/App.js +13 -0
- package/src/components/accordion/index.js +25 -0
- package/src/components/accordion/index.stories.js +82 -0
- package/src/components/accordion/index.styles.js +52 -0
- package/src/components/accordion/panel.js +41 -0
- package/src/components/avatar/index.js +41 -0
- package/src/components/avatar/index.stories.js +59 -0
- package/src/components/avatar/index.styles.js +17 -0
- package/src/components/avatar/index.test.js +10 -0
- package/src/components/avatar/theme.js +13 -0
- package/src/components/button/__snapshots__/index.test.js.snap +489 -0
- package/src/components/button/index.js +209 -0
- package/src/components/button/index.stories.js +304 -0
- package/src/components/button/index.styles.js +104 -0
- package/src/components/button/theme.js +60 -0
- package/src/components/button/utils.js +12 -0
- package/src/components/card/card-template/index.js +74 -0
- package/src/components/card/card-template/index.stories.js +110 -0
- package/src/components/card/card-template/index.style.js +25 -0
- package/src/components/card/card-template/index.test.js +85 -0
- package/src/components/card/event-card/constants.js +3 -0
- package/src/components/card/event-card/event-card-label/index.js +24 -0
- package/src/components/card/event-card/event-card-label/index.style.js +10 -0
- package/src/components/card/event-card/event-card-label/index.test.js +23 -0
- package/src/components/card/event-card/index.js +227 -0
- package/src/components/card/event-card/index.stories.js +166 -0
- package/src/components/card/event-card/index.style.js +129 -0
- package/src/components/card/event-card/index.test.js +79 -0
- package/src/components/card/index.js +16 -0
- package/src/components/card/organization-card/index.js +59 -0
- package/src/components/card/organization-card/index.stories.js +49 -0
- package/src/components/card/organization-card/index.style.js +10 -0
- package/src/components/card/organization-card/index.test.js +25 -0
- package/src/components/card/orgnizer-card/buttons.js +48 -0
- package/src/components/card/orgnizer-card/index.js +179 -0
- package/src/components/card/orgnizer-card/index.stories.js +81 -0
- package/src/components/card/orgnizer-card/index.style.js +58 -0
- package/src/components/cover/index.js +74 -0
- package/src/components/cover/index.style.js +48 -0
- package/src/components/cover/index.test.js +25 -0
- package/src/components/display/index.js +42 -0
- package/src/components/display/index.style.js +80 -0
- package/src/components/file-item/fileImgIcon.js +37 -0
- package/src/components/file-item/fileImgsFont.js +800 -0
- package/src/components/file-item/index.js +101 -0
- package/src/components/file-item/index.stories.js +71 -0
- package/src/components/file-item/index.style.js +31 -0
- package/src/components/file-item/index.test.js +106 -0
- package/src/components/file-item/theme.js +12 -0
- package/src/components/file-item/utils.js +3 -0
- package/src/components/form/captcha/index.js +86 -0
- package/src/components/form/captcha/index.stories.js +42 -0
- package/src/components/form/captcha/index.style.js +38 -0
- package/src/components/form/captcha/index.test.js +31 -0
- package/src/components/form/checkbox/checkbox-option.js +41 -0
- package/src/components/form/checkbox/checkbox.js +54 -0
- package/src/components/form/checkbox/index.js +10 -0
- package/src/components/form/checkbox/index.stories.js +121 -0
- package/src/components/form/checkbox/index.style.js +62 -0
- package/src/components/form/dropdown/index.js +10 -0
- package/src/components/form/dropdown/index.stories.js +119 -0
- package/src/components/form/dropdown/index.style.js +57 -0
- package/src/components/form/dropdown/index.test.js +20 -0
- package/src/components/form/dropdown/option.js +22 -0
- package/src/components/form/dropdown/select.js +68 -0
- package/src/components/form/errorMsg.js +21 -0
- package/src/components/form/index.js +22 -0
- package/src/components/form/radio/index.js +10 -0
- package/src/components/form/radio/index.stories.js +119 -0
- package/src/components/form/radio/index.style.js +61 -0
- package/src/components/form/radio/radio-option.js +45 -0
- package/src/components/form/radio/radio.js +56 -0
- package/src/components/form/text-input/index.js +92 -0
- package/src/components/form/text-input/index.stories.js +77 -0
- package/src/components/form/text-input/index.style.js +57 -0
- package/src/components/form/text-input/index.test.js +63 -0
- package/src/components/form/textarea/index.js +59 -0
- package/src/components/form/textarea/index.stories.js +90 -0
- package/src/components/form/textarea/index.style.js +25 -0
- package/src/components/form/theme.js +16 -0
- package/src/components/form-v7/captcha/index.js +101 -0
- package/src/components/form-v7/captcha/index.stories.js +60 -0
- package/src/components/form-v7/captcha/index.style.js +38 -0
- package/src/components/form-v7/captcha/index.test.js +31 -0
- package/src/components/form-v7/checkbox/checkbox-option.js +44 -0
- package/src/components/form-v7/checkbox/checkbox.js +70 -0
- package/src/components/form-v7/checkbox/index.js +10 -0
- package/src/components/form-v7/checkbox/index.stories.js +113 -0
- package/src/components/form-v7/checkbox/index.style.js +62 -0
- package/src/components/form-v7/dropdown/index.js +10 -0
- package/src/components/form-v7/dropdown/index.stories.js +130 -0
- package/src/components/form-v7/dropdown/index.style.js +57 -0
- package/src/components/form-v7/dropdown/index.test.js +20 -0
- package/src/components/form-v7/dropdown/option.js +18 -0
- package/src/components/form-v7/dropdown/select.js +85 -0
- package/src/components/form-v7/errorMsg.js +21 -0
- package/src/components/form-v7/file-input/index.js +73 -0
- package/src/components/form-v7/file-input/index.stories.js +73 -0
- package/src/components/form-v7/file-input/index.style.js +62 -0
- package/src/components/form-v7/file-input/index.test.js +63 -0
- package/src/components/form-v7/form/index.stories.js +276 -0
- package/src/components/form-v7/index.js +25 -0
- package/src/components/form-v7/index.style.js +11 -0
- package/src/components/form-v7/label/index.js +31 -0
- package/src/components/form-v7/label/index.style.js +12 -0
- package/src/components/form-v7/radio/index.js +10 -0
- package/src/components/form-v7/radio/index.stories.js +117 -0
- package/src/components/form-v7/radio/index.style.js +61 -0
- package/src/components/form-v7/radio/radio-option.js +45 -0
- package/src/components/form-v7/radio/radio.js +75 -0
- package/src/components/form-v7/text-input/index.js +132 -0
- package/src/components/form-v7/text-input/index.stories.js +96 -0
- package/src/components/form-v7/text-input/index.style.js +49 -0
- package/src/components/form-v7/text-input/index.test.js +63 -0
- package/src/components/form-v7/textarea/index.js +71 -0
- package/src/components/form-v7/textarea/index.stories.js +91 -0
- package/src/components/form-v7/textarea/index.style.js +25 -0
- package/src/components/form-v7/theme.js +20 -0
- package/src/components/globalStyle.js +28 -0
- package/src/components/grid/index.js +83 -0
- package/src/components/icon/iconFont.js +806 -0
- package/src/components/icon/index.js +116 -0
- package/src/components/icon/index.stories.js +45 -0
- package/src/components/icon/index.styles.js +12 -0
- package/src/components/icon/index.test.js +66 -0
- package/src/components/icon/theme.js +23 -0
- package/src/components/index.js +75 -0
- package/src/components/modal/index.js +100 -0
- package/src/components/modal/index.stories.js +86 -0
- package/src/components/modal/index.style.js +40 -0
- package/src/components/modal/theme.js +11 -0
- package/src/components/numeric-summery-report/index.js +28 -0
- package/src/components/numeric-summery-report/index.stories.js +37 -0
- package/src/components/numeric-summery-report/index.style.js +16 -0
- package/src/components/numeric-summery-report/index.test.js +22 -0
- package/src/components/product-menu/index.js +10 -0
- package/src/components/product-menu/index.stories.js +33 -0
- package/src/components/product-menu/index.style.js +38 -0
- package/src/components/product-menu/index.test.js +27 -0
- package/src/components/product-menu/menu-item.js +23 -0
- package/src/components/product-menu/menu.js +88 -0
- package/src/components/product-menu/theme.js +16 -0
- package/src/components/product-owner/index.js +85 -0
- package/src/components/product-owner/index.style.js +16 -0
- package/src/components/product-owner/index.test.js +75 -0
- package/src/components/product-properties/index.js +65 -0
- package/src/components/product-properties/index.stories.js +52 -0
- package/src/components/product-properties/index.style.js +14 -0
- package/src/components/product-properties/index.test.js +31 -0
- package/src/components/product-properties/product-property/index.js +49 -0
- package/src/components/product-properties/product-property/index.style.js +9 -0
- package/src/components/progress-bar/index.js +46 -0
- package/src/components/progress-bar/index.stories.js +33 -0
- package/src/components/progress-bar/index.styles.js +65 -0
- package/src/components/responsive/index.js +44 -0
- package/src/components/show-date/index.js +25 -0
- package/src/components/show-date/index.stories.js +51 -0
- package/src/components/show-date/index.style.js +1 -0
- package/src/components/show-date/index.test.js +24 -0
- package/src/components/spacing/core.js +106 -0
- package/src/components/spacing/index.js +10 -0
- package/src/components/spacing/margin/index.js +26 -0
- package/src/components/spacing/padding/index.js +26 -0
- package/src/components/storybook.css +54 -0
- package/src/components/table/actionCell.js +57 -0
- package/src/components/table/index.js +56 -0
- package/src/components/table/index.stories.js +188 -0
- package/src/components/table/index.style.js +107 -0
- package/src/components/table/index.test.js +119 -0
- package/src/components/table/tableHeaderRow.js +28 -0
- package/src/components/table/tableRow.js +60 -0
- package/src/components/table/theme.js +8 -0
- package/src/components/tabs/index.js +10 -0
- package/src/components/tabs/index.stories.js +61 -0
- package/src/components/tabs/index.style.js +35 -0
- package/src/components/tabs/index.test.js +30 -0
- package/src/components/tabs/tabPanel.js +17 -0
- package/src/components/tabs/tabs.js +71 -0
- package/src/components/tabs/theme.js +10 -0
- package/src/components/themes.js +97 -0
- package/src/components/titled-avatar/index.js +48 -0
- package/src/components/titled-avatar/index.stories.js +52 -0
- package/src/components/titled-avatar/index.style.js +30 -0
- package/src/components/titled-avatar/index.test.js +25 -0
- package/src/components/typography/heading/index.js +59 -0
- package/src/components/typography/heading/index.stories.js +94 -0
- package/src/components/typography/heading/index.styles.js +69 -0
- package/src/components/typography/heading/index.test.js +122 -0
- package/src/components/typography/index.js +16 -0
- package/src/components/typography/index.styles.js +1 -0
- package/src/components/typography/link/index.js +82 -0
- package/src/components/typography/link/index.stories.js +70 -0
- package/src/components/typography/link/index.styles.js +8 -0
- package/src/components/typography/link/index.test.js +60 -0
- package/src/components/typography/paragraph/index.js +37 -0
- package/src/components/typography/paragraph/index.stories.js +56 -0
- package/src/components/typography/paragraph/index.styles.js +12 -0
- package/src/components/typography/paragraph/index.test.js +47 -0
- package/src/components/typography/text/index.js +156 -0
- package/src/components/typography/text/index.stories.js +196 -0
- package/src/components/typography/text/index.styles.js +73 -0
- package/src/components/typography/text/index.test.js +333 -0
- package/src/components/typography/theme.js +66 -0
- package/src/components/typography/utils.js +53 -0
- package/src/components/typography/utils.test.js +188 -0
- package/src/components/utils/date.js +7 -0
- package/src/components/utils/date.test.js +15 -0
- package/src/components/utils/detectMobile.js +15 -0
- package/src/components/utils/index.js +7 -0
- package/src/components/utils/media-query.js +12 -0
- package/src/components/utils/numbers.js +25 -0
- package/src/components/utils/test.js +6 -0
- package/src/components/utils/theme.js +67 -0
- package/src/docs/App.css +33 -0
- package/src/docs/App.js +52 -0
- package/src/docs/assets/ads-label.svg +13 -0
- package/src/docs/assets/avatar-sample.jpeg +0 -0
- package/src/docs/assets/cover-sample.png +0 -0
- package/src/docs/assets/fonts/filesImgs.woff +0 -0
- package/src/docs/assets/fonts/icomoon.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/src/docs/assets/fonts/wer6t7890- +0 -0
- package/src/docs/assets/logo.svg +7 -0
- package/src/docs/components/header/index.js +10 -0
- package/src/docs/components/header/index.styles.js +10 -0
- package/src/docs/components/side-navigation/index.js +167 -0
- package/src/docs/components/side-navigation/index.styles.js +46 -0
- package/src/docs/containers/avatar/index.js +92 -0
- package/src/docs/containers/button/index.js +295 -0
- package/src/docs/containers/card/index.js +153 -0
- package/src/docs/containers/cover/index.js +77 -0
- package/src/docs/containers/form/index.js +41 -0
- package/src/docs/containers/home/index.js +41 -0
- package/src/docs/containers/icon/index.js +56 -0
- package/src/docs/containers/icons/index.js +1488 -0
- package/src/docs/containers/product/index.js +123 -0
- package/src/docs/containers/typography/index.js +138 -0
- package/src/docs/globalStyle.js +58 -0
- package/src/index.css +3 -0
- package/src/index.js +18 -0
- package/src/playground/index.js +144 -0
- package/src/playground.css +26 -0
- package/src/serviceWorker.js +135 -0
- package/src/setupTests.js +24 -0
- package/src/stories/Page.jsx +67 -0
- package/src/storybook.css +58 -0
- package/src/styles.css +3 -0
- package/src/test-utils.js +21 -0
- package/storybook.log +113 -0
- package/tailwind.config.js +26 -0
- package/update-stories.js +41 -0
- package/accordion/index.js +0 -25
- package/accordion/index.styles.js +0 -10
- package/accordion/panel.js +0 -41
- package/avatar/index.js +0 -41
- package/avatar/index.styles.js +0 -17
- package/avatar/theme.js +0 -13
- package/button/index.js +0 -116
- package/button/index.styles.js +0 -101
- package/button/theme.js +0 -34
- package/button/utils.js +0 -12
- package/card/card-template/index.js +0 -74
- package/card/card-template/index.stories.js +0 -70
- package/card/card-template/index.style.js +0 -25
- package/card/card-template/index.test.js +0 -85
- package/card/event-card/constants.js +0 -3
- package/card/event-card/event-card-label/index.js +0 -24
- package/card/event-card/event-card-label/index.style.js +0 -10
- package/card/event-card/event-card-label/index.test.js +0 -23
- package/card/event-card/index.js +0 -227
- package/card/event-card/index.stories.js +0 -155
- package/card/event-card/index.style.js +0 -119
- package/card/event-card/index.test.js +0 -79
- package/card/index.js +0 -16
- package/card/organization-card/index.js +0 -59
- package/card/organization-card/index.stories.js +0 -19
- package/card/organization-card/index.style.js +0 -10
- package/card/organization-card/index.test.js +0 -25
- package/card/orgnizer-card/buttons.js +0 -48
- package/card/orgnizer-card/index.js +0 -179
- package/card/orgnizer-card/index.stories.js +0 -25
- package/card/orgnizer-card/index.style.js +0 -47
- package/cover/index.js +0 -74
- package/cover/index.style.js +0 -41
- package/display/index.js +0 -42
- package/display/index.style.js +0 -78
- package/file-item/fileImgIcon.js +0 -37
- package/file-item/fileImgsFont.js +0 -800
- package/file-item/index.js +0 -101
- package/file-item/index.style.js +0 -30
- package/file-item/theme.js +0 -12
- package/file-item/utils.js +0 -3
- package/form/captcha/index.js +0 -86
- package/form/captcha/index.stories.js +0 -23
- package/form/captcha/index.style.js +0 -36
- package/form/captcha/index.test.js +0 -31
- package/form/checkbox/checkbox-option.js +0 -41
- package/form/checkbox/checkbox.js +0 -54
- package/form/checkbox/index.js +0 -10
- package/form/checkbox/index.stories.js +0 -56
- package/form/checkbox/index.style.js +0 -40
- package/form/dropdown/index.js +0 -10
- package/form/dropdown/index.stories.js +0 -62
- package/form/dropdown/index.style.js +0 -55
- package/form/dropdown/index.test.js +0 -20
- package/form/dropdown/option.js +0 -22
- package/form/dropdown/select.js +0 -68
- package/form/errorMsg.js +0 -21
- package/form/index.js +0 -22
- package/form/radio/index.js +0 -10
- package/form/radio/index.stories.js +0 -56
- package/form/radio/index.style.js +0 -52
- package/form/radio/radio-option.js +0 -45
- package/form/radio/radio.js +0 -56
- package/form/text-input/index.js +0 -92
- package/form/text-input/index.stories.js +0 -26
- package/form/text-input/index.style.js +0 -55
- package/form/text-input/index.test.js +0 -63
- package/form/textarea/index.js +0 -59
- package/form/textarea/index.stories.js +0 -31
- package/form/textarea/index.style.js +0 -25
- package/form/theme.js +0 -16
- package/form-v7/captcha/index.js +0 -101
- package/form-v7/captcha/index.stories.js +0 -30
- package/form-v7/captcha/index.style.js +0 -36
- package/form-v7/captcha/index.test.js +0 -31
- package/form-v7/checkbox/checkbox-option.js +0 -42
- package/form-v7/checkbox/checkbox.js +0 -68
- package/form-v7/checkbox/index.js +0 -10
- package/form-v7/checkbox/index.stories.js +0 -80
- package/form-v7/checkbox/index.style.js +0 -40
- package/form-v7/dropdown/index.js +0 -10
- package/form-v7/dropdown/index.stories.js +0 -121
- package/form-v7/dropdown/index.style.js +0 -55
- package/form-v7/dropdown/index.test.js +0 -20
- package/form-v7/dropdown/option.js +0 -18
- package/form-v7/dropdown/select.js +0 -84
- package/form-v7/errorMsg.js +0 -21
- package/form-v7/file-input/index.js +0 -73
- package/form-v7/file-input/index.stories.js +0 -32
- package/form-v7/file-input/index.style.js +0 -54
- package/form-v7/file-input/index.test.js +0 -63
- package/form-v7/form/index.stories.js +0 -173
- package/form-v7/index.js +0 -25
- package/form-v7/index.style.js +0 -3
- package/form-v7/label/index.js +0 -31
- package/form-v7/label/index.style.js +0 -12
- package/form-v7/radio/index.js +0 -10
- package/form-v7/radio/index.stories.js +0 -82
- package/form-v7/radio/index.style.js +0 -52
- package/form-v7/radio/radio-option.js +0 -43
- package/form-v7/radio/radio.js +0 -73
- package/form-v7/text-input/index.js +0 -131
- package/form-v7/text-input/index.stories.js +0 -77
- package/form-v7/text-input/index.style.js +0 -41
- package/form-v7/text-input/index.test.js +0 -63
- package/form-v7/textarea/index.js +0 -70
- package/form-v7/textarea/index.stories.js +0 -45
- package/form-v7/textarea/index.style.js +0 -25
- package/form-v7/theme.js +0 -20
- package/globalStyle.js +0 -28
- package/icon/iconFont.js +0 -796
- package/icon/index.js +0 -52
- package/icon/index.styles.js +0 -12
- package/icon/theme.js +0 -23
- package/icons/index.js +0 -29
- package/icons/index.style.js +0 -30
- package/icons/theme.js +0 -12
- package/icons/utils.js +0 -672
- package/index.js +0 -75
- package/modal/index.js +0 -100
- package/modal/index.style.js +0 -40
- package/modal/theme.js +0 -11
- package/numeric-summery-report/index.js +0 -28
- package/numeric-summery-report/index.style.js +0 -11
- package/product-menu/index.js +0 -10
- package/product-menu/index.style.js +0 -37
- package/product-menu/menu-item.js +0 -23
- package/product-menu/menu.js +0 -88
- package/product-menu/theme.js +0 -12
- package/product-owner/index.js +0 -85
- package/product-owner/index.style.js +0 -10
- package/product-properties/index.js +0 -65
- package/product-properties/index.style.js +0 -11
- package/product-properties/product-property/index.js +0 -49
- package/product-properties/product-property/index.style.js +0 -9
- package/progress-bar/index.js +0 -46
- package/progress-bar/index.styles.js +0 -63
- package/responsive/index.js +0 -44
- package/show-date/index.js +0 -25
- package/spacing/core.js +0 -70
- package/spacing/index.js +0 -10
- package/spacing/margin/index.js +0 -26
- package/spacing/padding/index.js +0 -26
- package/table/actionCell.js +0 -57
- package/table/index.js +0 -56
- package/table/index.style.js +0 -106
- package/table/tableHeaderRow.js +0 -28
- package/table/tableRow.js +0 -60
- package/table/theme.js +0 -8
- package/tabs/index.js +0 -10
- package/tabs/index.style.js +0 -32
- package/tabs/tabPanel.js +0 -17
- package/tabs/tabs.js +0 -71
- package/tabs/theme.js +0 -10
- package/themes.js +0 -97
- package/titled-avatar/index.js +0 -48
- package/titled-avatar/index.style.js +0 -25
- package/typography/heading/index.js +0 -59
- package/typography/heading/index.stories.js +0 -41
- package/typography/heading/index.styles.js +0 -67
- package/typography/heading/index.test.js +0 -122
- package/typography/index.js +0 -16
- package/typography/link/index.js +0 -82
- package/typography/link/index.stories.js +0 -12
- package/typography/link/index.styles.js +0 -8
- package/typography/link/index.test.js +0 -60
- package/typography/paragraph/index.js +0 -37
- package/typography/paragraph/index.stories.js +0 -27
- package/typography/paragraph/index.styles.js +0 -12
- package/typography/paragraph/index.test.js +0 -47
- package/typography/text/index.js +0 -156
- package/typography/text/index.stories.js +0 -26
- package/typography/text/index.styles.js +0 -72
- package/typography/text/index.test.js +0 -333
- package/typography/theme.js +0 -66
- package/typography/utils.js +0 -53
- package/utils/date.js +0 -7
- package/utils/detectMobile.js +0 -15
- package/utils/index.js +0 -7
- package/utils/media-query.js +0 -12
- package/utils/numbers.js +0 -25
- package/utils/test.js +0 -6
- package/utils/theme.js +0 -67
- /package/{show-date → dist/components/show-date}/index.style.js +0 -0
- /package/{typography → dist/components/typography}/index.styles.js +0 -0
|
@@ -0,0 +1,800 @@
|
|
|
1
|
+
import { createGlobalStyle } from 'styled-components';
|
|
2
|
+
|
|
3
|
+
const FontStyle = createGlobalStyle`
|
|
4
|
+
span.jupiter-file-font {
|
|
5
|
+
/* use !important to prevent issues with browser extensions that change fonts */
|
|
6
|
+
font-family: 'JupiterfilesImgs' !important;
|
|
7
|
+
font-style: normal;
|
|
8
|
+
font-weight: normal;
|
|
9
|
+
font-variant: normal;
|
|
10
|
+
text-transform: none;
|
|
11
|
+
line-height: 1;
|
|
12
|
+
|
|
13
|
+
/* Better Font Rendering =========== */
|
|
14
|
+
-webkit-font-smoothing: antialiased;
|
|
15
|
+
-moz-osx-font-smoothing: grayscale;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.icon-doc .path1:before {
|
|
19
|
+
content: "\\e900";
|
|
20
|
+
color: rgb(59, 65, 65);
|
|
21
|
+
}
|
|
22
|
+
.icon-doc .path2:before {
|
|
23
|
+
content: "\\e901";
|
|
24
|
+
margin-left: -0.7509765625em;
|
|
25
|
+
color: rgb(59, 65, 65);
|
|
26
|
+
}
|
|
27
|
+
.icon-doc .path3:before {
|
|
28
|
+
content: "\\e902";
|
|
29
|
+
margin-left: -0.7509765625em;
|
|
30
|
+
color: rgb(59, 65, 65);
|
|
31
|
+
}
|
|
32
|
+
.icon-doc .path4:before {
|
|
33
|
+
content: "\\e903";
|
|
34
|
+
margin-left: -0.7509765625em;
|
|
35
|
+
color: rgb(254, 254, 254);
|
|
36
|
+
}
|
|
37
|
+
.icon-doc .path5:before {
|
|
38
|
+
content: "\\e904";
|
|
39
|
+
margin-left: -0.7509765625em;
|
|
40
|
+
color: rgb(59, 65, 65);
|
|
41
|
+
}
|
|
42
|
+
.icon-doc .path6:before {
|
|
43
|
+
content: "\\e905";
|
|
44
|
+
margin-left: -0.7509765625em;
|
|
45
|
+
color: rgb(59, 65, 65);
|
|
46
|
+
}
|
|
47
|
+
.icon-doc .path7:before {
|
|
48
|
+
content: "\\e906";
|
|
49
|
+
margin-left: -0.7509765625em;
|
|
50
|
+
color: rgb(59, 65, 65);
|
|
51
|
+
}
|
|
52
|
+
.icon-doc .path8:before {
|
|
53
|
+
content: "\\e907";
|
|
54
|
+
margin-left: -0.7509765625em;
|
|
55
|
+
color: rgb(59, 65, 65);
|
|
56
|
+
}
|
|
57
|
+
.icon-doc-light .path1:before {
|
|
58
|
+
content: "\\e908";
|
|
59
|
+
color: rgb(210, 210, 210);
|
|
60
|
+
}
|
|
61
|
+
.icon-doc-light .path2:before {
|
|
62
|
+
content: "\\e909";
|
|
63
|
+
margin-left: -0.7509765625em;
|
|
64
|
+
color: rgb(210, 210, 210);
|
|
65
|
+
}
|
|
66
|
+
.icon-doc-light .path3:before {
|
|
67
|
+
content: "\\e90a";
|
|
68
|
+
margin-left: -0.7509765625em;
|
|
69
|
+
color: rgb(210, 210, 210);
|
|
70
|
+
}
|
|
71
|
+
.icon-doc-light .path4:before {
|
|
72
|
+
content: "\\e90b";
|
|
73
|
+
margin-left: -0.7509765625em;
|
|
74
|
+
color: rgb(254, 254, 254);
|
|
75
|
+
}
|
|
76
|
+
.icon-doc-light .path5:before {
|
|
77
|
+
content: "\\e90c";
|
|
78
|
+
margin-left: -0.7509765625em;
|
|
79
|
+
color: rgb(210, 210, 210);
|
|
80
|
+
}
|
|
81
|
+
.icon-doc-light .path6:before {
|
|
82
|
+
content: "\\e90d";
|
|
83
|
+
margin-left: -0.7509765625em;
|
|
84
|
+
color: rgb(210, 210, 210);
|
|
85
|
+
}
|
|
86
|
+
.icon-doc-light .path7:before {
|
|
87
|
+
content: "\\e90e";
|
|
88
|
+
margin-left: -0.7509765625em;
|
|
89
|
+
color: rgb(210, 210, 210);
|
|
90
|
+
}
|
|
91
|
+
.icon-doc-light .path8:before {
|
|
92
|
+
content: "\\e90f";
|
|
93
|
+
margin-left: -0.7509765625em;
|
|
94
|
+
color: rgb(210, 210, 210);
|
|
95
|
+
}
|
|
96
|
+
.icon-jpg .path1:before {
|
|
97
|
+
content: "\\e910";
|
|
98
|
+
color: rgb(59, 65, 65);
|
|
99
|
+
}
|
|
100
|
+
.icon-jpg .path2:before {
|
|
101
|
+
content: "\\e911";
|
|
102
|
+
margin-left: -0.7509765625em;
|
|
103
|
+
color: rgb(59, 65, 65);
|
|
104
|
+
}
|
|
105
|
+
.icon-jpg .path3:before {
|
|
106
|
+
content: "\\e912";
|
|
107
|
+
margin-left: -0.7509765625em;
|
|
108
|
+
color: rgb(59, 65, 65);
|
|
109
|
+
}
|
|
110
|
+
.icon-jpg .path4:before {
|
|
111
|
+
content: "\\e913";
|
|
112
|
+
margin-left: -0.7509765625em;
|
|
113
|
+
color: rgb(254, 254, 254);
|
|
114
|
+
}
|
|
115
|
+
.icon-jpg .path5:before {
|
|
116
|
+
content: "\\e914";
|
|
117
|
+
margin-left: -0.7509765625em;
|
|
118
|
+
color: rgb(59, 65, 65);
|
|
119
|
+
}
|
|
120
|
+
.icon-jpg .path6:before {
|
|
121
|
+
content: "\\e915";
|
|
122
|
+
margin-left: -0.7509765625em;
|
|
123
|
+
color: rgb(59, 65, 65);
|
|
124
|
+
}
|
|
125
|
+
.icon-jpg-light .path1:before {
|
|
126
|
+
content: "\\e916";
|
|
127
|
+
color: rgb(210, 210, 210);
|
|
128
|
+
}
|
|
129
|
+
.icon-jpg-light .path2:before {
|
|
130
|
+
content: "\\e917";
|
|
131
|
+
margin-left: -0.7509765625em;
|
|
132
|
+
color: rgb(210, 210, 210);
|
|
133
|
+
}
|
|
134
|
+
.icon-jpg-light .path3:before {
|
|
135
|
+
content: "\\e918";
|
|
136
|
+
margin-left: -0.7509765625em;
|
|
137
|
+
color: rgb(210, 210, 210);
|
|
138
|
+
}
|
|
139
|
+
.icon-jpg-light .path4:before {
|
|
140
|
+
content: "\\e919";
|
|
141
|
+
margin-left: -0.7509765625em;
|
|
142
|
+
color: rgb(254, 254, 254);
|
|
143
|
+
}
|
|
144
|
+
.icon-jpg-light .path5:before {
|
|
145
|
+
content: "\\e91a";
|
|
146
|
+
margin-left: -0.7509765625em;
|
|
147
|
+
color: rgb(210, 210, 210);
|
|
148
|
+
}
|
|
149
|
+
.icon-jpg-light .path6:before {
|
|
150
|
+
content: "\\e91b";
|
|
151
|
+
margin-left: -0.7509765625em;
|
|
152
|
+
color: rgb(210, 210, 210);
|
|
153
|
+
}
|
|
154
|
+
.icon-mp3 .path1:before {
|
|
155
|
+
content: "\\e91c";
|
|
156
|
+
color: rgb(59, 65, 65);
|
|
157
|
+
}
|
|
158
|
+
.icon-mp3 .path2:before {
|
|
159
|
+
content: "\\e91d";
|
|
160
|
+
margin-left: -0.7509765625em;
|
|
161
|
+
color: rgb(59, 65, 65);
|
|
162
|
+
}
|
|
163
|
+
.icon-mp3 .path3:before {
|
|
164
|
+
content: "\\e91e";
|
|
165
|
+
margin-left: -0.7509765625em;
|
|
166
|
+
color: rgb(59, 65, 65);
|
|
167
|
+
}
|
|
168
|
+
.icon-mp3 .path4:before {
|
|
169
|
+
content: "\\e91f";
|
|
170
|
+
margin-left: -0.7509765625em;
|
|
171
|
+
color: rgb(59, 65, 65);
|
|
172
|
+
}
|
|
173
|
+
.icon-mp3 .path5:before {
|
|
174
|
+
content: "\\e920";
|
|
175
|
+
margin-left: -0.7509765625em;
|
|
176
|
+
color: rgb(254, 254, 254);
|
|
177
|
+
}
|
|
178
|
+
.icon-mp3-light .path1:before {
|
|
179
|
+
content: "\\e921";
|
|
180
|
+
color: rgb(210, 210, 210);
|
|
181
|
+
}
|
|
182
|
+
.icon-mp3-light .path2:before {
|
|
183
|
+
content: "\\e922";
|
|
184
|
+
margin-left: -0.7509765625em;
|
|
185
|
+
color: rgb(210, 210, 210);
|
|
186
|
+
}
|
|
187
|
+
.icon-mp3-light .path3:before {
|
|
188
|
+
content: "\\e923";
|
|
189
|
+
margin-left: -0.7509765625em;
|
|
190
|
+
color: rgb(210, 210, 210);
|
|
191
|
+
}
|
|
192
|
+
.icon-mp3-light .path4:before {
|
|
193
|
+
content: "\\e924";
|
|
194
|
+
margin-left: -0.7509765625em;
|
|
195
|
+
color: rgb(210, 210, 210);
|
|
196
|
+
}
|
|
197
|
+
.icon-mp3-light .path5:before {
|
|
198
|
+
content: "\\e925";
|
|
199
|
+
margin-left: -0.7509765625em;
|
|
200
|
+
color: rgb(254, 254, 254);
|
|
201
|
+
}
|
|
202
|
+
.icon-mp4 .path1:before {
|
|
203
|
+
content: "\\e926";
|
|
204
|
+
color: rgb(59, 65, 65);
|
|
205
|
+
}
|
|
206
|
+
.icon-mp4 .path2:before {
|
|
207
|
+
content: "\\e927";
|
|
208
|
+
margin-left: -0.7509765625em;
|
|
209
|
+
color: rgb(59, 65, 65);
|
|
210
|
+
}
|
|
211
|
+
.icon-mp4 .path3:before {
|
|
212
|
+
content: "\\e928";
|
|
213
|
+
margin-left: -0.7509765625em;
|
|
214
|
+
color: rgb(59, 65, 65);
|
|
215
|
+
}
|
|
216
|
+
.icon-mp4 .path4:before {
|
|
217
|
+
content: "\\e929";
|
|
218
|
+
margin-left: -0.7509765625em;
|
|
219
|
+
color: rgb(254, 254, 254);
|
|
220
|
+
}
|
|
221
|
+
.icon-mp4 .path5:before {
|
|
222
|
+
content: "\\e92a";
|
|
223
|
+
margin-left: -0.7509765625em;
|
|
224
|
+
color: rgb(59, 65, 65);
|
|
225
|
+
}
|
|
226
|
+
.icon-mp4 .path6:before {
|
|
227
|
+
content: "\\e92b";
|
|
228
|
+
margin-left: -0.7509765625em;
|
|
229
|
+
color: rgb(59, 65, 65);
|
|
230
|
+
}
|
|
231
|
+
.icon-mp4-light .path1:before {
|
|
232
|
+
content: "\\e92c";
|
|
233
|
+
color: rgb(210, 210, 210);
|
|
234
|
+
}
|
|
235
|
+
.icon-mp4-light .path2:before {
|
|
236
|
+
content: "\\e92d";
|
|
237
|
+
margin-left: -0.7509765625em;
|
|
238
|
+
color: rgb(210, 210, 210);
|
|
239
|
+
}
|
|
240
|
+
.icon-mp4-light .path3:before {
|
|
241
|
+
content: "\\e92e";
|
|
242
|
+
margin-left: -0.7509765625em;
|
|
243
|
+
color: rgb(210, 210, 210);
|
|
244
|
+
}
|
|
245
|
+
.icon-mp4-light .path4:before {
|
|
246
|
+
content: "\\e92f";
|
|
247
|
+
margin-left: -0.7509765625em;
|
|
248
|
+
color: rgb(254, 254, 254);
|
|
249
|
+
}
|
|
250
|
+
.icon-mp4-light .path5:before {
|
|
251
|
+
content: "\\e930";
|
|
252
|
+
margin-left: -0.7509765625em;
|
|
253
|
+
color: rgb(210, 210, 210);
|
|
254
|
+
}
|
|
255
|
+
.icon-mp4-light .path6:before {
|
|
256
|
+
content: "\\e931";
|
|
257
|
+
margin-left: -0.7509765625em;
|
|
258
|
+
color: rgb(210, 210, 210);
|
|
259
|
+
}
|
|
260
|
+
.icon-pdf .path1:before {
|
|
261
|
+
content: "\\e932";
|
|
262
|
+
color: rgb(59, 65, 65);
|
|
263
|
+
}
|
|
264
|
+
.icon-pdf .path2:before {
|
|
265
|
+
content: "\\e933";
|
|
266
|
+
margin-left: -0.7509765625em;
|
|
267
|
+
color: rgb(59, 65, 65);
|
|
268
|
+
}
|
|
269
|
+
.icon-pdf .path3:before {
|
|
270
|
+
content: "\\e934";
|
|
271
|
+
margin-left: -0.7509765625em;
|
|
272
|
+
color: rgb(59, 65, 65);
|
|
273
|
+
}
|
|
274
|
+
.icon-pdf .path4:before {
|
|
275
|
+
content: "\\e935";
|
|
276
|
+
margin-left: -0.7509765625em;
|
|
277
|
+
color: rgb(254, 254, 254);
|
|
278
|
+
}
|
|
279
|
+
.icon-pdf .path5:before {
|
|
280
|
+
content: "\\e936";
|
|
281
|
+
margin-left: -0.7509765625em;
|
|
282
|
+
color: rgb(59, 65, 65);
|
|
283
|
+
}
|
|
284
|
+
.icon-pdf-light .path1:before {
|
|
285
|
+
content: "\\e937";
|
|
286
|
+
color: rgb(210, 210, 210);
|
|
287
|
+
}
|
|
288
|
+
.icon-pdf-light .path2:before {
|
|
289
|
+
content: "\\e938";
|
|
290
|
+
margin-left: -0.7509765625em;
|
|
291
|
+
color: rgb(210, 210, 210);
|
|
292
|
+
}
|
|
293
|
+
.icon-pdf-light .path3:before {
|
|
294
|
+
content: "\\e939";
|
|
295
|
+
margin-left: -0.7509765625em;
|
|
296
|
+
color: rgb(210, 210, 210);
|
|
297
|
+
}
|
|
298
|
+
.icon-pdf-light .path4:before {
|
|
299
|
+
content: "\\e93a";
|
|
300
|
+
margin-left: -0.7509765625em;
|
|
301
|
+
color: rgb(254, 254, 254);
|
|
302
|
+
}
|
|
303
|
+
.icon-pdf-light .path5:before {
|
|
304
|
+
content: "\\e93b";
|
|
305
|
+
margin-left: -0.7509765625em;
|
|
306
|
+
color: rgb(210, 210, 210);
|
|
307
|
+
}
|
|
308
|
+
.icon-png .path1:before {
|
|
309
|
+
content: "\\e93c";
|
|
310
|
+
color: rgb(59, 65, 65);
|
|
311
|
+
}
|
|
312
|
+
.icon-png .path2:before {
|
|
313
|
+
content: "\\e93d";
|
|
314
|
+
margin-left: -0.7509765625em;
|
|
315
|
+
color: rgb(59, 65, 65);
|
|
316
|
+
}
|
|
317
|
+
.icon-png .path3:before {
|
|
318
|
+
content: "\\e93e";
|
|
319
|
+
margin-left: -0.7509765625em;
|
|
320
|
+
color: rgb(59, 65, 65);
|
|
321
|
+
}
|
|
322
|
+
.icon-png .path4:before {
|
|
323
|
+
content: "\\e93f";
|
|
324
|
+
margin-left: -0.7509765625em;
|
|
325
|
+
color: rgb(254, 254, 254);
|
|
326
|
+
}
|
|
327
|
+
.icon-png .path5:before {
|
|
328
|
+
content: "\\e940";
|
|
329
|
+
margin-left: -0.7509765625em;
|
|
330
|
+
color: rgb(59, 65, 65);
|
|
331
|
+
}
|
|
332
|
+
.icon-png-light .path1:before {
|
|
333
|
+
content: "\\e941";
|
|
334
|
+
color: rgb(210, 210, 210);
|
|
335
|
+
}
|
|
336
|
+
.icon-png-light .path2:before {
|
|
337
|
+
content: "\\e942";
|
|
338
|
+
margin-left: -0.7509765625em;
|
|
339
|
+
color: rgb(210, 210, 210);
|
|
340
|
+
}
|
|
341
|
+
.icon-png-light .path3:before {
|
|
342
|
+
content: "\\e943";
|
|
343
|
+
margin-left: -0.7509765625em;
|
|
344
|
+
color: rgb(210, 210, 210);
|
|
345
|
+
}
|
|
346
|
+
.icon-png-light .path4:before {
|
|
347
|
+
content: "\\e944";
|
|
348
|
+
margin-left: -0.7509765625em;
|
|
349
|
+
color: rgb(254, 254, 254);
|
|
350
|
+
}
|
|
351
|
+
.icon-png-light .path5:before {
|
|
352
|
+
content: "\\e945";
|
|
353
|
+
margin-left: -0.7509765625em;
|
|
354
|
+
color: rgb(210, 210, 210);
|
|
355
|
+
}
|
|
356
|
+
.icon-pptx .path1:before {
|
|
357
|
+
content: "\\e946";
|
|
358
|
+
color: rgb(59, 65, 65);
|
|
359
|
+
}
|
|
360
|
+
.icon-pptx .path2:before {
|
|
361
|
+
content: "\\e947";
|
|
362
|
+
margin-left: -0.7509765625em;
|
|
363
|
+
color: rgb(59, 65, 65);
|
|
364
|
+
}
|
|
365
|
+
.icon-pptx .path3:before {
|
|
366
|
+
content: "\\e948";
|
|
367
|
+
margin-left: -0.7509765625em;
|
|
368
|
+
color: rgb(59, 65, 65);
|
|
369
|
+
}
|
|
370
|
+
.icon-pptx .path4:before {
|
|
371
|
+
content: "\\e949";
|
|
372
|
+
margin-left: -0.7509765625em;
|
|
373
|
+
color: rgb(254, 254, 254);
|
|
374
|
+
}
|
|
375
|
+
.icon-pptx .path5:before {
|
|
376
|
+
content: "\\e94a";
|
|
377
|
+
margin-left: -0.7509765625em;
|
|
378
|
+
color: rgb(59, 65, 65);
|
|
379
|
+
}
|
|
380
|
+
.icon-pptx .path6:before {
|
|
381
|
+
content: "\\e94b";
|
|
382
|
+
margin-left: -0.7509765625em;
|
|
383
|
+
color: rgb(59, 65, 65);
|
|
384
|
+
}
|
|
385
|
+
.icon-pptx .path7:before {
|
|
386
|
+
content: "\\e94c";
|
|
387
|
+
margin-left: -0.7509765625em;
|
|
388
|
+
color: rgb(59, 65, 65);
|
|
389
|
+
}
|
|
390
|
+
.icon-pptx .path8:before {
|
|
391
|
+
content: "\\e94d";
|
|
392
|
+
margin-left: -0.7509765625em;
|
|
393
|
+
color: rgb(59, 65, 65);
|
|
394
|
+
}
|
|
395
|
+
.icon-pptx .path9:before {
|
|
396
|
+
content: "\\e94e";
|
|
397
|
+
margin-left: -0.7509765625em;
|
|
398
|
+
color: rgb(59, 65, 65);
|
|
399
|
+
}
|
|
400
|
+
.icon-pptx .path10:before {
|
|
401
|
+
content: "\\e94f";
|
|
402
|
+
margin-left: -0.7509765625em;
|
|
403
|
+
color: rgb(59, 65, 65);
|
|
404
|
+
}
|
|
405
|
+
.icon-pptx .path11:before {
|
|
406
|
+
content: "\\e950";
|
|
407
|
+
margin-left: -0.7509765625em;
|
|
408
|
+
color: rgb(59, 65, 65);
|
|
409
|
+
}
|
|
410
|
+
.icon-pptx .path12:before {
|
|
411
|
+
content: "\\e951";
|
|
412
|
+
margin-left: -0.7509765625em;
|
|
413
|
+
color: rgb(59, 65, 65);
|
|
414
|
+
}
|
|
415
|
+
.icon-pptx .path13:before {
|
|
416
|
+
content: "\\e952";
|
|
417
|
+
margin-left: -0.7509765625em;
|
|
418
|
+
color: rgb(59, 65, 65);
|
|
419
|
+
}
|
|
420
|
+
.icon-pptx-light .path1:before {
|
|
421
|
+
content: "\\e953";
|
|
422
|
+
color: rgb(210, 210, 210);
|
|
423
|
+
}
|
|
424
|
+
.icon-pptx-light .path2:before {
|
|
425
|
+
content: "\\e954";
|
|
426
|
+
margin-left: -0.7509765625em;
|
|
427
|
+
color: rgb(210, 210, 210);
|
|
428
|
+
}
|
|
429
|
+
.icon-pptx-light .path3:before {
|
|
430
|
+
content: "\\e955";
|
|
431
|
+
margin-left: -0.7509765625em;
|
|
432
|
+
color: rgb(210, 210, 210);
|
|
433
|
+
}
|
|
434
|
+
.icon-pptx-light .path4:before {
|
|
435
|
+
content: "\\e956";
|
|
436
|
+
margin-left: -0.7509765625em;
|
|
437
|
+
color: rgb(254, 254, 254);
|
|
438
|
+
}
|
|
439
|
+
.icon-pptx-light .path5:before {
|
|
440
|
+
content: "\\e957";
|
|
441
|
+
margin-left: -0.7509765625em;
|
|
442
|
+
color: rgb(210, 210, 210);
|
|
443
|
+
}
|
|
444
|
+
.icon-pptx-light .path6:before {
|
|
445
|
+
content: "\\e958";
|
|
446
|
+
margin-left: -0.7509765625em;
|
|
447
|
+
color: rgb(210, 210, 210);
|
|
448
|
+
}
|
|
449
|
+
.icon-pptx-light .path7:before {
|
|
450
|
+
content: "\\e959";
|
|
451
|
+
margin-left: -0.7509765625em;
|
|
452
|
+
color: rgb(210, 210, 210);
|
|
453
|
+
}
|
|
454
|
+
.icon-pptx-light .path8:before {
|
|
455
|
+
content: "\\e95a";
|
|
456
|
+
margin-left: -0.7509765625em;
|
|
457
|
+
color: rgb(210, 210, 210);
|
|
458
|
+
}
|
|
459
|
+
.icon-pptx-light .path9:before {
|
|
460
|
+
content: "\\e95b";
|
|
461
|
+
margin-left: -0.7509765625em;
|
|
462
|
+
color: rgb(210, 210, 210);
|
|
463
|
+
}
|
|
464
|
+
.icon-pptx-light .path10:before {
|
|
465
|
+
content: "\\e95c";
|
|
466
|
+
margin-left: -0.7509765625em;
|
|
467
|
+
color: rgb(210, 210, 210);
|
|
468
|
+
}
|
|
469
|
+
.icon-pptx-light .path11:before {
|
|
470
|
+
content: "\\e95d";
|
|
471
|
+
margin-left: -0.7509765625em;
|
|
472
|
+
color: rgb(210, 210, 210);
|
|
473
|
+
}
|
|
474
|
+
.icon-pptx-light .path12:before {
|
|
475
|
+
content: "\\e95e";
|
|
476
|
+
margin-left: -0.7509765625em;
|
|
477
|
+
color: rgb(210, 210, 210);
|
|
478
|
+
}
|
|
479
|
+
.icon-pptx-light .path13:before {
|
|
480
|
+
content: "\\e95f";
|
|
481
|
+
margin-left: -0.7509765625em;
|
|
482
|
+
color: rgb(210, 210, 210);
|
|
483
|
+
}
|
|
484
|
+
.icon-rar .path1:before {
|
|
485
|
+
content: "\\e960";
|
|
486
|
+
color: rgb(59, 65, 65);
|
|
487
|
+
}
|
|
488
|
+
.icon-rar .path2:before {
|
|
489
|
+
content: "\\e961";
|
|
490
|
+
margin-left: -0.7509765625em;
|
|
491
|
+
color: rgb(59, 65, 65);
|
|
492
|
+
}
|
|
493
|
+
.icon-rar .path3:before {
|
|
494
|
+
content: "\\e962";
|
|
495
|
+
margin-left: -0.7509765625em;
|
|
496
|
+
color: rgb(59, 65, 65);
|
|
497
|
+
}
|
|
498
|
+
.icon-rar .path4:before {
|
|
499
|
+
content: "\\e963";
|
|
500
|
+
margin-left: -0.7509765625em;
|
|
501
|
+
color: rgb(254, 254, 254);
|
|
502
|
+
}
|
|
503
|
+
.icon-rar .path5:before {
|
|
504
|
+
content: "\\e964";
|
|
505
|
+
margin-left: -0.7509765625em;
|
|
506
|
+
color: rgb(59, 65, 65);
|
|
507
|
+
}
|
|
508
|
+
.icon-rar .path6:before {
|
|
509
|
+
content: "\\e965";
|
|
510
|
+
margin-left: -0.7509765625em;
|
|
511
|
+
color: rgb(59, 65, 65);
|
|
512
|
+
}
|
|
513
|
+
.icon-rar .path7:before {
|
|
514
|
+
content: "\\e966";
|
|
515
|
+
margin-left: -0.7509765625em;
|
|
516
|
+
color: rgb(59, 65, 65);
|
|
517
|
+
}
|
|
518
|
+
.icon-rar .path8:before {
|
|
519
|
+
content: "\\e967";
|
|
520
|
+
margin-left: -0.7509765625em;
|
|
521
|
+
color: rgb(59, 65, 65);
|
|
522
|
+
}
|
|
523
|
+
.icon-rar .path9:before {
|
|
524
|
+
content: "\\e968";
|
|
525
|
+
margin-left: -0.7509765625em;
|
|
526
|
+
color: rgb(59, 65, 65);
|
|
527
|
+
}
|
|
528
|
+
.icon-rar .path10:before {
|
|
529
|
+
content: "\\e969";
|
|
530
|
+
margin-left: -0.7509765625em;
|
|
531
|
+
color: rgb(59, 65, 65);
|
|
532
|
+
}
|
|
533
|
+
.icon-rar .path11:before {
|
|
534
|
+
content: "\\e96a";
|
|
535
|
+
margin-left: -0.7509765625em;
|
|
536
|
+
color: rgb(59, 65, 65);
|
|
537
|
+
}
|
|
538
|
+
.icon-rar .path12:before {
|
|
539
|
+
content: "\\e96b";
|
|
540
|
+
margin-left: -0.7509765625em;
|
|
541
|
+
color: rgb(59, 65, 65);
|
|
542
|
+
}
|
|
543
|
+
.icon-rar-light .path1:before {
|
|
544
|
+
content: "\\e96c";
|
|
545
|
+
color: rgb(210, 210, 210);
|
|
546
|
+
}
|
|
547
|
+
.icon-rar-light .path2:before {
|
|
548
|
+
content: "\\e96d";
|
|
549
|
+
margin-left: -0.7509765625em;
|
|
550
|
+
color: rgb(210, 210, 210);
|
|
551
|
+
}
|
|
552
|
+
.icon-rar-light .path3:before {
|
|
553
|
+
content: "\\e96e";
|
|
554
|
+
margin-left: -0.7509765625em;
|
|
555
|
+
color: rgb(210, 210, 210);
|
|
556
|
+
}
|
|
557
|
+
.icon-rar-light .path4:before {
|
|
558
|
+
content: "\\e96f";
|
|
559
|
+
margin-left: -0.7509765625em;
|
|
560
|
+
color: rgb(254, 254, 254);
|
|
561
|
+
}
|
|
562
|
+
.icon-rar-light .path5:before {
|
|
563
|
+
content: "\\e970";
|
|
564
|
+
margin-left: -0.7509765625em;
|
|
565
|
+
color: rgb(210, 210, 210);
|
|
566
|
+
}
|
|
567
|
+
.icon-rar-light .path6:before {
|
|
568
|
+
content: "\\e971";
|
|
569
|
+
margin-left: -0.7509765625em;
|
|
570
|
+
color: rgb(210, 210, 210);
|
|
571
|
+
}
|
|
572
|
+
.icon-rar-light .path7:before {
|
|
573
|
+
content: "\\e972";
|
|
574
|
+
margin-left: -0.7509765625em;
|
|
575
|
+
color: rgb(210, 210, 210);
|
|
576
|
+
}
|
|
577
|
+
.icon-rar-light .path8:before {
|
|
578
|
+
content: "\\e973";
|
|
579
|
+
margin-left: -0.7509765625em;
|
|
580
|
+
color: rgb(210, 210, 210);
|
|
581
|
+
}
|
|
582
|
+
.icon-rar-light .path9:before {
|
|
583
|
+
content: "\\e974";
|
|
584
|
+
margin-left: -0.7509765625em;
|
|
585
|
+
color: rgb(210, 210, 210);
|
|
586
|
+
}
|
|
587
|
+
.icon-rar-light .path10:before {
|
|
588
|
+
content: "\\e975";
|
|
589
|
+
margin-left: -0.7509765625em;
|
|
590
|
+
color: rgb(210, 210, 210);
|
|
591
|
+
}
|
|
592
|
+
.icon-rar-light .path11:before {
|
|
593
|
+
content: "\\e976";
|
|
594
|
+
margin-left: -0.7509765625em;
|
|
595
|
+
color: rgb(210, 210, 210);
|
|
596
|
+
}
|
|
597
|
+
.icon-rar-light .path12:before {
|
|
598
|
+
content: "\\e977";
|
|
599
|
+
margin-left: -0.7509765625em;
|
|
600
|
+
color: rgb(210, 210, 210);
|
|
601
|
+
}
|
|
602
|
+
.icon-xlsx .path1:before {
|
|
603
|
+
content: "\\e978";
|
|
604
|
+
color: rgb(59, 65, 65);
|
|
605
|
+
}
|
|
606
|
+
.icon-xlsx .path2:before {
|
|
607
|
+
content: "\\e979";
|
|
608
|
+
margin-left: -0.7509765625em;
|
|
609
|
+
color: rgb(59, 65, 65);
|
|
610
|
+
}
|
|
611
|
+
.icon-xlsx .path3:before {
|
|
612
|
+
content: "\\e97a";
|
|
613
|
+
margin-left: -0.7509765625em;
|
|
614
|
+
color: rgb(59, 65, 65);
|
|
615
|
+
}
|
|
616
|
+
.icon-xlsx .path4:before {
|
|
617
|
+
content: "\\e97b";
|
|
618
|
+
margin-left: -0.7509765625em;
|
|
619
|
+
color: rgb(254, 254, 254);
|
|
620
|
+
}
|
|
621
|
+
.icon-xlsx .path5:before {
|
|
622
|
+
content: "\\e97c";
|
|
623
|
+
margin-left: -0.7509765625em;
|
|
624
|
+
color: rgb(59, 65, 65);
|
|
625
|
+
}
|
|
626
|
+
.icon-xlsx .path6:before {
|
|
627
|
+
content: "\\e97d";
|
|
628
|
+
margin-left: -0.7509765625em;
|
|
629
|
+
color: rgb(59, 65, 65);
|
|
630
|
+
}
|
|
631
|
+
.icon-xlsx .path7:before {
|
|
632
|
+
content: "\\e97e";
|
|
633
|
+
margin-left: -0.7509765625em;
|
|
634
|
+
color: rgb(59, 65, 65);
|
|
635
|
+
}
|
|
636
|
+
.icon-xlsx .path8:before {
|
|
637
|
+
content: "\\e97f";
|
|
638
|
+
margin-left: -0.7509765625em;
|
|
639
|
+
color: rgb(59, 65, 65);
|
|
640
|
+
}
|
|
641
|
+
.icon-xlsx-light .path1:before {
|
|
642
|
+
content: "\\e980";
|
|
643
|
+
color: rgb(210, 210, 210);
|
|
644
|
+
}
|
|
645
|
+
.icon-xlsx-light .path2:before {
|
|
646
|
+
content: "\\e981";
|
|
647
|
+
margin-left: -0.7509765625em;
|
|
648
|
+
color: rgb(210, 210, 210);
|
|
649
|
+
}
|
|
650
|
+
.icon-xlsx-light .path3:before {
|
|
651
|
+
content: "\\e982";
|
|
652
|
+
margin-left: -0.7509765625em;
|
|
653
|
+
color: rgb(210, 210, 210);
|
|
654
|
+
}
|
|
655
|
+
.icon-xlsx-light .path4:before {
|
|
656
|
+
content: "\\e983";
|
|
657
|
+
margin-left: -0.7509765625em;
|
|
658
|
+
color: rgb(254, 254, 254);
|
|
659
|
+
}
|
|
660
|
+
.icon-xlsx-light .path5:before {
|
|
661
|
+
content: "\\e984";
|
|
662
|
+
margin-left: -0.7509765625em;
|
|
663
|
+
color: rgb(210, 210, 210);
|
|
664
|
+
}
|
|
665
|
+
.icon-xlsx-light .path6:before {
|
|
666
|
+
content: "\\e985";
|
|
667
|
+
margin-left: -0.7509765625em;
|
|
668
|
+
color: rgb(210, 210, 210);
|
|
669
|
+
}
|
|
670
|
+
.icon-xlsx-light .path7:before {
|
|
671
|
+
content: "\\e986";
|
|
672
|
+
margin-left: -0.7509765625em;
|
|
673
|
+
color: rgb(210, 210, 210);
|
|
674
|
+
}
|
|
675
|
+
.icon-xlsx-light .path8:before {
|
|
676
|
+
content: "\\e987";
|
|
677
|
+
margin-left: -0.7509765625em;
|
|
678
|
+
color: rgb(210, 210, 210);
|
|
679
|
+
}
|
|
680
|
+
.icon-zip .path1:before {
|
|
681
|
+
content: "\\e988";
|
|
682
|
+
color: rgb(59, 65, 65);
|
|
683
|
+
}
|
|
684
|
+
.icon-zip .path2:before {
|
|
685
|
+
content: "\\e989";
|
|
686
|
+
margin-left: -0.7509765625em;
|
|
687
|
+
color: rgb(59, 65, 65);
|
|
688
|
+
}
|
|
689
|
+
.icon-zip .path3:before {
|
|
690
|
+
content: "\\e98a";
|
|
691
|
+
margin-left: -0.7509765625em;
|
|
692
|
+
color: rgb(59, 65, 65);
|
|
693
|
+
}
|
|
694
|
+
.icon-zip .path4:before {
|
|
695
|
+
content: "\\e98b";
|
|
696
|
+
margin-left: -0.7509765625em;
|
|
697
|
+
color: rgb(254, 254, 254);
|
|
698
|
+
}
|
|
699
|
+
.icon-zip .path5:before {
|
|
700
|
+
content: "\\e98c";
|
|
701
|
+
margin-left: -0.7509765625em;
|
|
702
|
+
color: rgb(59, 65, 65);
|
|
703
|
+
}
|
|
704
|
+
.icon-zip .path6:before {
|
|
705
|
+
content: "\\e98d";
|
|
706
|
+
margin-left: -0.7509765625em;
|
|
707
|
+
color: rgb(59, 65, 65);
|
|
708
|
+
}
|
|
709
|
+
.icon-zip .path7:before {
|
|
710
|
+
content: "\\e98e";
|
|
711
|
+
margin-left: -0.7509765625em;
|
|
712
|
+
color: rgb(59, 65, 65);
|
|
713
|
+
}
|
|
714
|
+
.icon-zip .path8:before {
|
|
715
|
+
content: "\\e98f";
|
|
716
|
+
margin-left: -0.7509765625em;
|
|
717
|
+
color: rgb(59, 65, 65);
|
|
718
|
+
}
|
|
719
|
+
.icon-zip .path9:before {
|
|
720
|
+
content: "\\e990";
|
|
721
|
+
margin-left: -0.7509765625em;
|
|
722
|
+
color: rgb(59, 65, 65);
|
|
723
|
+
}
|
|
724
|
+
.icon-zip .path10:before {
|
|
725
|
+
content: "\\e991";
|
|
726
|
+
margin-left: -0.7509765625em;
|
|
727
|
+
color: rgb(59, 65, 65);
|
|
728
|
+
}
|
|
729
|
+
.icon-zip .path11:before {
|
|
730
|
+
content: "\\e992";
|
|
731
|
+
margin-left: -0.7509765625em;
|
|
732
|
+
color: rgb(59, 65, 65);
|
|
733
|
+
}
|
|
734
|
+
.icon-zip .path12:before {
|
|
735
|
+
content: "\\e993";
|
|
736
|
+
margin-left: -0.7509765625em;
|
|
737
|
+
color: rgb(59, 65, 65);
|
|
738
|
+
}
|
|
739
|
+
.icon-zip-light .path1:before {
|
|
740
|
+
content: "\\e994";
|
|
741
|
+
color: rgb(210, 210, 210);
|
|
742
|
+
}
|
|
743
|
+
.icon-zip-light .path2:before {
|
|
744
|
+
content: "\\e995";
|
|
745
|
+
margin-left: -0.7509765625em;
|
|
746
|
+
color: rgb(210, 210, 210);
|
|
747
|
+
}
|
|
748
|
+
.icon-zip-light .path3:before {
|
|
749
|
+
content: "\\e996";
|
|
750
|
+
margin-left: -0.7509765625em;
|
|
751
|
+
color: rgb(210, 210, 210);
|
|
752
|
+
}
|
|
753
|
+
.icon-zip-light .path4:before {
|
|
754
|
+
content: "\\e997";
|
|
755
|
+
margin-left: -0.7509765625em;
|
|
756
|
+
color: rgb(254, 254, 254);
|
|
757
|
+
}
|
|
758
|
+
.icon-zip-light .path5:before {
|
|
759
|
+
content: "\\e998";
|
|
760
|
+
margin-left: -0.7509765625em;
|
|
761
|
+
color: rgb(210, 210, 210);
|
|
762
|
+
}
|
|
763
|
+
.icon-zip-light .path6:before {
|
|
764
|
+
content: "\\e999";
|
|
765
|
+
margin-left: -0.7509765625em;
|
|
766
|
+
color: rgb(210, 210, 210);
|
|
767
|
+
}
|
|
768
|
+
.icon-zip-light .path7:before {
|
|
769
|
+
content: "\\e99a";
|
|
770
|
+
margin-left: -0.7509765625em;
|
|
771
|
+
color: rgb(210, 210, 210);
|
|
772
|
+
}
|
|
773
|
+
.icon-zip-light .path8:before {
|
|
774
|
+
content: "\\e99b";
|
|
775
|
+
margin-left: -0.7509765625em;
|
|
776
|
+
color: rgb(210, 210, 210);
|
|
777
|
+
}
|
|
778
|
+
.icon-zip-light .path9:before {
|
|
779
|
+
content: "\\e99c";
|
|
780
|
+
margin-left: -0.7509765625em;
|
|
781
|
+
color: rgb(210, 210, 210);
|
|
782
|
+
}
|
|
783
|
+
.icon-zip-light .path10:before {
|
|
784
|
+
content: "\\e99d";
|
|
785
|
+
margin-left: -0.7509765625em;
|
|
786
|
+
color: rgb(210, 210, 210);
|
|
787
|
+
}
|
|
788
|
+
.icon-zip-light .path11:before {
|
|
789
|
+
content: "\\e99e";
|
|
790
|
+
margin-left: -0.7509765625em;
|
|
791
|
+
color: rgb(210, 210, 210);
|
|
792
|
+
}
|
|
793
|
+
.icon-zip-light .path12:before {
|
|
794
|
+
content: "\\e99f";
|
|
795
|
+
margin-left: -0.7509765625em;
|
|
796
|
+
color: rgb(210, 210, 210);
|
|
797
|
+
}
|
|
798
|
+
`;
|
|
799
|
+
|
|
800
|
+
export default FontStyle;
|