@frankenstyle/uikit 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierignore +15 -0
- package/.prettierrc.json +12 -0
- package/BACKERS.md +5 -0
- package/CHANGELOG.md +3759 -0
- package/CONTRIBUTING.md +96 -0
- package/LICENSE.md +7 -0
- package/README.md +65 -0
- package/build/build.js +95 -0
- package/build/icons.js +35 -0
- package/build/less.js +95 -0
- package/build/package.json +4 -0
- package/build/prefix.js +76 -0
- package/build/publishDev.js +33 -0
- package/build/release.js +123 -0
- package/build/scope.js +106 -0
- package/build/scss/mixin.scss +32 -0
- package/build/scss.js +252 -0
- package/build/util.js +288 -0
- package/build/wrapper/component.js +7 -0
- package/build/wrapper/icons.js +13 -0
- package/composer.json +17 -0
- package/dist/css/uikit-rtl.css +13333 -0
- package/dist/css/uikit-rtl.min.css +1 -0
- package/dist/css/uikit.css +13333 -0
- package/dist/css/uikit.min.css +1 -0
- package/dist/js/components/.gitkeep +0 -0
- package/dist/js/components/countdown.js +112 -0
- package/dist/js/components/countdown.min.js +1 -0
- package/dist/js/components/filter.js +527 -0
- package/dist/js/components/filter.min.js +1 -0
- package/dist/js/components/lightbox-panel.js +1695 -0
- package/dist/js/components/lightbox-panel.min.js +1 -0
- package/dist/js/components/lightbox.js +1783 -0
- package/dist/js/components/lightbox.min.js +1 -0
- package/dist/js/components/notification.js +127 -0
- package/dist/js/components/notification.min.js +1 -0
- package/dist/js/components/parallax.js +726 -0
- package/dist/js/components/parallax.min.js +1 -0
- package/dist/js/components/slider-parallax.js +637 -0
- package/dist/js/components/slider-parallax.min.js +1 -0
- package/dist/js/components/slider.js +1731 -0
- package/dist/js/components/slider.min.js +1 -0
- package/dist/js/components/slideshow-parallax.js +637 -0
- package/dist/js/components/slideshow-parallax.min.js +1 -0
- package/dist/js/components/slideshow.js +1555 -0
- package/dist/js/components/slideshow.min.js +1 -0
- package/dist/js/components/sortable.js +680 -0
- package/dist/js/components/sortable.min.js +1 -0
- package/dist/js/components/tooltip.js +446 -0
- package/dist/js/components/tooltip.min.js +1 -0
- package/dist/js/components/upload.js +235 -0
- package/dist/js/components/upload.min.js +1 -0
- package/dist/js/uikit-core.js +6726 -0
- package/dist/js/uikit-core.min.js +1 -0
- package/dist/js/uikit-icons.js +184 -0
- package/dist/js/uikit-icons.min.js +1 -0
- package/dist/js/uikit.js +10077 -0
- package/dist/js/uikit.min.js +1 -0
- package/eslint.config.mjs +35 -0
- package/jsconfig.json +9 -0
- package/package.json +66 -0
- package/src/images/backgrounds/accordion-close.svg +4 -0
- package/src/images/backgrounds/accordion-open.svg +3 -0
- package/src/images/backgrounds/divider-icon.svg +3 -0
- package/src/images/backgrounds/form-checkbox-indeterminate.svg +3 -0
- package/src/images/backgrounds/form-checkbox.svg +3 -0
- package/src/images/backgrounds/form-datalist.svg +3 -0
- package/src/images/backgrounds/form-radio.svg +3 -0
- package/src/images/backgrounds/form-select.svg +4 -0
- package/src/images/backgrounds/list-bullet.svg +3 -0
- package/src/images/components/close-icon.svg +1 -0
- package/src/images/components/close-large.svg +1 -0
- package/src/images/components/drop-parent-icon.svg +1 -0
- package/src/images/components/marker.svg +1 -0
- package/src/images/components/nav-parent-icon-large.svg +1 -0
- package/src/images/components/nav-parent-icon.svg +1 -0
- package/src/images/components/navbar-parent-icon.svg +1 -0
- package/src/images/components/navbar-toggle-icon.svg +34 -0
- package/src/images/components/overlay-icon.svg +1 -0
- package/src/images/components/pagination-next.svg +1 -0
- package/src/images/components/pagination-previous.svg +1 -0
- package/src/images/components/search-icon.svg +1 -0
- package/src/images/components/search-large.svg +1 -0
- package/src/images/components/search-medium.svg +1 -0
- package/src/images/components/slidenav-next-large.svg +1 -0
- package/src/images/components/slidenav-next.svg +1 -0
- package/src/images/components/slidenav-previous-large.svg +1 -0
- package/src/images/components/slidenav-previous.svg +1 -0
- package/src/images/components/spinner.svg +3 -0
- package/src/images/components/totop.svg +1 -0
- package/src/images/icons/500px.svg +30 -0
- package/src/images/icons/album.svg +5 -0
- package/src/images/icons/android-robot.svg +6 -0
- package/src/images/icons/android.svg +3 -0
- package/src/images/icons/apple.svg +3 -0
- package/src/images/icons/arrow-down-arrow-up.svg +6 -0
- package/src/images/icons/arrow-down.svg +4 -0
- package/src/images/icons/arrow-left.svg +4 -0
- package/src/images/icons/arrow-right.svg +4 -0
- package/src/images/icons/arrow-up-right.svg +4 -0
- package/src/images/icons/arrow-up.svg +4 -0
- package/src/images/icons/bag.svg +4 -0
- package/src/images/icons/ban.svg +4 -0
- package/src/images/icons/behance.svg +5 -0
- package/src/images/icons/bell.svg +4 -0
- package/src/images/icons/bluesky.svg +3 -0
- package/src/images/icons/bold.svg +3 -0
- package/src/images/icons/bolt.svg +3 -0
- package/src/images/icons/bookmark.svg +3 -0
- package/src/images/icons/calendar.svg +5 -0
- package/src/images/icons/camera.svg +4 -0
- package/src/images/icons/cart.svg +5 -0
- package/src/images/icons/check.svg +3 -0
- package/src/images/icons/chevron-double-left.svg +4 -0
- package/src/images/icons/chevron-double-right.svg +4 -0
- package/src/images/icons/chevron-down.svg +3 -0
- package/src/images/icons/chevron-left.svg +3 -0
- package/src/images/icons/chevron-right.svg +3 -0
- package/src/images/icons/chevron-up.svg +3 -0
- package/src/images/icons/clock.svg +5 -0
- package/src/images/icons/close-circle.svg +5 -0
- package/src/images/icons/close.svg +4 -0
- package/src/images/icons/cloud-download.svg +5 -0
- package/src/images/icons/cloud-upload.svg +5 -0
- package/src/images/icons/code.svg +4 -0
- package/src/images/icons/cog.svg +4 -0
- package/src/images/icons/comment.svg +3 -0
- package/src/images/icons/commenting.svg +6 -0
- package/src/images/icons/comments.svg +4 -0
- package/src/images/icons/copy.svg +4 -0
- package/src/images/icons/credit-card.svg +4 -0
- package/src/images/icons/crosshairs.svg +7 -0
- package/src/images/icons/database.svg +6 -0
- package/src/images/icons/desktop.svg +6 -0
- package/src/images/icons/discord.svg +3 -0
- package/src/images/icons/download.svg +5 -0
- package/src/images/icons/dribbble.svg +6 -0
- package/src/images/icons/etsy.svg +3 -0
- package/src/images/icons/expand.svg +6 -0
- package/src/images/icons/eye-slash.svg +5 -0
- package/src/images/icons/eye.svg +4 -0
- package/src/images/icons/facebook.svg +3 -0
- package/src/images/icons/file-edit.svg +4 -0
- package/src/images/icons/file-pdf.svg +4 -0
- package/src/images/icons/file-text.svg +7 -0
- package/src/images/icons/file.svg +3 -0
- package/src/images/icons/flickr.svg +4 -0
- package/src/images/icons/folder.svg +3 -0
- package/src/images/icons/forward.svg +3 -0
- package/src/images/icons/foursquare.svg +3 -0
- package/src/images/icons/future.svg +6 -0
- package/src/images/icons/git-branch.svg +6 -0
- package/src/images/icons/git-fork.svg +6 -0
- package/src/images/icons/github-alt.svg +3 -0
- package/src/images/icons/github.svg +3 -0
- package/src/images/icons/gitter.svg +6 -0
- package/src/images/icons/google.svg +3 -0
- package/src/images/icons/grid.svg +11 -0
- package/src/images/icons/happy.svg +6 -0
- package/src/images/icons/hashtag.svg +3 -0
- package/src/images/icons/heart.svg +3 -0
- package/src/images/icons/history.svg +6 -0
- package/src/images/icons/home.svg +5 -0
- package/src/images/icons/image.svg +6 -0
- package/src/images/icons/info.svg +4 -0
- package/src/images/icons/instagram.svg +5 -0
- package/src/images/icons/italic.svg +3 -0
- package/src/images/icons/joomla.svg +6 -0
- package/src/images/icons/laptop.svg +4 -0
- package/src/images/icons/lifesaver.svg +12 -0
- package/src/images/icons/link-external.svg +5 -0
- package/src/images/icons/link.svg +5 -0
- package/src/images/icons/linkedin.svg +4 -0
- package/src/images/icons/list.svg +8 -0
- package/src/images/icons/location.svg +4 -0
- package/src/images/icons/lock.svg +4 -0
- package/src/images/icons/mail.svg +4 -0
- package/src/images/icons/mastodon.svg +3 -0
- package/src/images/icons/menu.svg +5 -0
- package/src/images/icons/microphone.svg +6 -0
- package/src/images/icons/microsoft.svg +3 -0
- package/src/images/icons/minus-circle.svg +4 -0
- package/src/images/icons/minus.svg +3 -0
- package/src/images/icons/more-vertical.svg +5 -0
- package/src/images/icons/more.svg +5 -0
- package/src/images/icons/move.svg +8 -0
- package/src/images/icons/nut.svg +4 -0
- package/src/images/icons/paint-bucket.svg +6 -0
- package/src/images/icons/pencil.svg +4 -0
- package/src/images/icons/phone-landscape.svg +4 -0
- package/src/images/icons/phone.svg +4 -0
- package/src/images/icons/pinterest.svg +3 -0
- package/src/images/icons/play-circle.svg +4 -0
- package/src/images/icons/play.svg +3 -0
- package/src/images/icons/plus-circle.svg +5 -0
- package/src/images/icons/plus.svg +4 -0
- package/src/images/icons/print.svg +7 -0
- package/src/images/icons/pull.svg +5 -0
- package/src/images/icons/push.svg +5 -0
- package/src/images/icons/question.svg +5 -0
- package/src/images/icons/quote-right.svg +4 -0
- package/src/images/icons/receiver.svg +3 -0
- package/src/images/icons/reddit.svg +6 -0
- package/src/images/icons/refresh.svg +4 -0
- package/src/images/icons/reply.svg +3 -0
- package/src/images/icons/rss.svg +5 -0
- package/src/images/icons/search.svg +4 -0
- package/src/images/icons/server.svg +15 -0
- package/src/images/icons/settings.svg +11 -0
- package/src/images/icons/shrink.svg +6 -0
- package/src/images/icons/sign-in.svg +5 -0
- package/src/images/icons/sign-out.svg +5 -0
- package/src/images/icons/signal.svg +3 -0
- package/src/images/icons/social.svg +7 -0
- package/src/images/icons/sorting.svg +6 -0
- package/src/images/icons/soundcloud.svg +6 -0
- package/src/images/icons/star.svg +3 -0
- package/src/images/icons/strikethrough.svg +4 -0
- package/src/images/icons/table.svg +6 -0
- package/src/images/icons/tablet-landscape.svg +4 -0
- package/src/images/icons/tablet.svg +4 -0
- package/src/images/icons/tag.svg +4 -0
- package/src/images/icons/telegram.svg +3 -0
- package/src/images/icons/threads.svg +3 -0
- package/src/images/icons/thumbnails.svg +6 -0
- package/src/images/icons/tiktok.svg +3 -0
- package/src/images/icons/trash.svg +7 -0
- package/src/images/icons/triangle-down.svg +3 -0
- package/src/images/icons/triangle-left.svg +3 -0
- package/src/images/icons/triangle-right.svg +3 -0
- package/src/images/icons/triangle-up.svg +3 -0
- package/src/images/icons/tripadvisor.svg +19 -0
- package/src/images/icons/tumblr.svg +3 -0
- package/src/images/icons/tv.svg +4 -0
- package/src/images/icons/twitch.svg +5 -0
- package/src/images/icons/twitter.svg +3 -0
- package/src/images/icons/uikit.svg +4 -0
- package/src/images/icons/unlock.svg +4 -0
- package/src/images/icons/upload.svg +5 -0
- package/src/images/icons/user.svg +4 -0
- package/src/images/icons/users.svg +5 -0
- package/src/images/icons/video-camera.svg +3 -0
- package/src/images/icons/vimeo.svg +3 -0
- package/src/images/icons/warning.svg +5 -0
- package/src/images/icons/whatsapp.svg +3 -0
- package/src/images/icons/wordpress.svg +3 -0
- package/src/images/icons/world.svg +7 -0
- package/src/images/icons/x.svg +3 -0
- package/src/images/icons/xing.svg +4 -0
- package/src/images/icons/yelp.svg +15 -0
- package/src/images/icons/yootheme.svg +3 -0
- package/src/images/icons/youtube.svg +3 -0
- package/src/js/api/app.js +12 -0
- package/src/js/api/boot.js +84 -0
- package/src/js/api/component.js +84 -0
- package/src/js/api/computed.js +80 -0
- package/src/js/api/events.js +33 -0
- package/src/js/api/global.js +74 -0
- package/src/js/api/hooks.js +51 -0
- package/src/js/api/index.js +8 -0
- package/src/js/api/instance.js +66 -0
- package/src/js/api/log.js +10 -0
- package/src/js/api/observables.js +132 -0
- package/src/js/api/observer.js +64 -0
- package/src/js/api/options.js +180 -0
- package/src/js/api/props.js +107 -0
- package/src/js/api/state.js +65 -0
- package/src/js/api/update.js +66 -0
- package/src/js/api/watch.js +30 -0
- package/src/js/components/countdown.js +113 -0
- package/src/js/components/filter.js +211 -0
- package/src/js/components/index.js +13 -0
- package/src/js/components/internal/lightbox-animations.js +40 -0
- package/src/js/components/internal/slider-preload.js +14 -0
- package/src/js/components/internal/slider-transitioner.js +186 -0
- package/src/js/components/internal/slideshow-animations.js +100 -0
- package/src/js/components/lightbox-panel.js +482 -0
- package/src/js/components/lightbox.js +136 -0
- package/src/js/components/notification.js +134 -0
- package/src/js/components/parallax.js +86 -0
- package/src/js/components/slider-parallax.js +81 -0
- package/src/js/components/slider.js +388 -0
- package/src/js/components/slideshow-parallax.js +1 -0
- package/src/js/components/slideshow.js +44 -0
- package/src/js/components/sortable.js +448 -0
- package/src/js/components/tooltip.js +183 -0
- package/src/js/components/upload.js +248 -0
- package/src/js/core/accordion.js +244 -0
- package/src/js/core/alert.js +59 -0
- package/src/js/core/cover.js +57 -0
- package/src/js/core/drop.js +514 -0
- package/src/js/core/dropnav.js +449 -0
- package/src/js/core/form-custom.js +74 -0
- package/src/js/core/grid.js +210 -0
- package/src/js/core/height-match.js +79 -0
- package/src/js/core/height-placeholder.js +35 -0
- package/src/js/core/height-viewport.js +98 -0
- package/src/js/core/icon.js +285 -0
- package/src/js/core/img.js +157 -0
- package/src/js/core/index.js +49 -0
- package/src/js/core/inverse.js +173 -0
- package/src/js/core/leader.js +52 -0
- package/src/js/core/margin.js +125 -0
- package/src/js/core/modal.js +179 -0
- package/src/js/core/nav.js +11 -0
- package/src/js/core/navbar.js +96 -0
- package/src/js/core/offcanvas.js +178 -0
- package/src/js/core/overflow-auto.js +50 -0
- package/src/js/core/overflow-fade.js +67 -0
- package/src/js/core/responsive.js +10 -0
- package/src/js/core/scroll.js +71 -0
- package/src/js/core/scrollspy-nav.js +112 -0
- package/src/js/core/scrollspy.js +141 -0
- package/src/js/core/sticky.js +509 -0
- package/src/js/core/svg.js +101 -0
- package/src/js/core/switcher.js +246 -0
- package/src/js/core/tab.js +31 -0
- package/src/js/core/toggle.js +225 -0
- package/src/js/core/video.js +128 -0
- package/src/js/mixin/animate.js +34 -0
- package/src/js/mixin/class.js +7 -0
- package/src/js/mixin/container.js +17 -0
- package/src/js/mixin/event.js +5 -0
- package/src/js/mixin/i18n.js +21 -0
- package/src/js/mixin/internal/animate-fade.js +141 -0
- package/src/js/mixin/internal/animate-slide.js +163 -0
- package/src/js/mixin/internal/slideshow-animations.js +28 -0
- package/src/js/mixin/internal/slideshow-transitioner.js +73 -0
- package/src/js/mixin/media.js +53 -0
- package/src/js/mixin/modal.js +313 -0
- package/src/js/mixin/parallax.js +408 -0
- package/src/js/mixin/position.js +113 -0
- package/src/js/mixin/slider-autoplay.js +71 -0
- package/src/js/mixin/slider-drag.js +236 -0
- package/src/js/mixin/slider-nav.js +248 -0
- package/src/js/mixin/slider-parallax.js +147 -0
- package/src/js/mixin/slider-reactive.js +19 -0
- package/src/js/mixin/slider.js +228 -0
- package/src/js/mixin/slideshow.js +46 -0
- package/src/js/mixin/svg.js +121 -0
- package/src/js/mixin/togglable.js +258 -0
- package/src/js/uikit-core.js +11 -0
- package/src/js/uikit.js +7 -0
- package/src/js/util/animation.js +122 -0
- package/src/js/util/attr.js +42 -0
- package/src/js/util/await.js +7 -0
- package/src/js/util/class.js +53 -0
- package/src/js/util/dimensions.js +220 -0
- package/src/js/util/dom.js +118 -0
- package/src/js/util/env.js +12 -0
- package/src/js/util/event.js +142 -0
- package/src/js/util/fastdom.js +62 -0
- package/src/js/util/filter.js +91 -0
- package/src/js/util/index.js +17 -0
- package/src/js/util/keys.js +11 -0
- package/src/js/util/lang.js +280 -0
- package/src/js/util/mouse.js +80 -0
- package/src/js/util/observer.js +49 -0
- package/src/js/util/player.js +98 -0
- package/src/js/util/position.js +235 -0
- package/src/js/util/scroll.js +64 -0
- package/src/js/util/selector.js +143 -0
- package/src/js/util/style.js +96 -0
- package/src/js/util/svg.js +10 -0
- package/src/js/util/viewport.js +251 -0
- package/src/less/components/_import.less +96 -0
- package/src/less/components/accordion.less +122 -0
- package/src/less/components/alert.less +146 -0
- package/src/less/components/align.less +142 -0
- package/src/less/components/animation.less +283 -0
- package/src/less/components/article.less +110 -0
- package/src/less/components/background.less +140 -0
- package/src/less/components/badge.less +90 -0
- package/src/less/components/base.less +740 -0
- package/src/less/components/breadcrumb.less +157 -0
- package/src/less/components/button.less +540 -0
- package/src/less/components/card.less +441 -0
- package/src/less/components/close.less +67 -0
- package/src/less/components/column.less +143 -0
- package/src/less/components/comment.less +160 -0
- package/src/less/components/container.less +185 -0
- package/src/less/components/countdown.less +112 -0
- package/src/less/components/cover.less +76 -0
- package/src/less/components/description-list.less +71 -0
- package/src/less/components/divider.less +176 -0
- package/src/less/components/dotnav.less +177 -0
- package/src/less/components/drop.less +78 -0
- package/src/less/components/dropbar.less +131 -0
- package/src/less/components/dropdown.less +213 -0
- package/src/less/components/dropnav.less +43 -0
- package/src/less/components/flex.less +308 -0
- package/src/less/components/form-range.less +191 -0
- package/src/less/components/form.less +930 -0
- package/src/less/components/grid.less +419 -0
- package/src/less/components/heading.less +289 -0
- package/src/less/components/height.less +57 -0
- package/src/less/components/icon.less +313 -0
- package/src/less/components/iconnav.less +163 -0
- package/src/less/components/inverse.less +64 -0
- package/src/less/components/label.less +110 -0
- package/src/less/components/leader.less +75 -0
- package/src/less/components/lightbox.less +215 -0
- package/src/less/components/link.less +167 -0
- package/src/less/components/list.less +245 -0
- package/src/less/components/margin.less +263 -0
- package/src/less/components/marker.less +74 -0
- package/src/less/components/mixin.less +20 -0
- package/src/less/components/modal.less +366 -0
- package/src/less/components/nav.less +755 -0
- package/src/less/components/navbar.less +681 -0
- package/src/less/components/notification.less +191 -0
- package/src/less/components/offcanvas.less +329 -0
- package/src/less/components/overlay.less +92 -0
- package/src/less/components/padding.less +81 -0
- package/src/less/components/pagination.less +159 -0
- package/src/less/components/placeholder.less +45 -0
- package/src/less/components/position.less +241 -0
- package/src/less/components/print.less +61 -0
- package/src/less/components/progress.less +83 -0
- package/src/less/components/search.less +488 -0
- package/src/less/components/section.less +257 -0
- package/src/less/components/slidenav.less +137 -0
- package/src/less/components/slider.less +123 -0
- package/src/less/components/slideshow.less +93 -0
- package/src/less/components/sortable.less +90 -0
- package/src/less/components/spinner.less +74 -0
- package/src/less/components/sticky.less +65 -0
- package/src/less/components/subnav.less +317 -0
- package/src/less/components/svg.less +36 -0
- package/src/less/components/switcher.less +47 -0
- package/src/less/components/tab.less +222 -0
- package/src/less/components/table.less +352 -0
- package/src/less/components/text.less +296 -0
- package/src/less/components/thumbnav.less +133 -0
- package/src/less/components/tile.less +247 -0
- package/src/less/components/tooltip.less +79 -0
- package/src/less/components/totop.less +86 -0
- package/src/less/components/transition.less +172 -0
- package/src/less/components/utility.less +584 -0
- package/src/less/components/variables.less +123 -0
- package/src/less/components/visibility.less +164 -0
- package/src/less/components/width.less +489 -0
- package/src/less/theme/_import.less +82 -0
- package/src/less/theme/accordion.less +82 -0
- package/src/less/theme/alert.less +76 -0
- package/src/less/theme/align.less +14 -0
- package/src/less/theme/animation.less +14 -0
- package/src/less/theme/article.less +60 -0
- package/src/less/theme/background.less +14 -0
- package/src/less/theme/badge.less +29 -0
- package/src/less/theme/base.less +134 -0
- package/src/less/theme/breadcrumb.less +45 -0
- package/src/less/theme/button.less +212 -0
- package/src/less/theme/card.less +236 -0
- package/src/less/theme/close.less +32 -0
- package/src/less/theme/column.less +14 -0
- package/src/less/theme/comment.less +72 -0
- package/src/less/theme/container.less +14 -0
- package/src/less/theme/countdown.less +53 -0
- package/src/less/theme/description-list.less +36 -0
- package/src/less/theme/divider.less +49 -0
- package/src/less/theme/dotnav.less +57 -0
- package/src/less/theme/drop.less +14 -0
- package/src/less/theme/dropbar.less +44 -0
- package/src/less/theme/dropdown.less +59 -0
- package/src/less/theme/form-range.less +57 -0
- package/src/less/theme/form.less +154 -0
- package/src/less/theme/grid.less +28 -0
- package/src/less/theme/heading.less +71 -0
- package/src/less/theme/height.less +14 -0
- package/src/less/theme/icon.less +67 -0
- package/src/less/theme/iconnav.less +44 -0
- package/src/less/theme/inverse.less +14 -0
- package/src/less/theme/label.less +46 -0
- package/src/less/theme/leader.less +26 -0
- package/src/less/theme/lightbox.less +32 -0
- package/src/less/theme/link.less +55 -0
- package/src/less/theme/list.less +50 -0
- package/src/less/theme/margin.less +14 -0
- package/src/less/theme/marker.less +31 -0
- package/src/less/theme/modal.less +102 -0
- package/src/less/theme/nav.less +142 -0
- package/src/less/theme/navbar.less +179 -0
- package/src/less/theme/notification.less +44 -0
- package/src/less/theme/offcanvas.less +32 -0
- package/src/less/theme/overlay.less +33 -0
- package/src/less/theme/padding.less +14 -0
- package/src/less/theme/pagination.less +41 -0
- package/src/less/theme/placeholder.less +29 -0
- package/src/less/theme/position.less +14 -0
- package/src/less/theme/progress.less +27 -0
- package/src/less/theme/search.less +121 -0
- package/src/less/theme/section.less +32 -0
- package/src/less/theme/slidenav.less +52 -0
- package/src/less/theme/slider.less +14 -0
- package/src/less/theme/sortable.less +38 -0
- package/src/less/theme/spinner.less +14 -0
- package/src/less/theme/sticky.less +14 -0
- package/src/less/theme/subnav.less +79 -0
- package/src/less/theme/tab.less +138 -0
- package/src/less/theme/table.less +86 -0
- package/src/less/theme/text.less +61 -0
- package/src/less/theme/thumbnav.less +65 -0
- package/src/less/theme/tile.less +52 -0
- package/src/less/theme/tooltip.less +20 -0
- package/src/less/theme/totop.less +32 -0
- package/src/less/theme/transition.less +14 -0
- package/src/less/theme/utility.less +52 -0
- package/src/less/theme/variables.less +36 -0
- package/src/less/theme/width.less +14 -0
- package/src/less/uikit.less +5 -0
- package/src/less/uikit.theme.less +11 -0
- package/src/scss/components/_import.scss +96 -0
- package/src/scss/components/accordion.scss +100 -0
- package/src/scss/components/alert.scss +133 -0
- package/src/scss/components/align.scss +141 -0
- package/src/scss/components/animation.scss +278 -0
- package/src/scss/components/article.scss +93 -0
- package/src/scss/components/background.scss +138 -0
- package/src/scss/components/badge.scss +71 -0
- package/src/scss/components/base.scss +561 -0
- package/src/scss/components/breadcrumb.scss +115 -0
- package/src/scss/components/button.scss +374 -0
- package/src/scss/components/card.scss +379 -0
- package/src/scss/components/close.scss +53 -0
- package/src/scss/components/column.scss +136 -0
- package/src/scss/components/comment.scss +153 -0
- package/src/scss/components/container.scss +180 -0
- package/src/scss/components/countdown.scss +93 -0
- package/src/scss/components/cover.scss +78 -0
- package/src/scss/components/description-list.scss +68 -0
- package/src/scss/components/divider.scss +137 -0
- package/src/scss/components/dotnav.scss +144 -0
- package/src/scss/components/drop.scss +75 -0
- package/src/scss/components/dropbar.scss +123 -0
- package/src/scss/components/dropdown.scss +192 -0
- package/src/scss/components/dropnav.scss +44 -0
- package/src/scss/components/flex.scss +310 -0
- package/src/scss/components/form-range.scss +147 -0
- package/src/scss/components/form.scss +771 -0
- package/src/scss/components/grid.scss +394 -0
- package/src/scss/components/heading.scss +227 -0
- package/src/scss/components/height.scss +56 -0
- package/src/scss/components/icon.scss +228 -0
- package/src/scss/components/iconnav.scss +140 -0
- package/src/scss/components/inverse.scss +51 -0
- package/src/scss/components/label.scss +90 -0
- package/src/scss/components/leader.scss +69 -0
- package/src/scss/components/lightbox.scss +205 -0
- package/src/scss/components/link.scss +131 -0
- package/src/scss/components/list.scss +199 -0
- package/src/scss/components/margin.scss +257 -0
- package/src/scss/components/marker.scss +56 -0
- package/src/scss/components/mixin.scss +34 -0
- package/src/scss/components/modal.scss +336 -0
- package/src/scss/components/nav.scss +533 -0
- package/src/scss/components/navbar.scss +579 -0
- package/src/scss/components/notification.scss +178 -0
- package/src/scss/components/offcanvas.scss +318 -0
- package/src/scss/components/overlay.scss +88 -0
- package/src/scss/components/padding.scss +78 -0
- package/src/scss/components/pagination.scss +127 -0
- package/src/scss/components/placeholder.scss +43 -0
- package/src/scss/components/position.scss +240 -0
- package/src/scss/components/print.scss +63 -0
- package/src/scss/components/progress.scss +81 -0
- package/src/scss/components/search.scss +367 -0
- package/src/scss/components/section.scss +243 -0
- package/src/scss/components/slidenav.scss +112 -0
- package/src/scss/components/slider.scss +121 -0
- package/src/scss/components/slideshow.scss +95 -0
- package/src/scss/components/sortable.scss +89 -0
- package/src/scss/components/spinner.scss +73 -0
- package/src/scss/components/sticky.scss +64 -0
- package/src/scss/components/subnav.scss +222 -0
- package/src/scss/components/svg.scss +38 -0
- package/src/scss/components/switcher.scss +49 -0
- package/src/scss/components/tab.scss +186 -0
- package/src/scss/components/table.scss +293 -0
- package/src/scss/components/text.scss +256 -0
- package/src/scss/components/thumbnav.scss +119 -0
- package/src/scss/components/tile.scss +230 -0
- package/src/scss/components/tooltip.scss +72 -0
- package/src/scss/components/totop.scss +64 -0
- package/src/scss/components/transition.scss +169 -0
- package/src/scss/components/utility.scss +545 -0
- package/src/scss/components/variables.scss +84 -0
- package/src/scss/components/visibility.scss +166 -0
- package/src/scss/components/width.scss +487 -0
- package/src/scss/mixins-theme.scss +2298 -0
- package/src/scss/mixins.scss +1896 -0
- package/src/scss/uikit-theme.scss +8 -0
- package/src/scss/uikit.scss +5 -0
- package/src/scss/variables-theme.scss +1325 -0
- package/src/scss/variables.scss +1190 -0
- package/tests/accordion.html +214 -0
- package/tests/alert.html +124 -0
- package/tests/align.html +133 -0
- package/tests/animation.html +252 -0
- package/tests/article.html +167 -0
- package/tests/background.html +67 -0
- package/tests/badge.html +93 -0
- package/tests/base.html +244 -0
- package/tests/breadcrumb.html +64 -0
- package/tests/button.html +257 -0
- package/tests/card.html +630 -0
- package/tests/close.html +74 -0
- package/tests/column.html +71 -0
- package/tests/comment.html +209 -0
- package/tests/container.html +266 -0
- package/tests/countdown.html +716 -0
- package/tests/cover.html +167 -0
- package/tests/description-list.html +51 -0
- package/tests/divider.html +89 -0
- package/tests/dotnav.html +139 -0
- package/tests/drop.html +782 -0
- package/tests/dropbar.html +551 -0
- package/tests/dropdown.html +286 -0
- package/tests/dropnav.html +856 -0
- package/tests/filter.html +287 -0
- package/tests/flex.html +182 -0
- package/tests/form.html +675 -0
- package/tests/grid-masonry.html +80 -0
- package/tests/grid-parallax.html +171 -0
- package/tests/grid.html +679 -0
- package/tests/heading.html +337 -0
- package/tests/height-expand.html +32 -0
- package/tests/height-viewport.html +253 -0
- package/tests/height.html +160 -0
- package/tests/icon.html +907 -0
- package/tests/iconnav.html +40 -0
- package/tests/image.html +642 -0
- package/tests/images/avatar.jpg +0 -0
- package/tests/images/dark.jpg +0 -0
- package/tests/images/icons.svg +24 -0
- package/tests/images/image-type.avif +0 -0
- package/tests/images/image-type.jpeg +0 -0
- package/tests/images/image-type.webp +0 -0
- package/tests/images/light.jpg +0 -0
- package/tests/images/photo.jpg +0 -0
- package/tests/images/photo2.jpg +0 -0
- package/tests/images/photo3.jpg +0 -0
- package/tests/images/size-h.jpg +0 -0
- package/tests/images/size-v.jpg +0 -0
- package/tests/images/size1.jpg +0 -0
- package/tests/images/size2.jpg +0 -0
- package/tests/images/slider1.jpg +0 -0
- package/tests/images/slider2.jpg +0 -0
- package/tests/images/slider3.jpg +0 -0
- package/tests/images/slider4.jpg +0 -0
- package/tests/images/slider5.jpg +0 -0
- package/tests/index.html +905 -0
- package/tests/js/index.js +171 -0
- package/tests/label.html +28 -0
- package/tests/leader.html +67 -0
- package/tests/lightbox.html +689 -0
- package/tests/link.html +121 -0
- package/tests/list.html +490 -0
- package/tests/margin.html +208 -0
- package/tests/marker.html +87 -0
- package/tests/modal.html +497 -0
- package/tests/nav.html +487 -0
- package/tests/navbar.html +2746 -0
- package/tests/notification.html +137 -0
- package/tests/offcanvas.html +780 -0
- package/tests/overlay.html +102 -0
- package/tests/padding.html +52 -0
- package/tests/pagination.html +140 -0
- package/tests/parallax.html +298 -0
- package/tests/placeholder.html +33 -0
- package/tests/position.html +436 -0
- package/tests/progress.html +59 -0
- package/tests/scroll.html +118 -0
- package/tests/scrollspy.html +593 -0
- package/tests/search.html +535 -0
- package/tests/section.html +384 -0
- package/tests/slidenav.html +333 -0
- package/tests/slider.html +661 -0
- package/tests/slideshow.html +565 -0
- package/tests/sortable.html +300 -0
- package/tests/spinner.html +25 -0
- package/tests/sticky-navbar.html +1421 -0
- package/tests/sticky-parallax.html +279 -0
- package/tests/sticky.html +429 -0
- package/tests/subnav.html +282 -0
- package/tests/svg.html +78 -0
- package/tests/switcher.html +394 -0
- package/tests/tab.html +266 -0
- package/tests/table.html +329 -0
- package/tests/text.html +155 -0
- package/tests/thumbnav.html +64 -0
- package/tests/tile.html +226 -0
- package/tests/toggle.html +186 -0
- package/tests/tooltip.html +126 -0
- package/tests/totop.html +68 -0
- package/tests/transition.html +246 -0
- package/tests/upload.html +290 -0
- package/tests/utility.html +644 -0
- package/tests/video.html +206 -0
- package/tests/visibility.html +112 -0
- package/tests/width.html +130 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="2" y="2" width="3" height="3" />
|
|
3
|
+
<rect x="8" y="2" width="3" height="3" />
|
|
4
|
+
<rect x="14" y="2" width="3" height="3" />
|
|
5
|
+
<rect x="2" y="8" width="3" height="3" />
|
|
6
|
+
<rect x="8" y="8" width="3" height="3" />
|
|
7
|
+
<rect x="14" y="8" width="3" height="3" />
|
|
8
|
+
<rect x="2" y="14" width="3" height="3" />
|
|
9
|
+
<rect x="8" y="14" width="3" height="3" />
|
|
10
|
+
<rect x="14" y="14" width="3" height="3" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="13" cy="7" r="1" />
|
|
3
|
+
<circle cx="7" cy="7" r="1" />
|
|
4
|
+
<circle fill="none" stroke="#000" cx="10" cy="10" r="8.5" />
|
|
5
|
+
<path fill="none" stroke="#000" d="M14.6,11.4 C13.9,13.3 12.1,14.5 10,14.5 C7.9,14.5 6.1,13.3 5.4,11.4" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M15.431,8 L15.661,7 L12.911,7 L13.831,3 L12.901,3 L11.98,7 L9.29,7 L10.21,3 L9.281,3 L8.361,7 L5.23,7 L5,8 L8.13,8 L7.21,12 L4.23,12 L4,13 L6.98,13 L6.061,17 L6.991,17 L7.911,13 L10.601,13 L9.681,17 L10.611,17 L11.531,13 L14.431,13 L14.661,12 L11.76,12 L12.681,8 L15.431,8 Z M10.831,12 L8.141,12 L9.061,8 L11.75,8 L10.831,12 Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.03" d="M10,4 C10,4 8.1,2 5.74,2 C3.38,2 1,3.55 1,6.73 C1,8.84 2.67,10.44 2.67,10.44 L10,18 L17.33,10.44 C17.33,10.44 19,8.84 19,6.73 C19,3.55 16.62,2 14.26,2 C11.9,2 10,4 10,4 L10,4 Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polyline fill="#000" points="1 2 2 2 2 6 6 6 6 7 1 7 1 2" />
|
|
3
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M2.1,6.548 C3.391,3.29 6.746,1 10.5,1 C15.5,1 19.5,5 19.5,10 C19.5,15 15.5,19 10.5,19 C5.5,19 1.5,15 1.5,10" />
|
|
4
|
+
<rect x="9" y="4" width="1" height="7" />
|
|
5
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M13.018,14.197 L9.445,10.625" id="Shape" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polygon points="18.65 11.35 10 2.71 1.35 11.35 0.65 10.65 10 1.29 19.35 10.65" />
|
|
3
|
+
<polygon points="15 4 18 4 18 7 17 7 17 5 15 5" />
|
|
4
|
+
<polygon points="3 11 4 11 4 18 7 18 7 12 12 12 12 18 16 18 16 11 17 11 17 19 11 19 11 13 8 13 8 19 3 19" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="16.1" cy="6.1" r="1.1" />
|
|
3
|
+
<rect fill="none" stroke="#000" x="0.5" y="2.5" width="19" height="15" />
|
|
4
|
+
<polyline fill="none" stroke="#000" stroke-width="1.01" points="4,13 8,9 13,14" />
|
|
5
|
+
<polyline fill="none" stroke="#000" stroke-width="1.01" points="11,12 12.5,10.5 16,14" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.13,11.59 C11.97,12.84 10.35,14.12 9.1,14.16 C6.17,14.2 9.89,9.46 8.74,8.37 C9.3,8.16 10.62,7.83 10.62,8.81 C10.62,9.63 10.12,10.55 9.88,11.32 C8.66,15.16 12.13,11.15 12.14,11.18 C12.16,11.21 12.16,11.35 12.13,11.59 C12.08,11.95 12.16,11.35 12.13,11.59 L12.13,11.59 Z M11.56,5.67 C11.56,6.67 9.36,7.15 9.36,6.03 C9.36,5 11.56,4.54 11.56,5.67 L11.56,5.67 Z" />
|
|
3
|
+
<circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M13.55,1H6.46C3.45,1,1,3.44,1,6.44v7.12c0,3,2.45,5.44,5.46,5.44h7.08c3.02,0,5.46-2.44,5.46-5.44V6.44 C19.01,3.44,16.56,1,13.55,1z M17.5,14c0,1.93-1.57,3.5-3.5,3.5H6c-1.93,0-3.5-1.57-3.5-3.5V6c0-1.93,1.57-3.5,3.5-3.5h8 c1.93,0,3.5,1.57,3.5,3.5V14z" />
|
|
3
|
+
<circle cx="14.87" cy="5.26" r="1.09" />
|
|
4
|
+
<path d="M10.03,5.45c-2.55,0-4.63,2.06-4.63,4.6c0,2.55,2.07,4.61,4.63,4.61c2.56,0,4.63-2.061,4.63-4.61 C14.65,7.51,12.58,5.45,10.03,5.45L10.03,5.45L10.03,5.45z M10.08,13c-1.66,0-3-1.34-3-2.99c0-1.65,1.34-2.99,3-2.99s3,1.34,3,2.99 C13.08,11.66,11.74,13,10.08,13L10.08,13L10.08,13z" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.63,5.48 L10.15,14.52 C10,15.08 10.37,15.25 11.92,15.3 L11.72,16 L6,16 L6.2,15.31 C7.78,15.26 8.19,15.09 8.34,14.53 L10.82,5.49 C10.97,4.92 10.63,4.76 9.09,4.71 L9.28,4 L15,4 L14.81,4.69 C13.23,4.75 12.78,4.91 12.63,5.48 L12.63,5.48 Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M7.8,13.4l1.7-1.7L5.9,8c-0.6-0.5-0.6-1.5,0-2c0.6-0.6,1.4-0.6,2,0l1.7-1.7c-1-1-2.3-1.3-3.6-1C5.8,2.2,4.8,1.4,3.7,1.4 c-1.3,0-2.3,1-2.3,2.3c0,1.1,0.8,2,1.8,2.3c-0.4,1.3-0.1,2.8,1,3.8L7.8,13.4L7.8,13.4z" />
|
|
3
|
+
<path d="M10.2,4.3c1-1,2.5-1.4,3.8-1c0.2-1.1,1.1-2,2.3-2c1.3,0,2.3,1,2.3,2.3c0,1.2-0.9,2.2-2,2.3c0.4,1.3,0,2.8-1,3.8L13.9,8 c0.6-0.5,0.6-1.5,0-2c-0.5-0.6-1.5-0.6-2,0L8.2,9.7L6.5,8" />
|
|
4
|
+
<path d="M14.1,16.8c-1.3,0.4-2.8,0.1-3.8-1l1.7-1.7c0.6,0.6,1.5,0.6,2,0c0.5-0.6,0.6-1.5,0-2l-3.7-3.7L12,6.7l3.7,3.7 c1,1,1.3,2.4,1,3.6c1.1,0.2,2,1.1,2,2.3c0,1.3-1,2.3-2.3,2.3C15.2,18.6,14.3,17.8,14.1,16.8" />
|
|
5
|
+
<path d="M13.2,12.2l-3.7,3.7c-1,1-2.4,1.3-3.6,1c-0.2,1-1.2,1.8-2.2,1.8c-1.3,0-2.3-1-2.3-2.3c0-1.1,0.8-2,1.8-2.3 c-0.3-1.3,0-2.7,1-3.7l1.7,1.7c-0.6,0.6-0.6,1.5,0,2c0.6,0.6,1.4,0.6,2,0l3.7-3.7" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
|
2
|
+
<circle fill="none" stroke="#000" cx="10" cy="10" r="9" />
|
|
3
|
+
<circle fill="none" stroke="#000" cx="10" cy="10" r="5" />
|
|
4
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="5.17" y1="2.39" x2="8.11" y2="5.33" />
|
|
5
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="5.33" y1="8.11" x2="2.39" y2="5.17" />
|
|
6
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="14.83" y1="17.61" x2="11.89" y2="14.67" />
|
|
7
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="14.67" y1="11.89" x2="17.61" y2="14.83" />
|
|
8
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="17.61" y1="5.17" x2="14.67" y2="8.11" />
|
|
9
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="11.89" y1="5.33" x2="14.83" y2="2.39" />
|
|
10
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="8.11" y1="14.67" x2="5.17" y2="17.61" />
|
|
11
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="2.39" y1="14.83" x2="5.33" y2="11.89" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5" />
|
|
3
|
+
<line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99" />
|
|
4
|
+
<polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M10.625,12.375 L7.525,15.475 C6.825,16.175 5.925,16.175 5.225,15.475 L4.525,14.775 C3.825,14.074 3.825,13.175 4.525,12.475 L7.625,9.375" />
|
|
3
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M9.325,7.375 L12.425,4.275 C13.125,3.575 14.025,3.575 14.724,4.275 L15.425,4.975 C16.125,5.675 16.125,6.575 15.425,7.275 L12.325,10.375" />
|
|
4
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M7.925,11.875 L11.925,7.975" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.77,17.89 L5.77,7.17 L2.21,7.17 L2.21,17.89 L5.77,17.89 L5.77,17.89 Z M3.99,5.71 C5.23,5.71 6.01,4.89 6.01,3.86 C5.99,2.8 5.24,2 4.02,2 C2.8,2 2,2.8 2,3.85 C2,4.88 2.77,5.7 3.97,5.7 L3.99,5.7 L3.99,5.71 L3.99,5.71 Z" />
|
|
3
|
+
<path d="M7.75,17.89 L11.31,17.89 L11.31,11.9 C11.31,11.58 11.33,11.26 11.43,11.03 C11.69,10.39 12.27,9.73 13.26,9.73 C14.55,9.73 15.06,10.71 15.06,12.15 L15.06,17.89 L18.62,17.89 L18.62,11.74 C18.62,8.45 16.86,6.92 14.52,6.92 C12.6,6.92 11.75,7.99 11.28,8.73 L11.3,8.73 L11.3,7.17 L7.75,7.17 C7.79,8.17 7.75,17.89 7.75,17.89 L7.75,17.89 L7.75,17.89 Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="6" y="4" width="12" height="1" />
|
|
3
|
+
<rect x="6" y="9" width="12" height="1" />
|
|
4
|
+
<rect x="6" y="14" width="12" height="1" />
|
|
5
|
+
<rect x="2" y="4" width="2" height="1" />
|
|
6
|
+
<rect x="2" y="9" width="2" height="1" />
|
|
7
|
+
<rect x="2" y="14" width="2" height="1" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.01" d="M10,0.5 C6.41,0.5 3.5,3.39 3.5,6.98 C3.5,11.83 10,19 10,19 C10,19 16.5,11.83 16.5,6.98 C16.5,3.39 13.59,0.5 10,0.5 L10,0.5 Z" />
|
|
3
|
+
<circle fill="none" stroke="#000" cx="10" cy="6.8" r="2.3" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect fill="none" stroke="#000" height="10" width="13" y="8.5" x="3.5" />
|
|
3
|
+
<path fill="none" stroke="#000" d="M6.5,8 L6.5,4.88 C6.5,3.01 8.07,1.5 10,1.5 C11.93,1.5 13.5,3.01 13.5,4.88 L13.5,8" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m18.5,6.87c0-3.95-2.59-5.11-2.59-5.11-1.31-.6-3.55-.85-5.88-.87h-.06c-2.33.02-4.57.27-5.88.87,0,0-2.59,1.16-2.59,5.11,0,.91-.02,1.99.01,3.14.09,3.87.71,7.68,4.28,8.62,1.65.44,3.06.53,4.2.47,2.07-.11,3.23-.74,3.23-.74l-.07-1.5s-1.48.47-3.14.41c-1.64-.06-3.38-.18-3.64-2.2-.02-.18-.04-.37-.04-.57,0,0,1.61.39,3.66.49,1.25.06,2.42-.07,3.61-.22,2.28-.27,4.27-1.68,4.52-2.97.39-2.02.36-4.94.36-4.94Zm-3.05,5.09h-1.9v-4.65c0-.98-.41-1.48-1.24-1.48-.91,0-1.37.59-1.37,1.76v2.54h-1.89v-2.54c0-1.17-.46-1.76-1.37-1.76-.82,0-1.24.5-1.24,1.48v4.65h-1.9v-4.79c0-.98.25-1.76.75-2.33.52-.58,1.19-.87,2.03-.87.97,0,1.71.37,2.19,1.12l.47.79.47-.79c.49-.75,1.22-1.12,2.19-1.12.84,0,1.51.29,2.03.87.5.58.75,1.35.75,2.33v4.79Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line fill="none" stroke="#000" x1="10" x2="10" y1="16.44" y2="18.5" />
|
|
3
|
+
<line fill="none" stroke="#000" x1="7" x2="13" y1="18.5" y2="18.5" />
|
|
4
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M13.5 4.89v5.87a3.5 3.5 0 0 1-7 0V4.89a3.5 3.5 0 0 1 7 0z" />
|
|
5
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M15.5 10.36V11a5.5 5.5 0 0 1-11 0v-.6" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polygon points="4,5 1,5 1,9 2,9 2,6 4,6" />
|
|
3
|
+
<polygon points="1,16 2,16 2,18 4,18 4,19 1,19" />
|
|
4
|
+
<polygon points="14,16 14,19 11,19 11,18 13,18 13,16" />
|
|
5
|
+
<rect fill="none" stroke="#000" x="5.5" y="1.5" width="13" height="13" />
|
|
6
|
+
<rect x="1" y="11" width="1" height="3" />
|
|
7
|
+
<rect x="6" y="18" width="3" height="1" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="m6.42,2.16l5.28,5.28" />
|
|
3
|
+
<path d="m18.49,11.83s1.51,2.06,1.51,3.36c0,.92-.76,1.64-1.51,1.64h0c-.75,0-1.49-.72-1.49-1.64,0-1.3,1.49-3.36,1.49-3.36h0Z" />
|
|
4
|
+
<line fill="none" stroke="#000" x1="1.26" y1="10.5" x2="16" y2="10.5" />
|
|
5
|
+
<polygon fill="none" stroke="#000" stroke-width="1.1" points="10.2 1.55 17.6 8.93 8.08 18.45 .7 11.07 10.2 1.55" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" d="M17.25,6.01 L7.12,16.1 L3.82,17.2 L5.02,13.9 L15.12,3.88 C15.71,3.29 16.66,3.29 17.25,3.88 C17.83,4.47 17.83,5.42 17.25,6.01 L17.25,6.01 Z" />
|
|
3
|
+
<path fill="none" stroke="#000" d="M15.98,7.268 L13.851,5.148" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" d="M17,5.5 C17.8,5.5 18.5,6.2 18.5,7 L18.5,14 C18.5,14.8 17.8,15.5 17,15.5 L3,15.5 C2.2,15.5 1.5,14.8 1.5,14 L1.5,7 C1.5,6.2 2.2,5.5 3,5.5 L17,5.5 L17,5.5 L17,5.5 Z" />
|
|
3
|
+
<circle cx="3.8" cy="10.5" r="0.8" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" d="M15.5,17 C15.5,17.8 14.8,18.5 14,18.5 L7,18.5 C6.2,18.5 5.5,17.8 5.5,17 L5.5,3 C5.5,2.2 6.2,1.5 7,1.5 L14,1.5 C14.8,1.5 15.5,2.2 15.5,3 L15.5,17 L15.5,17 L15.5,17 Z" />
|
|
3
|
+
<circle cx="10.5" cy="16.5" r="0.8" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M10.21,1 C5.5,1 3,4.16 3,7.61 C3,9.21 3.85,11.2 5.22,11.84 C5.43,11.94 5.54,11.89 5.58,11.69 C5.62,11.54 5.8,10.8 5.88,10.45 C5.91,10.34 5.89,10.24 5.8,10.14 C5.36,9.59 5,8.58 5,7.65 C5,5.24 6.82,2.91 9.93,2.91 C12.61,2.91 14.49,4.74 14.49,7.35 C14.49,10.3 13,12.35 11.06,12.35 C9.99,12.35 9.19,11.47 9.44,10.38 C9.75,9.08 10.35,7.68 10.35,6.75 C10.35,5.91 9.9,5.21 8.97,5.21 C7.87,5.21 6.99,6.34 6.99,7.86 C6.99,8.83 7.32,9.48 7.32,9.48 C7.32,9.48 6.24,14.06 6.04,14.91 C5.7,16.35 6.08,18.7 6.12,18.9 C6.14,19.01 6.26,19.05 6.33,18.95 C6.44,18.81 7.74,16.85 8.11,15.44 C8.24,14.93 8.79,12.84 8.79,12.84 C9.15,13.52 10.19,14.09 11.29,14.09 C14.58,14.09 16.96,11.06 16.96,7.3 C16.94,3.7 14,1 10.21,1" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle fill="none" stroke="#000" stroke-width="1.1" cx="9.5" cy="9.5" r="9" />
|
|
3
|
+
<line fill="none" stroke="#000" x1="9.5" y1="5" x2="9.5" y2="14" />
|
|
4
|
+
<line fill="none" stroke="#000" x1="5" y1="9.5" x2="14" y2="9.5" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polyline fill="none" stroke="#000" points="4.5 13.5 1.5 13.5 1.5 6.5 18.5 6.5 18.5 13.5 15.5 13.5" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="15.5 6.5 15.5 2.5 4.5 2.5 4.5 6.5" />
|
|
4
|
+
<rect fill="none" stroke="#000" width="11" height="6" x="4.5" y="11.5" />
|
|
5
|
+
<rect width="8" height="1" x="6" y="13" />
|
|
6
|
+
<rect width="8" height="1" x="6" y="15" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5" />
|
|
4
|
+
<polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5" />
|
|
4
|
+
<polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" />
|
|
3
|
+
<circle cx="9.99" cy="14.24" r="1.05" />
|
|
4
|
+
<path fill="none" stroke="#000" stroke-width="1.2" d="m7.72,7.61c0-3.04,4.55-3.06,4.55-.07,0,.95-.91,1.43-1.49,2.03-.48.49-.72.98-.78,1.65-.01.13-.02.24-.02.35" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.27,7.79 C17.27,9.45 16.97,10.43 15.99,12.02 C14.98,13.64 13,15.23 11.56,15.97 L11.1,15.08 C12.34,14.2 13.14,13.51 14.02,11.82 C14.27,11.34 14.41,10.92 14.49,10.54 C14.3,10.58 14.09,10.6 13.88,10.6 C12.06,10.6 10.59,9.12 10.59,7.3 C10.59,5.48 12.06,4 13.88,4 C15.39,4 16.67,5.02 17.05,6.42 C17.19,6.82 17.27,7.27 17.27,7.79 L17.27,7.79 Z" />
|
|
3
|
+
<path d="M8.68,7.79 C8.68,9.45 8.38,10.43 7.4,12.02 C6.39,13.64 4.41,15.23 2.97,15.97 L2.51,15.08 C3.75,14.2 4.55,13.51 5.43,11.82 C5.68,11.34 5.82,10.92 5.9,10.54 C5.71,10.58 5.5,10.6 5.29,10.6 C3.47,10.6 2,9.12 2,7.3 C2,5.48 3.47,4 5.29,4 C6.8,4 8.08,5.02 8.46,6.42 C8.6,6.82 8.68,7.27 8.68,7.79 L8.68,7.79 Z" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.01" d="M6.189,13.611C8.134,15.525 11.097,18.239 13.867,18.257C16.47,18.275 18.2,16.241 18.2,16.241L14.509,12.551L11.539,13.639L6.189,8.29L7.313,5.355L3.76,1.8C3.76,1.8 1.732,3.537 1.7,6.092C1.667,8.809 4.347,11.738 6.189,13.611" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19 9.05a2.56 2.56 0 0 0-2.56-2.56 2.59 2.59 0 0 0-1.88.82 10.63 10.63 0 0 0-4.14-1v-.08c.58-1.62 1.58-3.89 2.7-4.1.38-.08.77.12 1.19.57a1.15 1.15 0 0 0-.06.37 1.48 1.48 0 1 0 1.51-1.45 1.43 1.43 0 0 0-.76.19A2.29 2.29 0 0 0 12.91 1c-2.11.43-3.39 4.38-3.63 5.19 0 0 0 .11-.06.11a10.65 10.65 0 0 0-3.75 1A2.56 2.56 0 0 0 1 9.05a2.42 2.42 0 0 0 .72 1.76A5.18 5.18 0 0 0 1.24 13c0 3.66 3.92 6.64 8.73 6.64s8.74-3 8.74-6.64a5.23 5.23 0 0 0-.46-2.13A2.58 2.58 0 0 0 19 9.05zm-16.88 0a1.44 1.44 0 0 1 2.27-1.19 7.68 7.68 0 0 0-2.07 1.91 1.33 1.33 0 0 1-.2-.72zM10 18.4c-4.17 0-7.55-2.4-7.55-5.4S5.83 7.53 10 7.53 17.5 10 17.5 13s-3.38 5.4-7.5 5.4zm7.69-8.61a7.62 7.62 0 0 0-2.09-1.91 1.41 1.41 0 0 1 .84-.28 1.47 1.47 0 0 1 1.44 1.45 1.34 1.34 0 0 1-.21.72z" />
|
|
3
|
+
<path d="M6.69 12.58a1.39 1.39 0 1 1 1.39-1.39 1.38 1.38 0 0 1-1.38 1.39z" />
|
|
4
|
+
<path d="M14.26 11.2a1.39 1.39 0 1 1-1.39-1.39 1.39 1.39 0 0 1 1.39 1.39z" />
|
|
5
|
+
<path d="M13.09 14.88a.54.54 0 0 1-.09.77 5.3 5.3 0 0 1-3.26 1.19 5.61 5.61 0 0 1-3.4-1.22.55.55 0 1 1 .73-.83 4.09 4.09 0 0 0 5.25 0 .56.56 0 0 1 .77.09z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M17.08,11.15 C17.09,11.31 17.1,11.47 17.1,11.64 C17.1,15.53 13.94,18.69 10.05,18.69 C6.16,18.68 3,15.53 3,11.63 C3,7.74 6.16,4.58 10.05,4.58 C10.9,4.58 11.71,4.73 12.46,5" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="9.9 2 12.79 4.89 9.79 7.9" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.7,13.11 C16.12,10.02 13.84,7.85 11.02,6.61 C10.57,6.41 9.75,6.13 9,5.91 L9,2 L1,9 L9,16 L9,12.13 C10.78,12.47 12.5,13.19 14.09,14.25 C17.13,16.28 18.56,18.54 18.56,18.54 C18.56,18.54 18.81,15.28 17.7,13.11 L17.7,13.11 Z M14.82,13.53 C13.17,12.4 11.01,11.4 8,10.92 L8,13.63 L2.55,9 L8,4.25 L8,6.8 C8.3,6.86 9.16,7.02 10.37,7.49 C13.3,8.65 15.54,10.96 16.65,13.08 C16.97,13.7 17.48,14.86 17.68,16 C16.87,15.05 15.73,14.15 14.82,13.53 L14.82,13.53 Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<circle cx="3.12" cy="16.8" r="1.85" />
|
|
3
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,8.2 C1.78,8.18 2.06,8.16 2.35,8.16 C7.57,8.16 11.81,12.37 11.81,17.57 C11.81,17.89 11.79,18.19 11.76,18.5" />
|
|
4
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M1.5,2.52 C1.78,2.51 2.06,2.5 2.35,2.5 C10.72,2.5 17.5,9.24 17.5,17.57 C17.5,17.89 17.49,18.19 17.47,18.5" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="3" y="3" width="1" height="2" />
|
|
3
|
+
<rect x="5" y="3" width="1" height="2" />
|
|
4
|
+
<rect x="7" y="3" width="1" height="2" />
|
|
5
|
+
<rect x="16" y="3" width="1" height="1" />
|
|
6
|
+
<rect x="16" y="10" width="1" height="1" />
|
|
7
|
+
<circle fill="none" stroke="#000" cx="9.9" cy="17.4" r="1.4" />
|
|
8
|
+
<rect x="3" y="10" width="1" height="2" />
|
|
9
|
+
<rect x="5" y="10" width="1" height="2" />
|
|
10
|
+
<rect x="9.5" y="14" width="1" height="2" />
|
|
11
|
+
<rect x="3" y="17" width="6" height="1" />
|
|
12
|
+
<rect x="11" y="17" width="6" height="1" />
|
|
13
|
+
<rect fill="none" stroke="#000" x="1.5" y="1.5" width="17" height="5" />
|
|
14
|
+
<rect fill="none" stroke="#000" x="1.5" y="8.5" width="17" height="5" />
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<ellipse fill="none" stroke="#000" cx="6.11" cy="3.55" rx="2.11" ry="2.15" />
|
|
3
|
+
<ellipse fill="none" stroke="#000" cx="6.11" cy="15.55" rx="2.11" ry="2.15" />
|
|
4
|
+
<circle fill="none" stroke="#000" cx="13.15" cy="9.55" r="2.15" />
|
|
5
|
+
<rect x="1" y="3" width="3" height="1" />
|
|
6
|
+
<rect x="10" y="3" width="8" height="1" />
|
|
7
|
+
<rect x="1" y="9" width="8" height="1" />
|
|
8
|
+
<rect x="15" y="9" width="3" height="1" />
|
|
9
|
+
<rect x="1" y="15" width="3" height="1" />
|
|
10
|
+
<rect x="10" y="15" width="8" height="1" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99" />
|
|
4
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6" />
|
|
5
|
+
<polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2" />
|
|
3
|
+
<line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5" />
|
|
4
|
+
<polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2" />
|
|
3
|
+
<line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49" />
|
|
4
|
+
<polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66" />
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m7.86,1.34l.2.81c-.79.19-1.54.51-2.24.93l-.43-.71c.77-.46,1.6-.81,2.47-1.02Zm4.28,0l-.2.81c.79.19,1.54.51,2.24.93l.43-.72c-.77-.46-1.6-.81-2.47-1.02h0ZM2.37,5.39c-.46.77-.81,1.6-1.02,2.47l.81.2c.19-.79.51-1.54.93-2.24l-.71-.43Zm-.45,4.61c0-.41.03-.81.09-1.21l-.83-.13c-.13.89-.13,1.79,0,2.67l.83-.13c-.06-.4-.09-.81-.09-1.21h0Zm12.69,7.63l-.43-.72c-.7.42-1.45.73-2.24.93l.2.81c.87-.21,1.7-.56,2.46-1.02h0Zm3.47-7.63c0,.41-.03.81-.09,1.21l.83.13c.13-.89.13-1.79,0-2.67l-.83.13c.06.4.09.81.09,1.21Zm.58,2.14l-.81-.2c-.19.79-.51,1.54-.93,2.24l.72.43c.46-.77.81-1.6,1.02-2.47h0Zm-7.44,5.85c-.8.12-1.62.12-2.42,0l-.13.83c.89.13,1.79.13,2.67,0l-.13-.83Zm5.29-3.2c-.48.65-1.06,1.23-1.71,1.71l.5.67c.72-.53,1.36-1.16,1.89-1.88l-.67-.5Zm-1.71-11.29c.65.48,1.23,1.06,1.71,1.71l.67-.5c-.53-.72-1.17-1.35-1.88-1.88l-.5.67Zm-11.29,1.71c.48-.65,1.06-1.23,1.71-1.71l-.5-.67c-.72.53-1.35,1.17-1.88,1.88l.67.5Zm14.14.18l-.72.43c.42.7.73,1.45.93,2.24l.81-.2c-.21-.87-.56-1.7-1.02-2.46h0Zm-8.84-3.38c.8-.12,1.62-.12,2.42,0l.13-.83c-.89-.13-1.79-.13-2.67,0l.13.83Zm-4.86,15.38l-1.73.4.4-1.73-.81-.19-.4,1.73c-.07.28.02.58.22.78s.5.29.78.22l1.73-.39-.19-.82Zm-1.96-2.26l.81.19.28-1.2c-.41-.68-.71-1.42-.9-2.19l-.81.2c.18.74.46,1.45.82,2.12l-.2.88Zm3.9,1.81l-1.19.28.19.81.88-.2c.67.36,1.38.64,2.12.82l.2-.81c-.77-.19-1.51-.5-2.19-.9h0ZM10,2.75c-2.63,0-5.06,1.43-6.34,3.74s-1.19,5.12.21,7.36l-.7,2.97,2.97-.7c2.61,1.64,5.96,1.46,8.37-.46s3.34-5.15,2.32-8.06c-1.02-2.91-3.77-4.85-6.85-4.85Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="13.4" y1="14" x2="6.3" y2="10.7" />
|
|
3
|
+
<line fill="none" stroke="#000" stroke-width="1.1" x1="13.5" y1="5.5" x2="6.5" y2="8.8" />
|
|
4
|
+
<circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="4.6" r="2.3" />
|
|
5
|
+
<circle fill="none" stroke="#000" stroke-width="1.1" cx="15.5" cy="14.8" r="2.3" />
|
|
6
|
+
<circle fill="none" stroke="#000" stroke-width="1.1" cx="4.5" cy="9.8" r="2.3" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76" />
|
|
4
|
+
<line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62" />
|
|
5
|
+
<polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.2,9.4c-0.4,0-0.8,0.1-1.101,0.2c-0.199-2.5-2.399-4.5-5-4.5c-0.6,0-1.2,0.1-1.7,0.3C9.2,5.5,9.1,5.6,9.1,5.6V15h8 c1.601,0,2.801-1.2,2.801-2.8C20,10.7,18.7,9.4,17.2,9.4L17.2,9.4z" />
|
|
3
|
+
<rect x="6" y="6.5" width="1.5" height="8.5" />
|
|
4
|
+
<rect x="3" y="8" width="1.5" height="7" />
|
|
5
|
+
<rect y="10" width="1.5" height="5" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6,13.02 L6.65,13.02 C7.64,15.16 8.86,16.12 10.41,16.12 C12.22,16.12 12.92,14.93 12.92,13.89 C12.92,12.55 11.99,12.03 9.74,11.23 C8.05,10.64 6.23,10.11 6.23,7.83 C6.23,5.5 8.09,4.09 10.4,4.09 C11.44,4.09 12.13,4.31 12.72,4.54 L13.33,4 L13.81,4 L13.81,7.59 L13.16,7.59 C12.55,5.88 11.52,4.89 10.07,4.89 C8.84,4.89 7.89,5.69 7.89,7.03 C7.89,8.29 8.89,8.78 10.88,9.45 C12.57,10.03 14.38,10.6 14.38,12.91 C14.38,14.75 13.27,16.93 10.18,16.93 C9.18,16.93 8.17,16.69 7.46,16.39 L6.52,17 L6,17 L6,13.02 L6,13.02 Z" />
|
|
3
|
+
<rect x="3" y="10" width="15" height="1" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="1" y="3" width="18" height="1" />
|
|
3
|
+
<rect x="1" y="7" width="18" height="1" />
|
|
4
|
+
<rect x="1" y="11" width="18" height="1" />
|
|
5
|
+
<rect x="1" y="15" width="18" height="1" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" d="M1.5,5 C1.5,4.2 2.2,3.5 3,3.5 L17,3.5 C17.8,3.5 18.5,4.2 18.5,5 L18.5,16 C18.5,16.8 17.8,17.5 17,17.5 L3,17.5 C2.2,17.5 1.5,16.8 1.5,16 L1.5,5 L1.5,5 L1.5,5 Z" />
|
|
3
|
+
<circle cx="3.7" cy="10.5" r="0.8" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" d="M5,18.5 C4.2,18.5 3.5,17.8 3.5,17 L3.5,3 C3.5,2.2 4.2,1.5 5,1.5 L16,1.5 C16.8,1.5 17.5,2.2 17.5,3 L17.5,17 C17.5,17.8 16.8,18.5 16,18.5 L5,18.5 L5,18.5 L5,18.5 Z" />
|
|
3
|
+
<circle cx="10.5" cy="16.3" r="0.8" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill="none" stroke="#000" stroke-width="1.1" d="M17.5,3.71 L17.5,7.72 C17.5,7.96 17.4,8.2 17.21,8.39 L8.39,17.2 C7.99,17.6 7.33,17.6 6.93,17.2 L2.8,13.07 C2.4,12.67 2.4,12.01 2.8,11.61 L11.61,2.8 C11.81,2.6 12.08,2.5 12.34,2.5 L16.19,2.5 C16.52,2.5 16.86,2.63 17.11,2.88 C17.35,3.11 17.48,3.4 17.5,3.71 L17.5,3.71 Z" />
|
|
3
|
+
<circle cx="14" cy="6" r="1" />
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m10,1.09C5.08,1.09,1.09,5.08,1.09,10s3.99,8.91,8.91,8.91,8.91-3.99,8.91-8.91S14.92,1.09,10,1.09Zm4.25,5.8c-.03.36-.23,1.62-.44,2.99-.31,1.93-.64,4.04-.64,4.04,0,0-.05.59-.49.7s-1.16-.36-1.29-.46c-.1-.08-1.93-1.24-2.6-1.8-.18-.15-.39-.46.03-.82.93-.85,2.04-1.91,2.7-2.58.31-.31.62-1.03-.67-.15-1.83,1.26-3.63,2.45-3.63,2.45,0,0-.41.26-1.19.03-.77-.23-1.67-.54-1.67-.54,0,0-.62-.39.44-.8h0s4.46-1.83,6-2.47c.59-.26,2.6-1.08,2.6-1.08,0,0,.93-.36.85.52Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="m14.47,9.29c-.08-.04-.16-.08-.25-.11-.14-2.66-1.6-4.18-4.04-4.2-.01,0-.02,0-.03,0-1.46,0-2.67.62-3.42,1.76l1.34.92c.56-.85,1.43-1.03,2.08-1.03,0,0,.01,0,.02,0,.8,0,1.41.24,1.8.69.29.33.48.79.57,1.37-.71-.12-1.48-.16-2.31-.11-2.32.13-3.81,1.49-3.71,3.37.05.95.53,1.77,1.34,2.31.69.45,1.57.67,2.49.62,1.21-.07,2.16-.53,2.83-1.38.5-.64.82-1.48.96-2.52.58.35,1.01.81,1.24,1.36.4.94.43,2.48-.83,3.74-1.1,1.1-2.43,1.58-4.43,1.59-2.22-.02-3.9-.73-4.99-2.12-1.02-1.3-1.55-3.18-1.57-5.58.02-2.4.55-4.28,1.57-5.58,1.09-1.39,2.77-2.1,4.99-2.12,2.24.02,3.95.73,5.08,2.13.56.68.98,1.54,1.25,2.55l1.57-.42c-.33-1.23-.86-2.3-1.58-3.18-1.45-1.79-3.58-2.7-6.32-2.72h-.01c-2.73.02-4.84.94-6.25,2.73-1.26,1.6-1.9,3.82-1.93,6.61h0s0,.01,0,.01c.02,2.79.67,5.01,1.93,6.61,1.41,1.8,3.51,2.71,6.25,2.73h.01c2.43-.02,4.14-.65,5.55-2.06,1.85-1.84,1.79-4.16,1.18-5.58-.44-1.02-1.27-1.84-2.41-2.39Zm-4.2,3.95c-1.02.06-2.07-.4-2.12-1.38-.04-.72.52-1.53,2.19-1.63.19-.01.38-.02.56-.02.61,0,1.17.06,1.69.17-.19,2.41-1.32,2.8-2.32,2.85Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect fill="none" stroke="#000" x="3.5" y="3.5" width="5" height="5" />
|
|
3
|
+
<rect fill="none" stroke="#000" x="11.5" y="3.5" width="5" height="5" />
|
|
4
|
+
<rect fill="none" stroke="#000" x="11.5" y="11.5" width="5" height="5" />
|
|
5
|
+
<rect fill="none" stroke="#000" x="3.5" y="11.5" width="5" height="5" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.24,6V8.82a6.79,6.79,0,0,1-4-1.28v5.81A5.26,5.26,0,1,1,8,8.1a4.36,4.36,0,0,1,.72.05v2.9A2.57,2.57,0,0,0,7.64,11a2.4,2.4,0,1,0,2.77,2.38V2h2.86a4,4,0,0,0,1.84,3.38A4,4,0,0,0,17.24,6Z" />
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<polyline fill="none" stroke="#000" points="6.5 3 6.5 1.5 13.5 1.5 13.5 3" />
|
|
3
|
+
<polyline fill="none" stroke="#000" points="4.5 4 4.5 18.5 15.5 18.5 15.5 4" />
|
|
4
|
+
<rect x="8" y="7" width="1" height="9" />
|
|
5
|
+
<rect x="11" y="7" width="1" height="9" />
|
|
6
|
+
<rect x="2" y="3" width="16" height="1" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M19.021,7.866C19.256,6.862,20,5.854,20,5.854h-3.346C14.781,4.641,12.504,4,9.98,4C7.363,4,4.999,4.651,3.135,5.876H0
|
|
3
|
+
c0,0,0.738,0.987,0.976,1.988c-0.611,0.837-0.973,1.852-0.973,2.964c0,2.763,2.249,5.009,5.011,5.009
|
|
4
|
+
c1.576,0,2.976-0.737,3.901-1.879l1.063,1.599l1.075-1.615c0.475,0.611,1.1,1.111,1.838,1.451c1.213,0.547,2.574,0.612,3.825,0.15
|
|
5
|
+
c2.589-0.963,3.913-3.852,2.964-6.439c-0.175-0.463-0.4-0.876-0.675-1.238H19.021z M16.38,14.594
|
|
6
|
+
c-1.002,0.371-2.088,0.328-3.06-0.119c-0.688-0.317-1.252-0.817-1.657-1.438c-0.164-0.25-0.313-0.52-0.417-0.811
|
|
7
|
+
c-0.124-0.328-0.186-0.668-0.217-1.014c-0.063-0.689,0.037-1.396,0.339-2.043c0.448-0.971,1.251-1.71,2.25-2.079
|
|
8
|
+
c2.075-0.765,4.375,0.3,5.14,2.366c0.762,2.066-0.301,4.37-2.363,5.134L16.38,14.594L16.38,14.594z M8.322,13.066
|
|
9
|
+
c-0.72,1.059-1.935,1.76-3.309,1.76c-2.207,0-4.001-1.797-4.001-3.996c0-2.203,1.795-4.002,4.001-4.002
|
|
10
|
+
c2.204,0,3.999,1.8,3.999,4.002c0,0.137-0.024,0.261-0.04,0.396c-0.067,0.678-0.284,1.313-0.648,1.853v-0.013H8.322z M2.472,10.775
|
|
11
|
+
c0,1.367,1.112,2.479,2.476,2.479c1.363,0,2.472-1.11,2.472-2.479c0-1.359-1.11-2.468-2.472-2.468
|
|
12
|
+
C3.584,8.306,2.473,9.416,2.472,10.775L2.472,10.775z M12.514,10.775c0,1.367,1.104,2.479,2.471,2.479
|
|
13
|
+
c1.363,0,2.474-1.108,2.474-2.479c0-1.359-1.11-2.468-2.474-2.468c-1.364,0-2.477,1.109-2.477,2.468H12.514z M3.324,10.775
|
|
14
|
+
c0-0.893,0.726-1.618,1.614-1.618c0.889,0,1.625,0.727,1.625,1.618c0,0.898-0.725,1.627-1.625,1.627
|
|
15
|
+
c-0.901,0-1.625-0.729-1.625-1.627H3.324z M13.354,10.775c0-0.893,0.726-1.618,1.627-1.618c0.886,0,1.61,0.727,1.61,1.618
|
|
16
|
+
c0,0.898-0.726,1.627-1.626,1.627s-1.625-0.729-1.625-1.627H13.354z M9.977,4.875c1.798,0,3.425,0.324,4.849,0.968
|
|
17
|
+
c-0.535,0.015-1.061,0.108-1.586,0.3c-1.264,0.463-2.264,1.388-2.815,2.604c-0.262,0.551-0.398,1.133-0.448,1.72
|
|
18
|
+
C9.79,7.905,7.677,5.873,5.076,5.82C6.501,5.208,8.153,4.875,9.94,4.875H9.977z" />
|
|
19
|
+
</svg>
|