jekyll-uikit 0.1.5 → 0.1.7
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.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +81 -0
- data/_data/navigation.yml +25 -0
- data/_includes/algolia.html +106 -0
- data/_includes/buymeacoffee.html +10 -0
- data/_includes/disqus.html +19 -0
- data/_includes/footer-links.html +11 -0
- data/_includes/footer.html +14 -0
- data/_includes/google_analytics.html +14 -0
- data/_includes/head.html +82 -0
- data/_includes/header.html +62 -0
- data/_includes/pagination.html +24 -0
- data/_includes/post-pagination.html +22 -0
- data/_includes/search_box.html +17 -0
- data/_includes/totop.html +3 -0
- data/_layouts/archive.html +51 -0
- data/_layouts/default.html +10 -0
- data/_layouts/feed.html +26 -0
- data/_layouts/home.html +84 -0
- data/_layouts/page.html +29 -0
- data/_layouts/post.html +46 -0
- data/assets/apple-touch-icon.png +0 -0
- data/assets/avatar-icon.png +0 -0
- data/assets/css/syntax.css +3 -0
- data/assets/css/uikit.min.css +1 -0
- data/assets/img/algolia.png +0 -0
- data/assets/img/archive-page.png +0 -0
- data/assets/img/boats.jpg +0 -0
- data/assets/img/coffee.png +0 -0
- data/assets/img/designer.png +0 -0
- data/assets/img/home-layout.png +0 -0
- data/assets/img/post-tags.png +0 -0
- data/assets/img/search.png +0 -0
- data/assets/img/site-build.png +0 -0
- data/assets/img/tag-cloud.png +0 -0
- data/assets/img/thisisfine.gif +0 -0
- data/assets/img/uikit.jpg +0 -0
- data/assets/img/web-mockup.png +0 -0
- data/assets/img/writer.jpg +0 -0
- data/assets/js/uikit-icons.min.js +3 -0
- data/assets/js/uikit.min.js +3 -0
- data/assets/node_modules/uikit/.github/ISSUE_TEMPLATE.md +28 -0
- data/assets/node_modules/uikit/CHANGELOG.md +603 -0
- data/assets/node_modules/uikit/CONTRIBUTING.md +80 -0
- data/assets/node_modules/uikit/LICENSE.md +7 -0
- data/assets/node_modules/uikit/README.md +88 -0
- data/assets/node_modules/uikit/build/build.js +25 -0
- data/assets/node_modules/uikit/build/icons.js +23 -0
- data/assets/node_modules/uikit/build/less.js +69 -0
- data/assets/node_modules/uikit/build/prefix.js +27 -0
- data/assets/node_modules/uikit/build/release.js +20 -0
- data/assets/node_modules/uikit/build/scope.js +16 -0
- data/assets/node_modules/uikit/build/scss.js +291 -0
- data/assets/node_modules/uikit/build/util.js +131 -0
- data/assets/node_modules/uikit/circle.yml +11 -0
- data/assets/node_modules/uikit/dist/css/uikit-rtl.css +12344 -0
- data/assets/node_modules/uikit/dist/css/uikit-rtl.min.css +1 -0
- data/assets/node_modules/uikit/dist/css/uikit.css +12344 -0
- data/assets/node_modules/uikit/dist/css/uikit.min.css +1 -0
- data/assets/node_modules/uikit/dist/js/uikit-icons.js +262 -0
- data/assets/node_modules/uikit/dist/js/uikit-icons.min.js +3 -0
- data/assets/node_modules/uikit/dist/js/uikit.js +10491 -0
- data/assets/node_modules/uikit/dist/js/uikit.min.js +3 -0
- data/assets/node_modules/uikit/package.json +87 -0
- data/assets/node_modules/uikit/src/images/backgrounds/accordion-close.svg +4 -0
- data/assets/node_modules/uikit/src/images/backgrounds/accordion-open.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/divider-icon.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-checkbox-indeterminate.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-checkbox.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-radio.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/form-select.svg +4 -0
- data/assets/node_modules/uikit/src/images/backgrounds/list-bullet.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/nav-parent-close.svg +3 -0
- data/assets/node_modules/uikit/src/images/backgrounds/nav-parent-open.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/close-icon.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/close-large.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/marker.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/navbar-toggle-icon.svg +5 -0
- data/assets/node_modules/uikit/src/images/components/overlay-icon.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/pagination-next.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/pagination-previous.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/search-icon.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/search-large.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/search-navbar.svg +4 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-next-large.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-next.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-previous-large.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/slidenav-previous.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/spinner.svg +3 -0
- data/assets/node_modules/uikit/src/images/components/totop.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/500px.svg +30 -0
- data/assets/node_modules/uikit/src/images/icons/album.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-down.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-left.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-right.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/arrow-up.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/ban.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/behance.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/bell.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/bold.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/bolt.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/bookmark.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/calendar.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/camera.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/cart.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/check.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-down.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-left.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-right.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/chevron-up.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/clock.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/close.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/cloud-download.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/cloud-upload.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/code.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/cog.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/comment.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/commenting.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/comments.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/copy.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/credit-card.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/database.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/desktop.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/download.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/dribbble.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/expand.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/facebook.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/file-edit.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/file.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/flickr.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/folder.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/forward.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/foursquare.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/future.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/git-branch.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/git-fork.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/github-alt.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/github.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/gitter.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/google-plus.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/google.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/grid.svg +11 -0
- data/assets/node_modules/uikit/src/images/icons/happy.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/hashtag.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/heart.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/history.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/home.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/image.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/info.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/instagram.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/italic.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/joomla.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/laptop.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/lifesaver.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/link.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/linkedin.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/list.svg +8 -0
- data/assets/node_modules/uikit/src/images/icons/location.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/lock.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/mail.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/menu.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/minus-circle.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/minus.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/more-vertical.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/more.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/move.svg +8 -0
- data/assets/node_modules/uikit/src/images/icons/nut.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/pagekit.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/paint-bucket.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/pencil.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/phone-landscape.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/phone.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/pinterest.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/play-circle.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/play.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/plus-circle.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/plus.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/pull.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/push.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/question.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/quote-right.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/receiver.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/refresh.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/reply.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/rss.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/search.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/server.svg +15 -0
- data/assets/node_modules/uikit/src/images/icons/settings.svg +11 -0
- data/assets/node_modules/uikit/src/images/icons/shrink.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/sign-in.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/sign-out.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/social.svg +7 -0
- data/assets/node_modules/uikit/src/images/icons/soundcloud.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/star.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/strikethrough.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/table.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/tablet-landscape.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/tablet.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/tag.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/thumbnails.svg +6 -0
- data/assets/node_modules/uikit/src/images/icons/trash.svg +7 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-down.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-left.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-right.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/triangle-up.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/tripadvisor.svg +19 -0
- data/assets/node_modules/uikit/src/images/icons/tumblr.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/tv.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/twitter.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/uikit.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/unlock.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/upload.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/user.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/users.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/video-camera.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/vimeo.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/warning.svg +5 -0
- data/assets/node_modules/uikit/src/images/icons/whatsapp.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/wordpress.svg +3 -0
- data/assets/node_modules/uikit/src/images/icons/world.svg +7 -0
- data/assets/node_modules/uikit/src/images/icons/xing.svg +4 -0
- data/assets/node_modules/uikit/src/images/icons/yelp.svg +15 -0
- data/assets/node_modules/uikit/src/images/icons/youtube.svg +3 -0
- data/assets/node_modules/uikit/src/js/api/boot.js +82 -0
- data/assets/node_modules/uikit/src/js/api/component.js +84 -0
- data/assets/node_modules/uikit/src/js/api/global.js +119 -0
- data/assets/node_modules/uikit/src/js/api/hooks.js +121 -0
- data/assets/node_modules/uikit/src/js/api/index.js +25 -0
- data/assets/node_modules/uikit/src/js/api/instance.js +71 -0
- data/assets/node_modules/uikit/src/js/api/state.js +283 -0
- data/assets/node_modules/uikit/src/js/components/countdown.js +167 -0
- data/assets/node_modules/uikit/src/js/components/grid-parallax.js +122 -0
- data/assets/node_modules/uikit/src/js/components/internal/lightbox-animations.js +56 -0
- data/assets/node_modules/uikit/src/js/components/internal/slideshow-animations.js +126 -0
- data/assets/node_modules/uikit/src/js/components/lightbox.js +469 -0
- data/assets/node_modules/uikit/src/js/components/notification.js +128 -0
- data/assets/node_modules/uikit/src/js/components/parallax.js +395 -0
- data/assets/node_modules/uikit/src/js/components/slideshow.js +179 -0
- data/assets/node_modules/uikit/src/js/components/sortable.js +333 -0
- data/assets/node_modules/uikit/src/js/components/tooltip.js +127 -0
- data/assets/node_modules/uikit/src/js/components/upload.js +208 -0
- data/assets/node_modules/uikit/src/js/core/accordion.js +124 -0
- data/assets/node_modules/uikit/src/js/core/alert.js +54 -0
- data/assets/node_modules/uikit/src/js/core/cover.js +61 -0
- data/assets/node_modules/uikit/src/js/core/drop.js +416 -0
- data/assets/node_modules/uikit/src/js/core/dropdown.js +5 -0
- data/assets/node_modules/uikit/src/js/core/form-custom.js +88 -0
- data/assets/node_modules/uikit/src/js/core/gif.js +25 -0
- data/assets/node_modules/uikit/src/js/core/grid.js +31 -0
- data/assets/node_modules/uikit/src/js/core/height-match.js +104 -0
- data/assets/node_modules/uikit/src/js/core/height-viewport.js +98 -0
- data/assets/node_modules/uikit/src/js/core/hover.js +31 -0
- data/assets/node_modules/uikit/src/js/core/icon.js +180 -0
- data/assets/node_modules/uikit/src/js/core/index.js +85 -0
- data/assets/node_modules/uikit/src/js/core/leader.js +68 -0
- data/assets/node_modules/uikit/src/js/core/margin.js +100 -0
- data/assets/node_modules/uikit/src/js/core/modal.js +184 -0
- data/assets/node_modules/uikit/src/js/core/nav.js +15 -0
- data/assets/node_modules/uikit/src/js/core/navbar.js +205 -0
- data/assets/node_modules/uikit/src/js/core/offcanvas.js +224 -0
- data/assets/node_modules/uikit/src/js/core/responsive.js +37 -0
- data/assets/node_modules/uikit/src/js/core/scroll.js +76 -0
- data/assets/node_modules/uikit/src/js/core/scrollspy-nav.js +108 -0
- data/assets/node_modules/uikit/src/js/core/scrollspy.js +140 -0
- data/assets/node_modules/uikit/src/js/core/sticky.js +308 -0
- data/assets/node_modules/uikit/src/js/core/svg.js +193 -0
- data/assets/node_modules/uikit/src/js/core/switcher.js +149 -0
- data/assets/node_modules/uikit/src/js/core/tab.js +36 -0
- data/assets/node_modules/uikit/src/js/core/toggle.js +116 -0
- data/assets/node_modules/uikit/src/js/core/video.js +46 -0
- data/assets/node_modules/uikit/src/js/icons.js +17 -0
- data/assets/node_modules/uikit/src/js/mixin/class.js +9 -0
- data/assets/node_modules/uikit/src/js/mixin/container.js +21 -0
- data/assets/node_modules/uikit/src/js/mixin/index.js +17 -0
- data/assets/node_modules/uikit/src/js/mixin/internal/slideshow-animations.js +45 -0
- data/assets/node_modules/uikit/src/js/mixin/modal.js +229 -0
- data/assets/node_modules/uikit/src/js/mixin/position.js +68 -0
- data/assets/node_modules/uikit/src/js/mixin/slideshow.js +613 -0
- data/assets/node_modules/uikit/src/js/mixin/togglable.js +207 -0
- data/assets/node_modules/uikit/src/js/uikit-core.js +15 -0
- data/assets/node_modules/uikit/src/js/uikit.js +27 -0
- data/assets/node_modules/uikit/src/js/util/attr.js +55 -0
- data/assets/node_modules/uikit/src/js/util/class.js +75 -0
- data/assets/node_modules/uikit/src/js/util/dom.js +414 -0
- data/assets/node_modules/uikit/src/js/util/env.js +54 -0
- data/assets/node_modules/uikit/src/js/util/event.js +104 -0
- data/assets/node_modules/uikit/src/js/util/fastdom.js +62 -0
- data/assets/node_modules/uikit/src/js/util/index.js +14 -0
- data/assets/node_modules/uikit/src/js/util/lang.js +276 -0
- data/assets/node_modules/uikit/src/js/util/mouse.js +88 -0
- data/assets/node_modules/uikit/src/js/util/options.js +85 -0
- data/assets/node_modules/uikit/src/js/util/player.js +139 -0
- data/assets/node_modules/uikit/src/js/util/position.js +298 -0
- data/assets/node_modules/uikit/src/js/util/promise.js +175 -0
- data/assets/node_modules/uikit/src/js/util/selector.js +204 -0
- data/assets/node_modules/uikit/src/js/util/style.js +120 -0
- data/assets/node_modules/uikit/src/js/util/touch.js +109 -0
- data/assets/node_modules/uikit/src/less/components/_import.less +90 -0
- data/assets/node_modules/uikit/src/less/components/accordion.less +112 -0
- data/assets/node_modules/uikit/src/less/components/alert.less +147 -0
- data/assets/node_modules/uikit/src/less/components/align.less +142 -0
- data/assets/node_modules/uikit/src/less/components/animation.less +638 -0
- data/assets/node_modules/uikit/src/less/components/article.less +113 -0
- data/assets/node_modules/uikit/src/less/components/background.less +136 -0
- data/assets/node_modules/uikit/src/less/components/badge.less +104 -0
- data/assets/node_modules/uikit/src/less/components/base.less +740 -0
- data/assets/node_modules/uikit/src/less/components/breadcrumb.less +162 -0
- data/assets/node_modules/uikit/src/less/components/button.less +560 -0
- data/assets/node_modules/uikit/src/less/components/card.less +363 -0
- data/assets/node_modules/uikit/src/less/components/close.less +70 -0
- data/assets/node_modules/uikit/src/less/components/column.less +285 -0
- data/assets/node_modules/uikit/src/less/components/comment.less +171 -0
- data/assets/node_modules/uikit/src/less/components/container.less +106 -0
- data/assets/node_modules/uikit/src/less/components/countdown.less +145 -0
- data/assets/node_modules/uikit/src/less/components/cover.less +58 -0
- data/assets/node_modules/uikit/src/less/components/description-list.less +71 -0
- data/assets/node_modules/uikit/src/less/components/divider.less +147 -0
- data/assets/node_modules/uikit/src/less/components/dotnav.less +188 -0
- data/assets/node_modules/uikit/src/less/components/drop.less +74 -0
- data/assets/node_modules/uikit/src/less/components/dropdown.less +150 -0
- data/assets/node_modules/uikit/src/less/components/flex.less +476 -0
- data/assets/node_modules/uikit/src/less/components/form-range.less +185 -0
- data/assets/node_modules/uikit/src/less/components/form.less +848 -0
- data/assets/node_modules/uikit/src/less/components/grid.less +367 -0
- data/assets/node_modules/uikit/src/less/components/heading.less +238 -0
- data/assets/node_modules/uikit/src/less/components/icon.less +275 -0
- data/assets/node_modules/uikit/src/less/components/iconnav.less +166 -0
- data/assets/node_modules/uikit/src/less/components/inverse.less +52 -0
- data/assets/node_modules/uikit/src/less/components/label.less +110 -0
- data/assets/node_modules/uikit/src/less/components/lightbox.less +247 -0
- data/assets/node_modules/uikit/src/less/components/link.less +122 -0
- data/assets/node_modules/uikit/src/less/components/list.less +205 -0
- data/assets/node_modules/uikit/src/less/components/margin.less +163 -0
- data/assets/node_modules/uikit/src/less/components/marker.less +77 -0
- data/assets/node_modules/uikit/src/less/components/mixin.less +20 -0
- data/assets/node_modules/uikit/src/less/components/modal.less +376 -0
- data/assets/node_modules/uikit/src/less/components/nav.less +440 -0
- data/assets/node_modules/uikit/src/less/components/navbar.less +601 -0
- data/assets/node_modules/uikit/src/less/components/notification.less +190 -0
- data/assets/node_modules/uikit/src/less/components/offcanvas.less +313 -0
- data/assets/node_modules/uikit/src/less/components/overlay.less +85 -0
- data/assets/node_modules/uikit/src/less/components/padding.less +81 -0
- data/assets/node_modules/uikit/src/less/components/pagination.less +157 -0
- data/assets/node_modules/uikit/src/less/components/placeholder.less +45 -0
- data/assets/node_modules/uikit/src/less/components/position.less +279 -0
- data/assets/node_modules/uikit/src/less/components/print.less +61 -0
- data/assets/node_modules/uikit/src/less/components/progress.less +102 -0
- data/assets/node_modules/uikit/src/less/components/search.less +394 -0
- data/assets/node_modules/uikit/src/less/components/section.less +224 -0
- data/assets/node_modules/uikit/src/less/components/slidenav.less +142 -0
- data/assets/node_modules/uikit/src/less/components/slideshow.less +90 -0
- data/assets/node_modules/uikit/src/less/components/sortable.less +101 -0
- data/assets/node_modules/uikit/src/less/components/spinner.less +95 -0
- data/assets/node_modules/uikit/src/less/components/sticky.less +59 -0
- data/assets/node_modules/uikit/src/less/components/subnav.less +307 -0
- data/assets/node_modules/uikit/src/less/components/switcher.less +47 -0
- data/assets/node_modules/uikit/src/less/components/tab.less +226 -0
- data/assets/node_modules/uikit/src/less/components/table.less +343 -0
- data/assets/node_modules/uikit/src/less/components/text.less +276 -0
- data/assets/node_modules/uikit/src/less/components/thumbnav.less +146 -0
- data/assets/node_modules/uikit/src/less/components/tile.less +224 -0
- data/assets/node_modules/uikit/src/less/components/tooltip.less +84 -0
- data/assets/node_modules/uikit/src/less/components/totop.less +89 -0
- data/assets/node_modules/uikit/src/less/components/transition.less +195 -0
- data/assets/node_modules/uikit/src/less/components/utility.less +632 -0
- data/assets/node_modules/uikit/src/less/components/variables.less +117 -0
- data/assets/node_modules/uikit/src/less/components/visibility.less +136 -0
- data/assets/node_modules/uikit/src/less/components/width.less +418 -0
- data/assets/node_modules/uikit/src/less/theme/_import.less +78 -0
- data/assets/node_modules/uikit/src/less/theme/accordion.less +76 -0
- data/assets/node_modules/uikit/src/less/theme/alert.less +76 -0
- data/assets/node_modules/uikit/src/less/theme/align.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/animation.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/article.less +60 -0
- data/assets/node_modules/uikit/src/less/theme/background.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/badge.less +29 -0
- data/assets/node_modules/uikit/src/less/theme/base.less +134 -0
- data/assets/node_modules/uikit/src/less/theme/breadcrumb.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/button.less +219 -0
- data/assets/node_modules/uikit/src/less/theme/card.less +193 -0
- data/assets/node_modules/uikit/src/less/theme/close.less +34 -0
- data/assets/node_modules/uikit/src/less/theme/column.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/comment.less +72 -0
- data/assets/node_modules/uikit/src/less/theme/container.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/countdown.less +53 -0
- data/assets/node_modules/uikit/src/less/theme/description-list.less +36 -0
- data/assets/node_modules/uikit/src/less/theme/divider.less +41 -0
- data/assets/node_modules/uikit/src/less/theme/dotnav.less +59 -0
- data/assets/node_modules/uikit/src/less/theme/drop.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/dropdown.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/form-range.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/form.less +150 -0
- data/assets/node_modules/uikit/src/less/theme/grid.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/heading.less +59 -0
- data/assets/node_modules/uikit/src/less/theme/icon.less +55 -0
- data/assets/node_modules/uikit/src/less/theme/iconnav.less +34 -0
- data/assets/node_modules/uikit/src/less/theme/inverse.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/label.less +46 -0
- data/assets/node_modules/uikit/src/less/theme/lightbox.less +48 -0
- data/assets/node_modules/uikit/src/less/theme/link.less +45 -0
- data/assets/node_modules/uikit/src/less/theme/list.less +53 -0
- data/assets/node_modules/uikit/src/less/theme/margin.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/marker.less +31 -0
- data/assets/node_modules/uikit/src/less/theme/modal.less +89 -0
- data/assets/node_modules/uikit/src/less/theme/nav.less +94 -0
- data/assets/node_modules/uikit/src/less/theme/navbar.less +179 -0
- data/assets/node_modules/uikit/src/less/theme/notification.less +44 -0
- data/assets/node_modules/uikit/src/less/theme/offcanvas.less +32 -0
- data/assets/node_modules/uikit/src/less/theme/overlay.less +33 -0
- data/assets/node_modules/uikit/src/less/theme/padding.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/pagination.less +44 -0
- data/assets/node_modules/uikit/src/less/theme/placeholder.less +29 -0
- data/assets/node_modules/uikit/src/less/theme/position.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/progress.less +27 -0
- data/assets/node_modules/uikit/src/less/theme/search.less +73 -0
- data/assets/node_modules/uikit/src/less/theme/section.less +32 -0
- data/assets/node_modules/uikit/src/less/theme/slidenav.less +55 -0
- data/assets/node_modules/uikit/src/less/theme/sortable.less +38 -0
- data/assets/node_modules/uikit/src/less/theme/spinner.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/sticky.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/subnav.less +81 -0
- data/assets/node_modules/uikit/src/less/theme/tab.less +139 -0
- data/assets/node_modules/uikit/src/less/theme/table.less +79 -0
- data/assets/node_modules/uikit/src/less/theme/text.less +59 -0
- data/assets/node_modules/uikit/src/less/theme/thumbnav.less +62 -0
- data/assets/node_modules/uikit/src/less/theme/tile.less +32 -0
- data/assets/node_modules/uikit/src/less/theme/tooltip.less +20 -0
- data/assets/node_modules/uikit/src/less/theme/totop.less +35 -0
- data/assets/node_modules/uikit/src/less/theme/transition.less +14 -0
- data/assets/node_modules/uikit/src/less/theme/utility.less +60 -0
- data/assets/node_modules/uikit/src/less/theme/variables.less +36 -0
- data/assets/node_modules/uikit/src/less/theme/width.less +14 -0
- data/assets/node_modules/uikit/src/less/uikit.less +5 -0
- data/assets/node_modules/uikit/src/less/uikit.theme.less +11 -0
- data/assets/node_modules/uikit/src/scss/components/_import.components.scss +56 -0
- data/assets/node_modules/uikit/src/scss/components/_import.scss +90 -0
- data/assets/node_modules/uikit/src/scss/components/_import.utilities.scss +19 -0
- data/assets/node_modules/uikit/src/scss/components/accordion.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/alert.scss +147 -0
- data/assets/node_modules/uikit/src/scss/components/align.scss +142 -0
- data/assets/node_modules/uikit/src/scss/components/animation.scss +638 -0
- data/assets/node_modules/uikit/src/scss/components/article.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/background.scss +136 -0
- data/assets/node_modules/uikit/src/scss/components/badge.scss +90 -0
- data/assets/node_modules/uikit/src/scss/components/base.scss +641 -0
- data/assets/node_modules/uikit/src/scss/components/breadcrumb.scss +130 -0
- data/assets/node_modules/uikit/src/scss/components/button.scss +453 -0
- data/assets/node_modules/uikit/src/scss/components/card.scss +363 -0
- data/assets/node_modules/uikit/src/scss/components/close.scss +57 -0
- data/assets/node_modules/uikit/src/scss/components/column.scss +276 -0
- data/assets/node_modules/uikit/src/scss/components/comment.scss +171 -0
- data/assets/node_modules/uikit/src/scss/components/container.scss +106 -0
- data/assets/node_modules/uikit/src/scss/components/countdown.scss +126 -0
- data/assets/node_modules/uikit/src/scss/components/cover.scss +58 -0
- data/assets/node_modules/uikit/src/scss/components/description-list.scss +71 -0
- data/assets/node_modules/uikit/src/scss/components/divider.scss +129 -0
- data/assets/node_modules/uikit/src/scss/components/dotnav.scss +165 -0
- data/assets/node_modules/uikit/src/scss/components/drop.scss +74 -0
- data/assets/node_modules/uikit/src/scss/components/dropdown.scss +150 -0
- data/assets/node_modules/uikit/src/scss/components/flex.scss +476 -0
- data/assets/node_modules/uikit/src/scss/components/form-range.scss +185 -0
- data/assets/node_modules/uikit/src/scss/components/form.scss +771 -0
- data/assets/node_modules/uikit/src/scss/components/grid.scss +362 -0
- data/assets/node_modules/uikit/src/scss/components/heading.scss +212 -0
- data/assets/node_modules/uikit/src/scss/components/icon.scss +229 -0
- data/assets/node_modules/uikit/src/scss/components/iconnav.scss +148 -0
- data/assets/node_modules/uikit/src/scss/components/inverse.scss +46 -0
- data/assets/node_modules/uikit/src/scss/components/label.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/lightbox.scss +247 -0
- data/assets/node_modules/uikit/src/scss/components/link.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/list.scss +187 -0
- data/assets/node_modules/uikit/src/scss/components/margin.scss +163 -0
- data/assets/node_modules/uikit/src/scss/components/marker.scss +63 -0
- data/assets/node_modules/uikit/src/scss/components/mixin.scss +32 -0
- data/assets/node_modules/uikit/src/scss/components/modal.scss +376 -0
- data/assets/node_modules/uikit/src/scss/components/nav.scss +357 -0
- data/assets/node_modules/uikit/src/scss/components/navbar.scss +560 -0
- data/assets/node_modules/uikit/src/scss/components/notification.scss +190 -0
- data/assets/node_modules/uikit/src/scss/components/offcanvas.scss +313 -0
- data/assets/node_modules/uikit/src/scss/components/overlay.scss +85 -0
- data/assets/node_modules/uikit/src/scss/components/padding.scss +81 -0
- data/assets/node_modules/uikit/src/scss/components/pagination.scss +134 -0
- data/assets/node_modules/uikit/src/scss/components/placeholder.scss +45 -0
- data/assets/node_modules/uikit/src/scss/components/position.scss +279 -0
- data/assets/node_modules/uikit/src/scss/components/print.scss +61 -0
- data/assets/node_modules/uikit/src/scss/components/progress.scss +102 -0
- data/assets/node_modules/uikit/src/scss/components/search.scss +335 -0
- data/assets/node_modules/uikit/src/scss/components/section.scss +224 -0
- data/assets/node_modules/uikit/src/scss/components/slidenav.scss +124 -0
- data/assets/node_modules/uikit/src/scss/components/slideshow.scss +90 -0
- data/assets/node_modules/uikit/src/scss/components/sortable.scss +101 -0
- data/assets/node_modules/uikit/src/scss/components/spinner.scss +95 -0
- data/assets/node_modules/uikit/src/scss/components/sticky.scss +59 -0
- data/assets/node_modules/uikit/src/scss/components/subnav.scss +242 -0
- data/assets/node_modules/uikit/src/scss/components/switcher.scss +47 -0
- data/assets/node_modules/uikit/src/scss/components/tab.scss +199 -0
- data/assets/node_modules/uikit/src/scss/components/table.scss +306 -0
- data/assets/node_modules/uikit/src/scss/components/text.scss +261 -0
- data/assets/node_modules/uikit/src/scss/components/thumbnav.scss +131 -0
- data/assets/node_modules/uikit/src/scss/components/tile.scss +224 -0
- data/assets/node_modules/uikit/src/scss/components/tooltip.scss +84 -0
- data/assets/node_modules/uikit/src/scss/components/totop.scss +71 -0
- data/assets/node_modules/uikit/src/scss/components/transition.scss +195 -0
- data/assets/node_modules/uikit/src/scss/components/utility.scss +607 -0
- data/assets/node_modules/uikit/src/scss/components/variables.scss +117 -0
- data/assets/node_modules/uikit/src/scss/components/visibility.scss +136 -0
- data/assets/node_modules/uikit/src/scss/components/width.scss +418 -0
- data/assets/node_modules/uikit/src/scss/mixins-theme.scss +2060 -0
- data/assets/node_modules/uikit/src/scss/mixins.scss +1630 -0
- data/assets/node_modules/uikit/src/scss/theme/_import.scss +78 -0
- data/assets/node_modules/uikit/src/scss/theme/accordion.scss +54 -0
- data/assets/node_modules/uikit/src/scss/theme/alert.scss +46 -0
- data/assets/node_modules/uikit/src/scss/theme/align.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/animation.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/article.scss +51 -0
- data/assets/node_modules/uikit/src/scss/theme/background.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/badge.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/base.scss +116 -0
- data/assets/node_modules/uikit/src/scss/theme/breadcrumb.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/button.scss +161 -0
- data/assets/node_modules/uikit/src/scss/theme/card.scss +125 -0
- data/assets/node_modules/uikit/src/scss/theme/close.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/column.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/comment.scss +69 -0
- data/assets/node_modules/uikit/src/scss/theme/container.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/countdown.scss +53 -0
- data/assets/node_modules/uikit/src/scss/theme/description-list.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/divider.scss +41 -0
- data/assets/node_modules/uikit/src/scss/theme/dotnav.scss +52 -0
- data/assets/node_modules/uikit/src/scss/theme/drop.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/dropdown.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/form-range.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/form.scss +131 -0
- data/assets/node_modules/uikit/src/scss/theme/grid.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/heading.scss +59 -0
- data/assets/node_modules/uikit/src/scss/theme/icon.scss +50 -0
- data/assets/node_modules/uikit/src/scss/theme/iconnav.scss +34 -0
- data/assets/node_modules/uikit/src/scss/theme/inverse.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/label.scss +43 -0
- data/assets/node_modules/uikit/src/scss/theme/lightbox.scss +48 -0
- data/assets/node_modules/uikit/src/scss/theme/link.scss +45 -0
- data/assets/node_modules/uikit/src/scss/theme/list.scss +39 -0
- data/assets/node_modules/uikit/src/scss/theme/margin.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/marker.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/modal.scss +84 -0
- data/assets/node_modules/uikit/src/scss/theme/nav.scss +94 -0
- data/assets/node_modules/uikit/src/scss/theme/navbar.scss +136 -0
- data/assets/node_modules/uikit/src/scss/theme/notification.scss +44 -0
- data/assets/node_modules/uikit/src/scss/theme/offcanvas.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/overlay.scss +33 -0
- data/assets/node_modules/uikit/src/scss/theme/padding.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/pagination.scss +41 -0
- data/assets/node_modules/uikit/src/scss/theme/placeholder.scss +29 -0
- data/assets/node_modules/uikit/src/scss/theme/position.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/progress.scss +24 -0
- data/assets/node_modules/uikit/src/scss/theme/search.scss +73 -0
- data/assets/node_modules/uikit/src/scss/theme/section.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/slidenav.scss +52 -0
- data/assets/node_modules/uikit/src/scss/theme/sortable.scss +38 -0
- data/assets/node_modules/uikit/src/scss/theme/spinner.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/sticky.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/subnav.scss +74 -0
- data/assets/node_modules/uikit/src/scss/theme/tab.scss +74 -0
- data/assets/node_modules/uikit/src/scss/theme/table.scss +66 -0
- data/assets/node_modules/uikit/src/scss/theme/text.scss +50 -0
- data/assets/node_modules/uikit/src/scss/theme/thumbnav.scss +42 -0
- data/assets/node_modules/uikit/src/scss/theme/tile.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/tooltip.scss +20 -0
- data/assets/node_modules/uikit/src/scss/theme/totop.scss +32 -0
- data/assets/node_modules/uikit/src/scss/theme/transition.scss +14 -0
- data/assets/node_modules/uikit/src/scss/theme/utility.scss +57 -0
- data/assets/node_modules/uikit/src/scss/theme/variables.scss +36 -0
- data/assets/node_modules/uikit/src/scss/theme/width.scss +14 -0
- data/assets/node_modules/uikit/src/scss/uikit-theme.scss +9 -0
- data/assets/node_modules/uikit/src/scss/uikit.scss +5 -0
- data/assets/node_modules/uikit/src/scss/variables-theme.scss +1080 -0
- data/assets/node_modules/uikit/src/scss/variables.scss +973 -0
- data/assets/node_modules/uikit/tests/accordion.html +209 -0
- data/assets/node_modules/uikit/tests/alert.html +125 -0
- data/assets/node_modules/uikit/tests/align.html +134 -0
- data/assets/node_modules/uikit/tests/animation.html +240 -0
- data/assets/node_modules/uikit/tests/article.html +168 -0
- data/assets/node_modules/uikit/tests/background.html +68 -0
- data/assets/node_modules/uikit/tests/badge.html +95 -0
- data/assets/node_modules/uikit/tests/base.html +234 -0
- data/assets/node_modules/uikit/tests/breadcrumb.html +35 -0
- data/assets/node_modules/uikit/tests/button.html +253 -0
- data/assets/node_modules/uikit/tests/card.html +623 -0
- data/assets/node_modules/uikit/tests/close.html +31 -0
- data/assets/node_modules/uikit/tests/column.html +72 -0
- data/assets/node_modules/uikit/tests/comment.html +208 -0
- data/assets/node_modules/uikit/tests/container.html +63 -0
- data/assets/node_modules/uikit/tests/countdown.html +122 -0
- data/assets/node_modules/uikit/tests/cover.html +183 -0
- data/assets/node_modules/uikit/tests/description-list.html +52 -0
- data/assets/node_modules/uikit/tests/divider.html +50 -0
- data/assets/node_modules/uikit/tests/dotnav.html +140 -0
- data/assets/node_modules/uikit/tests/drop.html +409 -0
- data/assets/node_modules/uikit/tests/dropdown.html +434 -0
- data/assets/node_modules/uikit/tests/flex.html +183 -0
- data/assets/node_modules/uikit/tests/form.html +615 -0
- data/assets/node_modules/uikit/tests/grid-parallax.html +118 -0
- data/assets/node_modules/uikit/tests/grid.html +622 -0
- data/assets/node_modules/uikit/tests/heading.html +154 -0
- data/assets/node_modules/uikit/tests/height-expand.html +33 -0
- data/assets/node_modules/uikit/tests/height-viewport.html +186 -0
- data/assets/node_modules/uikit/tests/icon.html +770 -0
- data/assets/node_modules/uikit/tests/iconnav.html +39 -0
- data/assets/node_modules/uikit/tests/images/animated.gif +0 -0
- data/assets/node_modules/uikit/tests/images/avatar.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/dark.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/icons.svg +24 -0
- data/assets/node_modules/uikit/tests/images/light.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/photo.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size-h.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size-v.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size1.jpg +0 -0
- data/assets/node_modules/uikit/tests/images/size2.jpg +0 -0
- data/assets/node_modules/uikit/tests/index.html +814 -0
- data/assets/node_modules/uikit/tests/js/index.js +210 -0
- data/assets/node_modules/uikit/tests/js/uikit.js +1 -0
- data/assets/node_modules/uikit/tests/label.html +29 -0
- data/assets/node_modules/uikit/tests/lightbox.html +297 -0
- data/assets/node_modules/uikit/tests/link.html +36 -0
- data/assets/node_modules/uikit/tests/list.html +223 -0
- data/assets/node_modules/uikit/tests/margin.html +190 -0
- data/assets/node_modules/uikit/tests/marker.html +44 -0
- data/assets/node_modules/uikit/tests/modal.html +500 -0
- data/assets/node_modules/uikit/tests/nav.html +356 -0
- data/assets/node_modules/uikit/tests/navbar.html +2005 -0
- data/assets/node_modules/uikit/tests/notification.html +132 -0
- data/assets/node_modules/uikit/tests/offcanvas.html +771 -0
- data/assets/node_modules/uikit/tests/overlay.html +103 -0
- data/assets/node_modules/uikit/tests/padding.html +53 -0
- data/assets/node_modules/uikit/tests/pagination.html +87 -0
- data/assets/node_modules/uikit/tests/parallax.html +229 -0
- data/assets/node_modules/uikit/tests/placeholder.html +34 -0
- data/assets/node_modules/uikit/tests/position.html +366 -0
- data/assets/node_modules/uikit/tests/progress.html +61 -0
- data/assets/node_modules/uikit/tests/scroll.html +65 -0
- data/assets/node_modules/uikit/tests/scrollspy.html +528 -0
- data/assets/node_modules/uikit/tests/search.html +376 -0
- data/assets/node_modules/uikit/tests/section.html +377 -0
- data/assets/node_modules/uikit/tests/slidenav.html +342 -0
- data/assets/node_modules/uikit/tests/slideshow.html +463 -0
- data/assets/node_modules/uikit/tests/sortable.html +317 -0
- data/assets/node_modules/uikit/tests/spinner.html +26 -0
- data/assets/node_modules/uikit/tests/sticky-navbar.html +582 -0
- data/assets/node_modules/uikit/tests/sticky.html +146 -0
- data/assets/node_modules/uikit/tests/subnav.html +114 -0
- data/assets/node_modules/uikit/tests/switcher.html +377 -0
- data/assets/node_modules/uikit/tests/tab.html +219 -0
- data/assets/node_modules/uikit/tests/table.html +310 -0
- data/assets/node_modules/uikit/tests/text.html +136 -0
- data/assets/node_modules/uikit/tests/thumbnav.html +65 -0
- data/assets/node_modules/uikit/tests/tile.html +227 -0
- data/assets/node_modules/uikit/tests/toggle.html +181 -0
- data/assets/node_modules/uikit/tests/tooltip.html +121 -0
- data/assets/node_modules/uikit/tests/totop.html +25 -0
- data/assets/node_modules/uikit/tests/transition.html +252 -0
- data/assets/node_modules/uikit/tests/upload.html +257 -0
- data/assets/node_modules/uikit/tests/utility.html +572 -0
- data/assets/node_modules/uikit/tests/visibility.html +113 -0
- data/assets/node_modules/uikit/tests/width.html +131 -0
- data/assets/node_modules/uikit/webpack.config.js +102 -0
- data/assets/node_modules/uikit/yarn.lock +3849 -0
- metadata +668 -2
@@ -0,0 +1,113 @@
|
|
1
|
+
// Name: Article
|
2
|
+
// Description: Component to create articles
|
3
|
+
//
|
4
|
+
// Component: `uk-article`
|
5
|
+
//
|
6
|
+
// Sub-objects: `uk-article-title`
|
7
|
+
// `uk-article-meta`
|
8
|
+
//
|
9
|
+
// ========================================================================
|
10
|
+
|
11
|
+
|
12
|
+
// Variables
|
13
|
+
// ========================================================================
|
14
|
+
|
15
|
+
@article-margin-top: @global-large-margin;
|
16
|
+
|
17
|
+
@article-title-font-size: @global-xxlarge-font-size;
|
18
|
+
@article-title-line-height: 1.2;
|
19
|
+
|
20
|
+
@article-meta-font-size: @global-small-font-size;
|
21
|
+
@article-meta-line-height: 1.4;
|
22
|
+
@article-meta-color: @global-muted-color;
|
23
|
+
|
24
|
+
|
25
|
+
/* ========================================================================
|
26
|
+
Component: Article
|
27
|
+
========================================================================== */
|
28
|
+
|
29
|
+
.uk-article {
|
30
|
+
.hook-article;
|
31
|
+
}
|
32
|
+
|
33
|
+
/*
|
34
|
+
* Micro clearfix
|
35
|
+
*/
|
36
|
+
|
37
|
+
.uk-article::before,
|
38
|
+
.uk-article::after {
|
39
|
+
content: "";
|
40
|
+
display: table;
|
41
|
+
}
|
42
|
+
|
43
|
+
.uk-article::after { clear: both; }
|
44
|
+
|
45
|
+
/*
|
46
|
+
* Remove margin from the last-child
|
47
|
+
*/
|
48
|
+
|
49
|
+
.uk-article > :last-child { margin-bottom: 0; }
|
50
|
+
|
51
|
+
|
52
|
+
/* Adjacent sibling
|
53
|
+
========================================================================== */
|
54
|
+
|
55
|
+
.uk-article + .uk-article {
|
56
|
+
margin-top: @article-margin-top;
|
57
|
+
.hook-article-adjacent;
|
58
|
+
}
|
59
|
+
|
60
|
+
|
61
|
+
/* Title
|
62
|
+
========================================================================== */
|
63
|
+
|
64
|
+
.uk-article-title {
|
65
|
+
font-size: @article-title-font-size;
|
66
|
+
line-height: @article-title-line-height;
|
67
|
+
.hook-article-title;
|
68
|
+
}
|
69
|
+
|
70
|
+
|
71
|
+
/* Meta
|
72
|
+
========================================================================== */
|
73
|
+
|
74
|
+
.uk-article-meta {
|
75
|
+
font-size: @article-meta-font-size;
|
76
|
+
line-height: @article-meta-line-height;
|
77
|
+
color: @article-meta-color;
|
78
|
+
.hook-article-meta;
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
// Hooks
|
83
|
+
// ========================================================================
|
84
|
+
|
85
|
+
.hook-article-misc;
|
86
|
+
|
87
|
+
.hook-article() {}
|
88
|
+
.hook-article-adjacent() {}
|
89
|
+
.hook-article-title() {}
|
90
|
+
.hook-article-meta() {}
|
91
|
+
.hook-article-misc() {}
|
92
|
+
|
93
|
+
|
94
|
+
// Inverse
|
95
|
+
// ========================================================================
|
96
|
+
|
97
|
+
@inverse-article-meta-color: @inverse-global-muted-color;
|
98
|
+
|
99
|
+
.hook-inverse() {
|
100
|
+
|
101
|
+
.uk-article-title {
|
102
|
+
.hook-inverse-article-title;
|
103
|
+
}
|
104
|
+
|
105
|
+
.uk-article-meta {
|
106
|
+
color: @inverse-article-meta-color;
|
107
|
+
.hook-inverse-article-meta;
|
108
|
+
}
|
109
|
+
|
110
|
+
}
|
111
|
+
|
112
|
+
.hook-inverse-article-title() {}
|
113
|
+
.hook-inverse-article-meta() {}
|
@@ -0,0 +1,136 @@
|
|
1
|
+
// Name: Background
|
2
|
+
// Description: Utilities for backgrounds
|
3
|
+
//
|
4
|
+
// Component: `uk-background-*`
|
5
|
+
//
|
6
|
+
// ========================================================================
|
7
|
+
|
8
|
+
|
9
|
+
// Variables
|
10
|
+
// ========================================================================
|
11
|
+
|
12
|
+
@background-default-background: @global-background;
|
13
|
+
@background-muted-background: @global-muted-background;
|
14
|
+
@background-primary-background: @global-primary-background;
|
15
|
+
@background-secondary-background: @global-secondary-background;
|
16
|
+
|
17
|
+
|
18
|
+
/* ========================================================================
|
19
|
+
Component: Background
|
20
|
+
========================================================================== */
|
21
|
+
|
22
|
+
|
23
|
+
/* Color
|
24
|
+
========================================================================== */
|
25
|
+
|
26
|
+
.uk-background-default { background-color: @background-default-background; }
|
27
|
+
.uk-background-muted { background-color: @background-muted-background; }
|
28
|
+
.uk-background-primary { background-color: @background-primary-background; }
|
29
|
+
.uk-background-secondary { background-color: @background-secondary-background; }
|
30
|
+
|
31
|
+
|
32
|
+
/* Size
|
33
|
+
========================================================================== */
|
34
|
+
|
35
|
+
.uk-background-cover,
|
36
|
+
.uk-background-contain {
|
37
|
+
background-position: 50% 50%;
|
38
|
+
background-repeat: no-repeat;
|
39
|
+
}
|
40
|
+
|
41
|
+
.uk-background-cover { background-size: cover; }
|
42
|
+
.uk-background-contain { background-size: contain; }
|
43
|
+
|
44
|
+
|
45
|
+
/* Position
|
46
|
+
========================================================================== */
|
47
|
+
|
48
|
+
.uk-background-top-left { background-position: 0 0; }
|
49
|
+
.uk-background-top-center { background-position: 50% 0; }
|
50
|
+
.uk-background-top-right { background-position: 100% 0; }
|
51
|
+
.uk-background-center-left { background-position: 0 50%; }
|
52
|
+
.uk-background-center-center { background-position: 50% 50%; }
|
53
|
+
.uk-background-center-right { background-position: 100% 50%; }
|
54
|
+
.uk-background-bottom-left { background-position: 0 100%; }
|
55
|
+
.uk-background-bottom-center { background-position: 50% 100%; }
|
56
|
+
.uk-background-bottom-right { background-position: 100% 100%; }
|
57
|
+
|
58
|
+
|
59
|
+
/* Repeat
|
60
|
+
========================================================================== */
|
61
|
+
|
62
|
+
.uk-background-norepeat { background-repeat: no-repeat; }
|
63
|
+
|
64
|
+
|
65
|
+
/* Attachment
|
66
|
+
========================================================================== */
|
67
|
+
|
68
|
+
.uk-background-fixed { background-attachment: fixed; }
|
69
|
+
|
70
|
+
/*
|
71
|
+
* Exclude touch devices because `fixed` doesn't work on iOS and Android
|
72
|
+
*/
|
73
|
+
|
74
|
+
@media (pointer: coarse) {
|
75
|
+
.uk-background-fixed { background-attachment: scroll; }
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
/* Image
|
80
|
+
========================================================================== */
|
81
|
+
|
82
|
+
/* Phone portrait and smaller */
|
83
|
+
@media (max-width: @breakpoint-xsmall-max) {
|
84
|
+
|
85
|
+
.uk-background-image\@s { background-image: none !important; }
|
86
|
+
|
87
|
+
}
|
88
|
+
|
89
|
+
/* Phone landscape and smaller */
|
90
|
+
@media (max-width: @breakpoint-small-max) {
|
91
|
+
|
92
|
+
.uk-background-image\@m { background-image: none !important; }
|
93
|
+
|
94
|
+
}
|
95
|
+
|
96
|
+
/* Tablet landscape and smaller */
|
97
|
+
@media (max-width: @breakpoint-medium-max) {
|
98
|
+
|
99
|
+
.uk-background-image\@l { background-image: none !important; }
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
/* Desktop and smaller */
|
104
|
+
@media (max-width: @breakpoint-large-max) {
|
105
|
+
|
106
|
+
.uk-background-image\@xl {background-image: none !important; }
|
107
|
+
|
108
|
+
}
|
109
|
+
|
110
|
+
|
111
|
+
/* Blend modes
|
112
|
+
========================================================================== */
|
113
|
+
|
114
|
+
.uk-background-blend-multiply { background-blend-mode: multiply; }
|
115
|
+
.uk-background-blend-screen { background-blend-mode: screen; }
|
116
|
+
.uk-background-blend-overlay { background-blend-mode: overlay; }
|
117
|
+
.uk-background-blend-darken { background-blend-mode: darken; }
|
118
|
+
.uk-background-blend-lighten { background-blend-mode: lighten; }
|
119
|
+
.uk-background-blend-color-dodge { background-blend-mode: color-dodge; }
|
120
|
+
.uk-background-blend-color-burn { background-blend-mode: color-burn; }
|
121
|
+
.uk-background-blend-hard-light { background-blend-mode: hard-light; }
|
122
|
+
.uk-background-blend-soft-light { background-blend-mode: soft-light; }
|
123
|
+
.uk-background-blend-difference { background-blend-mode: difference; }
|
124
|
+
.uk-background-blend-exclusion { background-blend-mode: exclusion; }
|
125
|
+
.uk-background-blend-hue { background-blend-mode: hue; }
|
126
|
+
.uk-background-blend-saturation { background-blend-mode: saturation; }
|
127
|
+
.uk-background-blend-color { background-blend-mode: color; }
|
128
|
+
.uk-background-blend-luminosity { background-blend-mode: luminosity; }
|
129
|
+
|
130
|
+
|
131
|
+
// Hooks
|
132
|
+
// ========================================================================
|
133
|
+
|
134
|
+
.hook-background-misc;
|
135
|
+
|
136
|
+
.hook-background-misc() {}
|
@@ -0,0 +1,104 @@
|
|
1
|
+
// Name: Badge
|
2
|
+
// Description: Component to create notification badges
|
3
|
+
|
4
|
+
// Component: `uk-badge`
|
5
|
+
//
|
6
|
+
// ========================================================================
|
7
|
+
|
8
|
+
|
9
|
+
// Variables
|
10
|
+
// ========================================================================
|
11
|
+
|
12
|
+
@badge-size: 22px;
|
13
|
+
@badge-padding-vertical: 0;
|
14
|
+
@badge-padding-horizontal: 5px;
|
15
|
+
@badge-border-radius: 500px;
|
16
|
+
@badge-background: @global-primary-background;
|
17
|
+
@badge-color: @global-inverse-color;
|
18
|
+
@badge-font-size: @global-small-font-size;
|
19
|
+
|
20
|
+
@badge-hover-color: @global-inverse-color;
|
21
|
+
|
22
|
+
|
23
|
+
/* ========================================================================
|
24
|
+
Component: Badge
|
25
|
+
========================================================================== */
|
26
|
+
|
27
|
+
/*
|
28
|
+
* 1. Style
|
29
|
+
* 2. Center child vertically and horizontally
|
30
|
+
*/
|
31
|
+
|
32
|
+
.uk-badge {
|
33
|
+
box-sizing: border-box;
|
34
|
+
min-width: @badge-size;
|
35
|
+
height: @badge-size;
|
36
|
+
line-height: @badge-size;
|
37
|
+
padding: @badge-padding-vertical @badge-padding-horizontal;
|
38
|
+
border-radius: @badge-border-radius;
|
39
|
+
vertical-align: middle;
|
40
|
+
/* 1 */
|
41
|
+
background: @badge-background;
|
42
|
+
color: @badge-color;
|
43
|
+
font-size: @badge-font-size;
|
44
|
+
/* 2 */
|
45
|
+
display: -ms-inline-flexbox;
|
46
|
+
display: -webkit-inline-flex;
|
47
|
+
display: inline-flex;
|
48
|
+
-ms-flex-pack: center;
|
49
|
+
-webkit-justify-content: center;
|
50
|
+
justify-content: center;
|
51
|
+
-ms-flex-align: center;
|
52
|
+
-webkit-align-items: center;
|
53
|
+
align-items: center;
|
54
|
+
.hook-badge;
|
55
|
+
}
|
56
|
+
|
57
|
+
/*
|
58
|
+
* Required for `a`
|
59
|
+
*/
|
60
|
+
|
61
|
+
.uk-badge:hover,
|
62
|
+
.uk-badge:focus {
|
63
|
+
color: @badge-hover-color;
|
64
|
+
text-decoration: none;
|
65
|
+
outline: none;
|
66
|
+
.hook-badge-hover;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
// Hooks
|
71
|
+
// ========================================================================
|
72
|
+
|
73
|
+
.hook-badge-misc;
|
74
|
+
|
75
|
+
.hook-badge() {}
|
76
|
+
.hook-badge-hover() {}
|
77
|
+
.hook-badge-misc() {}
|
78
|
+
|
79
|
+
|
80
|
+
// Inverse
|
81
|
+
// ========================================================================
|
82
|
+
|
83
|
+
@inverse-badge-background: @inverse-global-primary-background;
|
84
|
+
@inverse-badge-color: @inverse-global-inverse-color;
|
85
|
+
@inverse-badge-hover-color: @inverse-global-inverse-color;
|
86
|
+
|
87
|
+
.hook-inverse() {
|
88
|
+
|
89
|
+
.uk-badge {
|
90
|
+
background-color: @inverse-badge-background;
|
91
|
+
color: @inverse-badge-color;
|
92
|
+
.hook-inverse-badge;
|
93
|
+
}
|
94
|
+
|
95
|
+
.uk-badge:hover,
|
96
|
+
.uk-badge:focus {
|
97
|
+
color: @inverse-badge-hover-color;
|
98
|
+
.hook-inverse-badge-hover;
|
99
|
+
}
|
100
|
+
|
101
|
+
}
|
102
|
+
|
103
|
+
.hook-inverse-badge() {}
|
104
|
+
.hook-inverse-badge-hover() {}
|
@@ -0,0 +1,740 @@
|
|
1
|
+
// Name: Base
|
2
|
+
// Description: Default values for HTML elements
|
3
|
+
//
|
4
|
+
// Component: `uk-link`
|
5
|
+
// `uk-h1`, `uk-h2`, `uk-h3`, `uk-h4`, `uk-h5`, `uk-h6`
|
6
|
+
// `uk-hr`
|
7
|
+
//
|
8
|
+
// ========================================================================
|
9
|
+
|
10
|
+
|
11
|
+
// Variables
|
12
|
+
// ========================================================================
|
13
|
+
|
14
|
+
@base-body-background: @global-background;
|
15
|
+
@base-body-font-family: @global-font-family;
|
16
|
+
@base-body-font-weight: normal;
|
17
|
+
@base-body-font-size: @global-font-size;
|
18
|
+
@base-body-line-height: @global-line-height;
|
19
|
+
@base-body-color: @global-color;
|
20
|
+
|
21
|
+
@base-link-color: @global-link-color;
|
22
|
+
@base-link-text-decoration: none;
|
23
|
+
@base-link-hover-color: @global-link-hover-color;
|
24
|
+
@base-link-hover-text-decoration: underline;
|
25
|
+
|
26
|
+
@base-code-font-size: @global-small-font-size;
|
27
|
+
@base-code-font-family: Consolas, monaco, monospace;
|
28
|
+
@base-code-color: @global-danger-background;
|
29
|
+
@base-em-color: @global-danger-background;
|
30
|
+
@base-ins-background: #ffd;
|
31
|
+
@base-ins-color: @global-color;
|
32
|
+
@base-mark-background: #ffd;
|
33
|
+
@base-mark-color: @global-color;
|
34
|
+
@base-quote-font-style: italic;
|
35
|
+
@base-small-font-size: 80%;
|
36
|
+
|
37
|
+
@base-margin-vertical: @global-margin;
|
38
|
+
|
39
|
+
@base-heading-font-family: @global-font-family;
|
40
|
+
@base-heading-font-weight: normal;
|
41
|
+
@base-heading-color: @global-emphasis-color;
|
42
|
+
@base-heading-text-transform: none;
|
43
|
+
@base-heading-margin-top: @global-medium-margin;
|
44
|
+
@base-h1-font-size: @global-xxlarge-font-size;
|
45
|
+
@base-h1-line-height: 1.2;
|
46
|
+
@base-h2-font-size: @global-xlarge-font-size;
|
47
|
+
@base-h2-line-height: 1.3;
|
48
|
+
@base-h3-font-size: @global-large-font-size;
|
49
|
+
@base-h3-line-height: 1.4;
|
50
|
+
@base-h4-font-size: @global-medium-font-size;
|
51
|
+
@base-h4-line-height: 1.4;
|
52
|
+
@base-h5-font-size: @global-font-size;
|
53
|
+
@base-h5-line-height: 1.4;
|
54
|
+
@base-h6-font-size: @global-small-font-size;
|
55
|
+
@base-h6-line-height: 1.4;
|
56
|
+
|
57
|
+
@base-list-padding-left: 30px;
|
58
|
+
|
59
|
+
@base-hr-margin-vertical: @global-margin;
|
60
|
+
@base-hr-border-width: @global-border-width;
|
61
|
+
@base-hr-border: @global-border;
|
62
|
+
|
63
|
+
@base-blockquote-font-size: @global-medium-font-size;
|
64
|
+
@base-blockquote-line-height: 1.5;
|
65
|
+
@base-blockquote-font-style: italic;
|
66
|
+
@base-blockquote-margin-vertical: @global-margin;
|
67
|
+
@base-blockquote-footer-margin-top: @global-small-margin;
|
68
|
+
@base-blockquote-footer-font-size: @global-small-font-size;
|
69
|
+
@base-blockquote-footer-line-height: 1.5;
|
70
|
+
|
71
|
+
@base-pre-font-size: @global-small-font-size;
|
72
|
+
@base-pre-line-height: 1.5;
|
73
|
+
@base-pre-font-family: @base-code-font-family;
|
74
|
+
@base-pre-color: @global-color;
|
75
|
+
|
76
|
+
@base-selection-background: #39f;
|
77
|
+
@base-selection-color: @global-inverse-color;
|
78
|
+
|
79
|
+
|
80
|
+
/* ========================================================================
|
81
|
+
Component: Base
|
82
|
+
========================================================================== */
|
83
|
+
|
84
|
+
/*
|
85
|
+
* 1. Set `font-size` to support `rem` units
|
86
|
+
* Not using `font` property because a leading hyphen (e.g. -apple-system) causes the font to break in IE11 and Edge
|
87
|
+
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
|
88
|
+
* 3. Style
|
89
|
+
*/
|
90
|
+
|
91
|
+
html {
|
92
|
+
/* 1 */
|
93
|
+
font-family: @base-body-font-family;
|
94
|
+
font-size: @base-body-font-size;
|
95
|
+
font-weight: @base-body-font-weight;
|
96
|
+
line-height: @base-body-line-height;
|
97
|
+
/* 2 */
|
98
|
+
-webkit-text-size-adjust: 100%;
|
99
|
+
-ms-text-size-adjust: 100%;
|
100
|
+
/* 3 */
|
101
|
+
background: @base-body-background;
|
102
|
+
color: @base-body-color;
|
103
|
+
.hook-base-body;
|
104
|
+
}
|
105
|
+
|
106
|
+
/*
|
107
|
+
* Removes default margin.
|
108
|
+
*/
|
109
|
+
|
110
|
+
body { margin: 0; }
|
111
|
+
|
112
|
+
|
113
|
+
/* Links
|
114
|
+
========================================================================== */
|
115
|
+
|
116
|
+
/*
|
117
|
+
* 1. Remove the gray background on active links in IE 10.
|
118
|
+
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
|
119
|
+
*/
|
120
|
+
|
121
|
+
a {
|
122
|
+
/* 1 */
|
123
|
+
background-color: transparent;
|
124
|
+
/* 2 */
|
125
|
+
-webkit-text-decoration-skip: objects;
|
126
|
+
}
|
127
|
+
|
128
|
+
/*
|
129
|
+
* Remove the outline on focused links when they are also active or hovered
|
130
|
+
*/
|
131
|
+
|
132
|
+
a:active,
|
133
|
+
a:hover { outline: none; }
|
134
|
+
|
135
|
+
/*
|
136
|
+
* Style
|
137
|
+
*/
|
138
|
+
|
139
|
+
a,
|
140
|
+
.uk-link {
|
141
|
+
color: @base-link-color;
|
142
|
+
text-decoration: @base-link-text-decoration;
|
143
|
+
cursor: pointer;
|
144
|
+
.hook-base-link;
|
145
|
+
}
|
146
|
+
|
147
|
+
a:hover,
|
148
|
+
.uk-link:hover {
|
149
|
+
color: @base-link-hover-color;
|
150
|
+
text-decoration: @base-link-hover-text-decoration;
|
151
|
+
.hook-base-link-hover;
|
152
|
+
}
|
153
|
+
|
154
|
+
|
155
|
+
/* Text-level semantics
|
156
|
+
========================================================================== */
|
157
|
+
|
158
|
+
/*
|
159
|
+
* 1. Remove the bottom border in Firefox 39-.
|
160
|
+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
161
|
+
*/
|
162
|
+
|
163
|
+
abbr[title] {
|
164
|
+
border-bottom: none; /* 1 */
|
165
|
+
text-decoration: underline; /* 2 */
|
166
|
+
text-decoration: underline dotted; /* 2 */
|
167
|
+
}
|
168
|
+
|
169
|
+
|
170
|
+
/*
|
171
|
+
* 1. Prevent the duplicate application of `bolder` by the next rule in Safari 6.
|
172
|
+
* 2. Add the correct font weight in Chrome, Edge, and Safari.
|
173
|
+
*/
|
174
|
+
|
175
|
+
/* 1 */
|
176
|
+
b,
|
177
|
+
strong { font-weight: inherit; }
|
178
|
+
|
179
|
+
/* 2 */
|
180
|
+
b,
|
181
|
+
strong { font-weight: bolder; }
|
182
|
+
|
183
|
+
/*
|
184
|
+
* 1. Correct the odd `em` font sizing in all browsers.
|
185
|
+
* 2. Consolas has a better baseline in running text compared to `Courier`
|
186
|
+
* 3. Style
|
187
|
+
*/
|
188
|
+
|
189
|
+
:not(pre) > code,
|
190
|
+
:not(pre) > kbd,
|
191
|
+
:not(pre) > samp {
|
192
|
+
/* 1 */
|
193
|
+
font-size: @base-code-font-size;
|
194
|
+
/* 2 */
|
195
|
+
font-family: @base-code-font-family;
|
196
|
+
/* 3 */
|
197
|
+
color: @base-code-color;
|
198
|
+
white-space: nowrap;
|
199
|
+
.hook-base-code;
|
200
|
+
}
|
201
|
+
|
202
|
+
/*
|
203
|
+
* Emphasize
|
204
|
+
*/
|
205
|
+
|
206
|
+
em { color: @base-em-color; }
|
207
|
+
|
208
|
+
/*
|
209
|
+
* Insert
|
210
|
+
*/
|
211
|
+
|
212
|
+
ins {
|
213
|
+
background: @base-ins-background;
|
214
|
+
color: @base-ins-color;
|
215
|
+
text-decoration: none;
|
216
|
+
}
|
217
|
+
|
218
|
+
/*
|
219
|
+
* Mark
|
220
|
+
*/
|
221
|
+
|
222
|
+
mark {
|
223
|
+
background: @base-mark-background;
|
224
|
+
color: @base-mark-color;
|
225
|
+
}
|
226
|
+
|
227
|
+
/*
|
228
|
+
* Quote
|
229
|
+
*/
|
230
|
+
|
231
|
+
q { font-style: @base-quote-font-style; }
|
232
|
+
|
233
|
+
/*
|
234
|
+
* Add the correct font size in all browsers.
|
235
|
+
*/
|
236
|
+
|
237
|
+
small { font-size: @base-small-font-size; }
|
238
|
+
|
239
|
+
/*
|
240
|
+
* Prevents `sub` and `sup` affecting `line-height` in all browsers.
|
241
|
+
*/
|
242
|
+
|
243
|
+
sub,
|
244
|
+
sup {
|
245
|
+
font-size: 75%;
|
246
|
+
line-height: 0;
|
247
|
+
position: relative;
|
248
|
+
vertical-align: baseline;
|
249
|
+
}
|
250
|
+
|
251
|
+
sup { top: -0.5em; }
|
252
|
+
sub { bottom: -0.25em; }
|
253
|
+
|
254
|
+
|
255
|
+
/* Embedded content
|
256
|
+
========================================================================== */
|
257
|
+
|
258
|
+
/*
|
259
|
+
* Remove the gap between embedded content and the bottom of their containers.
|
260
|
+
*/
|
261
|
+
|
262
|
+
audio,
|
263
|
+
canvas,
|
264
|
+
iframe,
|
265
|
+
img,
|
266
|
+
svg,
|
267
|
+
video { vertical-align: middle; }
|
268
|
+
|
269
|
+
/*
|
270
|
+
* Responsiveness
|
271
|
+
* 1. Set a maximum width
|
272
|
+
* 2. Auto scale the height. Only needed if `height` attribute is present
|
273
|
+
* 2. Corrects `max-width` behavior if padding and border are used
|
274
|
+
*/
|
275
|
+
|
276
|
+
audio,
|
277
|
+
canvas,
|
278
|
+
img,
|
279
|
+
video {
|
280
|
+
/* 1 */
|
281
|
+
max-width: 100%;
|
282
|
+
/* 2 */
|
283
|
+
height: auto;
|
284
|
+
/* 3 */
|
285
|
+
box-sizing: border-box;
|
286
|
+
}
|
287
|
+
|
288
|
+
/*
|
289
|
+
* Remove the border on images inside links in IE 10-.
|
290
|
+
*/
|
291
|
+
|
292
|
+
img { border-style: none; }
|
293
|
+
|
294
|
+
/*
|
295
|
+
* Hide the overflow in IE.
|
296
|
+
*/
|
297
|
+
|
298
|
+
svg:not(:root) { overflow: hidden; }
|
299
|
+
|
300
|
+
|
301
|
+
/* Block elements
|
302
|
+
========================================================================== */
|
303
|
+
|
304
|
+
/*
|
305
|
+
* Margins
|
306
|
+
*/
|
307
|
+
|
308
|
+
p,
|
309
|
+
ul,
|
310
|
+
ol,
|
311
|
+
dl,
|
312
|
+
pre,
|
313
|
+
address,
|
314
|
+
fieldset,
|
315
|
+
figure { margin: 0 0 @base-margin-vertical 0; }
|
316
|
+
|
317
|
+
/* Add margin if adjacent element */
|
318
|
+
* + p,
|
319
|
+
* + ul,
|
320
|
+
* + ol,
|
321
|
+
* + dl,
|
322
|
+
* + pre,
|
323
|
+
* + address,
|
324
|
+
* + fieldset,
|
325
|
+
* + figure { margin-top: @base-margin-vertical; }
|
326
|
+
|
327
|
+
|
328
|
+
/* Headings
|
329
|
+
========================================================================== */
|
330
|
+
|
331
|
+
h1, .uk-h1,
|
332
|
+
h2, .uk-h2,
|
333
|
+
h3, .uk-h3,
|
334
|
+
h4, .uk-h4,
|
335
|
+
h5, .uk-h5,
|
336
|
+
h6, .uk-h6 {
|
337
|
+
margin: 0 0 @base-margin-vertical 0;
|
338
|
+
font-family: @base-heading-font-family;
|
339
|
+
font-weight: @base-heading-font-weight;
|
340
|
+
color: @base-heading-color;
|
341
|
+
text-transform: @base-heading-text-transform;
|
342
|
+
.hook-base-heading;
|
343
|
+
}
|
344
|
+
|
345
|
+
/* Add margin if adjacent element */
|
346
|
+
* + h1, * + .uk-h1,
|
347
|
+
* + h2, * + .uk-h2,
|
348
|
+
* + h3, * + .uk-h3,
|
349
|
+
* + h4, * + .uk-h4,
|
350
|
+
* + h5, * + .uk-h5,
|
351
|
+
* + h6, * + .uk-h6 { margin-top: @base-heading-margin-top; }
|
352
|
+
|
353
|
+
/*
|
354
|
+
* Sizes
|
355
|
+
*/
|
356
|
+
|
357
|
+
h1, .uk-h1 {
|
358
|
+
font-size: @base-h1-font-size;
|
359
|
+
line-height: @base-h1-line-height;
|
360
|
+
.hook-base-h1;
|
361
|
+
}
|
362
|
+
|
363
|
+
h2, .uk-h2 {
|
364
|
+
font-size: @base-h2-font-size;
|
365
|
+
line-height: @base-h2-line-height;
|
366
|
+
.hook-base-h2;
|
367
|
+
}
|
368
|
+
|
369
|
+
h3, .uk-h3 {
|
370
|
+
font-size: @base-h3-font-size;
|
371
|
+
line-height: @base-h3-line-height;
|
372
|
+
.hook-base-h3;
|
373
|
+
}
|
374
|
+
|
375
|
+
h4, .uk-h4 {
|
376
|
+
font-size: @base-h4-font-size;
|
377
|
+
line-height: @base-h4-line-height;
|
378
|
+
.hook-base-h4;
|
379
|
+
}
|
380
|
+
|
381
|
+
h5, .uk-h5 {
|
382
|
+
font-size: @base-h5-font-size;
|
383
|
+
line-height: @base-h5-line-height;
|
384
|
+
.hook-base-h5;
|
385
|
+
}
|
386
|
+
|
387
|
+
h6, .uk-h6 {
|
388
|
+
font-size: @base-h6-font-size;
|
389
|
+
line-height: @base-h6-line-height;
|
390
|
+
.hook-base-h6;
|
391
|
+
}
|
392
|
+
|
393
|
+
|
394
|
+
/* Lists
|
395
|
+
========================================================================== */
|
396
|
+
|
397
|
+
ul,
|
398
|
+
ol { padding-left: @base-list-padding-left; }
|
399
|
+
|
400
|
+
/*
|
401
|
+
* Reset margin for nested lists
|
402
|
+
*/
|
403
|
+
|
404
|
+
ul > li > ul,
|
405
|
+
ul > li > ol,
|
406
|
+
ol > li > ol,
|
407
|
+
ol > li > ul { margin: 0; }
|
408
|
+
|
409
|
+
|
410
|
+
/* Description lists
|
411
|
+
========================================================================== */
|
412
|
+
|
413
|
+
dt { font-weight: bold; }
|
414
|
+
dd { margin-left: 0; }
|
415
|
+
|
416
|
+
|
417
|
+
/* Horizontal rules
|
418
|
+
========================================================================== */
|
419
|
+
|
420
|
+
/*
|
421
|
+
* 1. Add the correct box sizing and height in Firefox.
|
422
|
+
* 2. Show the overflow in Edge and IE.
|
423
|
+
* 3. Add the correct text-align in Edge and IE.
|
424
|
+
* 4. Style
|
425
|
+
*/
|
426
|
+
|
427
|
+
hr, .uk-hr {
|
428
|
+
/* 1 */
|
429
|
+
box-sizing: content-box;
|
430
|
+
height: 0;
|
431
|
+
/* 2 */
|
432
|
+
overflow: visible;
|
433
|
+
/* 3 */
|
434
|
+
text-align: inherit;
|
435
|
+
/* 4 */
|
436
|
+
margin: 0 0 @base-hr-margin-vertical 0;
|
437
|
+
border: 0;
|
438
|
+
border-top: @base-hr-border-width solid @base-hr-border;
|
439
|
+
.hook-base-hr;
|
440
|
+
}
|
441
|
+
|
442
|
+
/* Add margin if adjacent element */
|
443
|
+
* + hr,
|
444
|
+
* + .uk-hr { margin-top: @base-hr-margin-vertical }
|
445
|
+
|
446
|
+
|
447
|
+
/* Address
|
448
|
+
========================================================================== */
|
449
|
+
|
450
|
+
address { font-style: normal; }
|
451
|
+
|
452
|
+
|
453
|
+
/* Blockquotes
|
454
|
+
========================================================================== */
|
455
|
+
|
456
|
+
blockquote {
|
457
|
+
margin: 0 0 @base-blockquote-margin-vertical 0;
|
458
|
+
font-size: @base-blockquote-font-size;
|
459
|
+
line-height: @base-blockquote-line-height;
|
460
|
+
font-style: @base-blockquote-font-style;
|
461
|
+
.hook-base-blockquote;
|
462
|
+
}
|
463
|
+
|
464
|
+
/* Add margin if adjacent element */
|
465
|
+
* + blockquote { margin-top: @base-blockquote-margin-vertical; }
|
466
|
+
|
467
|
+
/*
|
468
|
+
* Content
|
469
|
+
*/
|
470
|
+
|
471
|
+
blockquote p:last-of-type { margin-bottom: 0; }
|
472
|
+
|
473
|
+
blockquote footer {
|
474
|
+
margin-top: @base-blockquote-footer-margin-top;
|
475
|
+
font-size: @base-blockquote-footer-font-size;
|
476
|
+
line-height: @base-blockquote-footer-line-height;
|
477
|
+
.hook-base-blockquote-footer;
|
478
|
+
}
|
479
|
+
|
480
|
+
|
481
|
+
/* Preformatted text
|
482
|
+
========================================================================== */
|
483
|
+
|
484
|
+
/*
|
485
|
+
* 1. Contain overflow in all browsers.
|
486
|
+
* 2. Override UA
|
487
|
+
*/
|
488
|
+
|
489
|
+
pre {
|
490
|
+
font: @base-pre-font-size e("/") @base-pre-line-height @base-pre-font-family;
|
491
|
+
color: @base-pre-color;
|
492
|
+
-moz-tab-size: 4;
|
493
|
+
tab-size: 4;
|
494
|
+
/* 1 */
|
495
|
+
overflow: auto;
|
496
|
+
.hook-base-pre;
|
497
|
+
}
|
498
|
+
|
499
|
+
pre code { font-family: @base-pre-font-family; }
|
500
|
+
|
501
|
+
|
502
|
+
/* Selection pseudo-element
|
503
|
+
========================================================================== */
|
504
|
+
|
505
|
+
::-moz-selection {
|
506
|
+
background: @base-selection-background;
|
507
|
+
color: @base-selection-color;
|
508
|
+
text-shadow: none;
|
509
|
+
}
|
510
|
+
|
511
|
+
::selection {
|
512
|
+
background: @base-selection-background;
|
513
|
+
color: @base-selection-color;
|
514
|
+
text-shadow: none;
|
515
|
+
}
|
516
|
+
|
517
|
+
|
518
|
+
/* HTML5 elements
|
519
|
+
========================================================================== */
|
520
|
+
|
521
|
+
/*
|
522
|
+
* Add the correct display in IE 9-.
|
523
|
+
* 1. Add the correct display in Edge, IE, and Firefox.
|
524
|
+
* 2. Add the correct display in IE.
|
525
|
+
*/
|
526
|
+
|
527
|
+
article,
|
528
|
+
aside,
|
529
|
+
details, /* 1 */
|
530
|
+
figcaption,
|
531
|
+
figure,
|
532
|
+
footer,
|
533
|
+
header,
|
534
|
+
main, /* 2 */
|
535
|
+
nav,
|
536
|
+
section,
|
537
|
+
summary { /* 1 */
|
538
|
+
display: block;
|
539
|
+
}
|
540
|
+
|
541
|
+
/*
|
542
|
+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
543
|
+
*/
|
544
|
+
|
545
|
+
progress { vertical-align: baseline; }
|
546
|
+
|
547
|
+
/*
|
548
|
+
* Add the correct display in IE 10-.
|
549
|
+
* 1. Add the correct display in IE.
|
550
|
+
*/
|
551
|
+
|
552
|
+
template, /* 1 */
|
553
|
+
[hidden] { display: none; }
|
554
|
+
|
555
|
+
|
556
|
+
/* Iframe
|
557
|
+
========================================================================== */
|
558
|
+
|
559
|
+
iframe { border: 0; }
|
560
|
+
|
561
|
+
|
562
|
+
/* Prevent the 300ms delay for touchscreen interactions
|
563
|
+
========================================================================== */
|
564
|
+
|
565
|
+
/*
|
566
|
+
* Most browsers prevent the 300ms delay automatically for sites that use the `width=device-width` property.
|
567
|
+
* For Safari on iOS 9.3+, IE 11 and Edge on desktops and IE 11 on Windows Phone 8.1 it must be applied manually.
|
568
|
+
*/
|
569
|
+
|
570
|
+
a,
|
571
|
+
area,
|
572
|
+
button,
|
573
|
+
input,
|
574
|
+
label,
|
575
|
+
select,
|
576
|
+
summary,
|
577
|
+
textarea { touch-action: manipulation; }
|
578
|
+
|
579
|
+
|
580
|
+
/* Pass media breakpoints to JS
|
581
|
+
========================================================================== */
|
582
|
+
|
583
|
+
/*
|
584
|
+
* Breakpoints
|
585
|
+
*/
|
586
|
+
|
587
|
+
.var-media-s:before { content: '@{breakpoint-small}'; }
|
588
|
+
.var-media-m:before { content: '@{breakpoint-medium}'; }
|
589
|
+
.var-media-l:before { content: '@{breakpoint-large}'; }
|
590
|
+
.var-media-xl:before { content: '@{breakpoint-xlarge}'; }
|
591
|
+
|
592
|
+
|
593
|
+
// Hooks
|
594
|
+
// ========================================================================
|
595
|
+
|
596
|
+
.hook-base-misc;
|
597
|
+
|
598
|
+
.hook-base-body() {}
|
599
|
+
.hook-base-link() {}
|
600
|
+
.hook-base-link-hover() {}
|
601
|
+
.hook-base-code() {}
|
602
|
+
.hook-base-heading() {}
|
603
|
+
.hook-base-h1() {}
|
604
|
+
.hook-base-h2() {}
|
605
|
+
.hook-base-h3() {}
|
606
|
+
.hook-base-h4() {}
|
607
|
+
.hook-base-h5() {}
|
608
|
+
.hook-base-h6() {}
|
609
|
+
.hook-base-hr() {}
|
610
|
+
.hook-base-blockquote() {}
|
611
|
+
.hook-base-blockquote-footer() {}
|
612
|
+
.hook-base-pre() {}
|
613
|
+
.hook-base-misc() {}
|
614
|
+
|
615
|
+
|
616
|
+
// Inverse
|
617
|
+
// ========================================================================
|
618
|
+
|
619
|
+
@inverse-base-color: @inverse-global-color;
|
620
|
+
@inverse-base-link-color: @inverse-global-emphasis-color;
|
621
|
+
@inverse-base-link-hover-color: @inverse-global-emphasis-color;
|
622
|
+
@inverse-base-code-color: @inverse-global-color;
|
623
|
+
@inverse-base-em-color: @inverse-global-emphasis-color;
|
624
|
+
@inverse-base-heading-color: @inverse-global-emphasis-color;
|
625
|
+
@inverse-base-hr-border: @inverse-global-border;
|
626
|
+
|
627
|
+
.hook-inverse() {
|
628
|
+
|
629
|
+
color: @inverse-base-color;
|
630
|
+
|
631
|
+
// Base
|
632
|
+
// ========================================================================
|
633
|
+
|
634
|
+
//
|
635
|
+
// Link
|
636
|
+
//
|
637
|
+
|
638
|
+
a,
|
639
|
+
.uk-link {
|
640
|
+
color: @inverse-base-link-color;
|
641
|
+
.hook-inverse-base-link;
|
642
|
+
}
|
643
|
+
|
644
|
+
a:hover,
|
645
|
+
.uk-link:hover {
|
646
|
+
color: @inverse-base-link-hover-color;
|
647
|
+
.hook-inverse-base-link-hover;
|
648
|
+
}
|
649
|
+
|
650
|
+
//
|
651
|
+
// Code
|
652
|
+
//
|
653
|
+
|
654
|
+
:not(pre) > code,
|
655
|
+
:not(pre) > kbd,
|
656
|
+
:not(pre) > samp {
|
657
|
+
color: @inverse-base-code-color;
|
658
|
+
.hook-inverse-base-code;
|
659
|
+
}
|
660
|
+
|
661
|
+
//
|
662
|
+
// Emphasize
|
663
|
+
//
|
664
|
+
|
665
|
+
em { color: @inverse-base-em-color; }
|
666
|
+
|
667
|
+
//
|
668
|
+
// Headings
|
669
|
+
//
|
670
|
+
|
671
|
+
h1, .uk-h1,
|
672
|
+
h2, .uk-h2,
|
673
|
+
h3, .uk-h3,
|
674
|
+
h4, .uk-h4,
|
675
|
+
h5, .uk-h5,
|
676
|
+
h6, .uk-h6 {
|
677
|
+
color: @inverse-base-heading-color;
|
678
|
+
.hook-inverse-base-heading;
|
679
|
+
}
|
680
|
+
|
681
|
+
h1, .uk-h1 {
|
682
|
+
.hook-inverse-base-h1;
|
683
|
+
}
|
684
|
+
|
685
|
+
h2, .uk-h2 {
|
686
|
+
.hook-inverse-base-h2;
|
687
|
+
}
|
688
|
+
|
689
|
+
h3, .uk-h3 {
|
690
|
+
.hook-inverse-base-h3;
|
691
|
+
}
|
692
|
+
|
693
|
+
h4, .uk-h4 {
|
694
|
+
.hook-inverse-base-h4;
|
695
|
+
}
|
696
|
+
|
697
|
+
h5, .uk-h5 {
|
698
|
+
.hook-inverse-base-h5;
|
699
|
+
}
|
700
|
+
|
701
|
+
h6, .uk-h6 {
|
702
|
+
.hook-inverse-base-h6;
|
703
|
+
}
|
704
|
+
|
705
|
+
//
|
706
|
+
// Blockquotes
|
707
|
+
//
|
708
|
+
|
709
|
+
blockquote {
|
710
|
+
.hook-inverse-base-blockquote;
|
711
|
+
}
|
712
|
+
|
713
|
+
blockquote footer {
|
714
|
+
.hook-inverse-base-blockquote-footer;
|
715
|
+
}
|
716
|
+
|
717
|
+
//
|
718
|
+
// Horizontal rules
|
719
|
+
//
|
720
|
+
|
721
|
+
hr, .uk-hr {
|
722
|
+
border-top-color: @inverse-base-hr-border;
|
723
|
+
.hook-inverse-base-hr;
|
724
|
+
}
|
725
|
+
|
726
|
+
}
|
727
|
+
|
728
|
+
.hook-inverse-base-link() {}
|
729
|
+
.hook-inverse-base-link-hover() {}
|
730
|
+
.hook-inverse-base-code() {}
|
731
|
+
.hook-inverse-base-heading() {}
|
732
|
+
.hook-inverse-base-h1() {}
|
733
|
+
.hook-inverse-base-h2() {}
|
734
|
+
.hook-inverse-base-h3() {}
|
735
|
+
.hook-inverse-base-h4() {}
|
736
|
+
.hook-inverse-base-h5() {}
|
737
|
+
.hook-inverse-base-h6() {}
|
738
|
+
.hook-inverse-base-blockquote() {}
|
739
|
+
.hook-inverse-base-blockquote-footer() {}
|
740
|
+
.hook-inverse-base-hr() {}
|