@thegetty/quire-cli 0.20.3 → 0.20.4
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/CHANGELOG.md +46 -0
- package/bin/.DS_Store +0 -0
- package/bin/go-iiif/.DS_Store +0 -0
- package/bin/index.js +2 -0
- package/bin/starters/.DS_Store +0 -0
- package/bin/starters/README.md +0 -0
- package/bin/starters/default/.circleci/config.yml +98 -0
- package/bin/starters/default/.gitignore +14 -0
- package/bin/starters/default/.nojekyll +0 -0
- package/bin/starters/default/CHANGELOG.md +38 -0
- package/bin/starters/default/README.md +25 -0
- package/bin/starters/default/bin/deploy.sh +25 -0
- package/bin/starters/default/config/_default/config.yml +53 -0
- package/bin/starters/default/config/development/config.yml +14 -0
- package/bin/starters/default/config/environments/dev.yml +14 -0
- package/bin/starters/default/config/environments/github.yml +15 -0
- package/bin/starters/default/config/environments/netlify.yml +18 -0
- package/bin/starters/default/config/epub.yml +15 -0
- package/bin/starters/default/config/pdf.yml +16 -0
- package/bin/starters/default/config/site.yml +13 -0
- package/bin/starters/default/config.yml +53 -0
- package/bin/starters/default/content/about.md +20 -0
- package/bin/starters/default/content/bibliography.md +7 -0
- package/bin/starters/default/content/catalogue/1.md +28 -0
- package/bin/starters/default/content/catalogue/2.md +29 -0
- package/bin/starters/default/content/catalogue/3.md +20 -0
- package/bin/starters/default/content/catalogue/4.md +22 -0
- package/bin/starters/default/content/catalogue/catalogue-index.md +8 -0
- package/bin/starters/default/content/contents.md +7 -0
- package/bin/starters/default/content/contributors.md +7 -0
- package/bin/starters/default/content/cover.md +11 -0
- package/bin/starters/default/content/essay.md +80 -0
- package/bin/starters/default/content/intro.md +21 -0
- package/bin/starters/default/content/search-index.md +8 -0
- package/bin/starters/default/data/figures.yml +90 -0
- package/bin/starters/default/data/objects.yml +49 -0
- package/bin/starters/default/data/publication.yml +149 -0
- package/bin/starters/default/data/references.yml +11 -0
- package/bin/starters/default/static/css/custom.css +0 -0
- package/bin/starters/default/static/data/sample-geojson.json +16 -0
- package/bin/starters/default/static/downloads/.gitkeep +0 -0
- package/bin/starters/default/static/downloads/output.epub +0 -0
- package/bin/starters/default/static/downloads/output.mobi +0 -0
- package/bin/starters/default/static/downloads/output.pdf +0 -0
- package/bin/starters/default/static/img/contributors/judith-keller.jpg +0 -0
- package/bin/starters/default/static/img/cover.png +0 -0
- package/bin/starters/default/static/img/figures/duo.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-burroughs.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-child.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-graveyard.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-hymns.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-legionnaire.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-refugee.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-sons.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-video-still.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans-washroom.jpg +0 -0
- package/bin/starters/default/static/img/figures/evans.jpg +0 -0
- package/bin/starters/default/static/img/figures/family.jpg +0 -0
- package/bin/starters/default/static/img/figures/lange-house.jpg +0 -0
- package/bin/starters/default/static/img/figures/lange.jpg +0 -0
- package/bin/starters/default/static/img/figures/mother-b.jpg +0 -0
- package/bin/starters/default/static/img/figures/mother-c.jpg +0 -0
- package/bin/starters/default/static/img/figures/mother.jpg +0 -0
- package/bin/starters/default/static/img/figures/pickers.jpg +0 -0
- package/bin/starters/default/static/img/logo-getty.png +0 -0
- package/bin/starters/default/static/img/pattern-spiral-overlay.png +0 -0
- package/bin/starters/default/static/js/custom.js +4 -0
- package/bin/themes/README.md +0 -0
- package/bin/themes/default/.circleci/config.yml +62 -0
- package/bin/themes/default/.eslintrc.js +16 -0
- package/bin/themes/default/.gitignore +13 -0
- package/bin/themes/default/.scss-lint.yml +239 -0
- package/bin/themes/default/CHANGELOG.md +73 -0
- package/bin/themes/default/LICENSE.md +20 -0
- package/bin/themes/default/README.md +112 -0
- package/bin/themes/default/archetypes/default.md +2 -0
- package/bin/themes/default/cypress.json +7 -0
- package/bin/themes/default/layouts/404.html +0 -0
- package/bin/themes/default/layouts/_default/baseof.html +43 -0
- package/bin/themes/default/layouts/_default/single.html +26 -0
- package/bin/themes/default/layouts/contents/single.html +37 -0
- package/bin/themes/default/layouts/cover/single.html +128 -0
- package/bin/themes/default/layouts/data/search-index.html +65 -0
- package/bin/themes/default/layouts/entry/single.html +372 -0
- package/bin/themes/default/layouts/essay/single.html +24 -0
- package/bin/themes/default/layouts/partials/analytics.html +29 -0
- package/bin/themes/default/layouts/partials/cite-this.html +348 -0
- package/bin/themes/default/layouts/partials/contents-list/card-image.html +13 -0
- package/bin/themes/default/layouts/partials/contents-list/closing-tags.html +59 -0
- package/bin/themes/default/layouts/partials/contents-list/contents-list.html +179 -0
- package/bin/themes/default/layouts/partials/contents-list/file-dir.html +7 -0
- package/bin/themes/default/layouts/partials/contents-list/file-path.html +10 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-type.html +9 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/abstract.html +17 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/brief.html +7 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/default.html +9 -0
- package/bin/themes/default/layouts/partials/contents-list/list-item-types/grid.html +30 -0
- package/bin/themes/default/layouts/partials/contents-list/section-heading.html +5 -0
- package/bin/themes/default/layouts/partials/contents-list.html +207 -0
- package/bin/themes/default/layouts/partials/contributor-info.html +78 -0
- package/bin/themes/default/layouts/partials/contributor-list.html +102 -0
- package/bin/themes/default/layouts/partials/copyright.html +155 -0
- package/bin/themes/default/layouts/partials/debug-contents.html +8 -0
- package/bin/themes/default/layouts/partials/dublin-core.html +21 -0
- package/bin/themes/default/layouts/partials/error-message.html +19 -0
- package/bin/themes/default/layouts/partials/figure-caption.html +1 -0
- package/bin/themes/default/layouts/partials/figure-fallback.html +31 -0
- package/bin/themes/default/layouts/partials/figure-image.html +44 -0
- package/bin/themes/default/layouts/partials/figure-label.html +15 -0
- package/bin/themes/default/layouts/partials/figure-soundcloud.html +25 -0
- package/bin/themes/default/layouts/partials/figure-table.html +44 -0
- package/bin/themes/default/layouts/partials/figure-vimeo.html +24 -0
- package/bin/themes/default/layouts/partials/figure-website.html +21 -0
- package/bin/themes/default/layouts/partials/figure-youtube.html +23 -0
- package/bin/themes/default/layouts/partials/figures/caption.html +44 -0
- package/bin/themes/default/layouts/partials/figures/label.html +35 -0
- package/bin/themes/default/layouts/partials/figures/media-types/fallback.html +32 -0
- package/bin/themes/default/layouts/partials/figures/media-types/image.html +54 -0
- package/bin/themes/default/layouts/partials/figures/media-types/soundcloud.html +35 -0
- package/bin/themes/default/layouts/partials/figures/media-types/table.html +53 -0
- package/bin/themes/default/layouts/partials/figures/media-types/vimeo.html +34 -0
- package/bin/themes/default/layouts/partials/figures/media-types/website.html +24 -0
- package/bin/themes/default/layouts/partials/figures/media-types/youtube.html +29 -0
- package/bin/themes/default/layouts/partials/footer-buttons.html +29 -0
- package/bin/themes/default/layouts/partials/head.html +46 -0
- package/bin/themes/default/layouts/partials/icon.html +20 -0
- package/bin/themes/default/layouts/partials/icons-cc.html +86 -0
- package/bin/themes/default/layouts/partials/icons.html +54 -0
- package/bin/themes/default/layouts/partials/json-ld.html +117 -0
- package/bin/themes/default/layouts/partials/link-list-arrow.html +16 -0
- package/bin/themes/default/layouts/partials/link-list.html +11 -0
- package/bin/themes/default/layouts/partials/menu-header.html +25 -0
- package/bin/themes/default/layouts/partials/menu.html +69 -0
- package/bin/themes/default/layouts/partials/metadata.html +27 -0
- package/bin/themes/default/layouts/partials/navbar.html +173 -0
- package/bin/themes/default/layouts/partials/open-graph.html +43 -0
- package/bin/themes/default/layouts/partials/page-abstract.html +7 -0
- package/bin/themes/default/layouts/partials/page-bibliography.html +59 -0
- package/bin/themes/default/layouts/partials/page-class.html +9 -0
- package/bin/themes/default/layouts/partials/page-contributor.html +48 -0
- package/bin/themes/default/layouts/partials/page-header.html +22 -0
- package/bin/themes/default/layouts/partials/page-title.html +9 -0
- package/bin/themes/default/layouts/partials/page-tombstone.html +36 -0
- package/bin/themes/default/layouts/partials/pdf-info.html +20 -0
- package/bin/themes/default/layouts/partials/pdf-title-pages.html +39 -0
- package/bin/themes/default/layouts/partials/scripts.html +5 -0
- package/bin/themes/default/layouts/partials/search.html +52 -0
- package/bin/themes/default/layouts/partials/site-title.html +9 -0
- package/bin/themes/default/layouts/partials/tests/check-node-modules.html +9 -0
- package/bin/themes/default/layouts/partials/tests/check-page-one-class.html +21 -0
- package/bin/themes/default/layouts/partials/tests/check-page-weights.html +49 -0
- package/bin/themes/default/layouts/partials/tests/run.html +13 -0
- package/bin/themes/default/layouts/partials/twitter-card.html +23 -0
- package/bin/themes/default/layouts/shortcodes/q-bibliography.html +61 -0
- package/bin/themes/default/layouts/shortcodes/q-cite.html +79 -0
- package/bin/themes/default/layouts/shortcodes/q-class.html +3 -0
- package/bin/themes/default/layouts/shortcodes/q-contributor.html +327 -0
- package/bin/themes/default/layouts/shortcodes/q-contributors.html +11 -0
- package/bin/themes/default/layouts/shortcodes/q-figure-group.html +457 -0
- package/bin/themes/default/layouts/shortcodes/q-figure-new.html +70 -0
- package/bin/themes/default/layouts/shortcodes/q-figure-zoom.html +408 -0
- package/bin/themes/default/layouts/shortcodes/q-figure.html +86 -0
- package/bin/themes/default/layouts/sitemap.xml +24 -0
- package/bin/themes/default/layouts/splash/single.html +67 -0
- package/bin/themes/default/package-lock.json +13198 -0
- package/bin/themes/default/package.json +96 -0
- package/bin/themes/default/source/css/application.scss +30 -0
- package/bin/themes/default/source/css/bulma-components.scss +21 -0
- package/bin/themes/default/source/css/colors.scss +16 -0
- package/bin/themes/default/source/css/components/_all.scss +15 -0
- package/bin/themes/default/source/css/components/container.sass +35 -0
- package/bin/themes/default/source/css/components/quire-buttons.scss +95 -0
- package/bin/themes/default/source/css/components/quire-citation.scss +77 -0
- package/bin/themes/default/source/css/components/quire-contents-list.scss +329 -0
- package/bin/themes/default/source/css/components/quire-contributors.scss +131 -0
- package/bin/themes/default/source/css/components/quire-copyright.scss +28 -0
- package/bin/themes/default/source/css/components/quire-cover.scss +216 -0
- package/bin/themes/default/source/css/components/quire-deepzoom.scss +181 -0
- package/bin/themes/default/source/css/components/quire-entry.scss +651 -0
- package/bin/themes/default/source/css/components/quire-figure.scss +589 -0
- package/bin/themes/default/source/css/components/quire-map.scss +17 -0
- package/bin/themes/default/source/css/components/quire-menu.scss +209 -0
- package/bin/themes/default/source/css/components/quire-navbar.scss +366 -0
- package/bin/themes/default/source/css/components/quire-page.scss +920 -0
- package/bin/themes/default/source/css/components/quire-popup.scss +233 -0
- package/bin/themes/default/source/css/components/quire-search.scss +121 -0
- package/bin/themes/default/source/css/epub.scss +549 -0
- package/bin/themes/default/source/css/fonts.scss +159 -0
- package/bin/themes/default/source/css/layout.scss +186 -0
- package/bin/themes/default/source/css/print.scss +613 -0
- package/bin/themes/default/source/css/utilities.scss +345 -0
- package/bin/themes/default/source/css/variables.scss +144 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.woff2 +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.woff2 +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.woff2 +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.eot +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.woff +0 -0
- package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bold.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bold.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bold.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bolditalic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bolditalic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-bolditalic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-italic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-italic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-italic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-regular.eot +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-regular.woff +0 -0
- package/bin/themes/default/source/fonts/noto-sans/notosans-regular.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bold.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bold.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bold.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bolditalic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bolditalic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-bolditalic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-italic.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-italic.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-italic.woff2 +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-regular.eot +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-regular.woff +0 -0
- package/bin/themes/default/source/fonts/noto-serif/notoserif-regular.woff2 +0 -0
- package/bin/themes/default/source/img/cover.png +0 -0
- package/bin/themes/default/source/img/fullscreen.png +0 -0
- package/bin/themes/default/source/img/icons/arrow_forward.png +0 -0
- package/bin/themes/default/source/img/icons/baseline-headset-24px.png +0 -0
- package/bin/themes/default/source/img/icons/baseline-videocam-24px.png +0 -0
- package/bin/themes/default/source/img/icons/baseline-website-24px.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nc-nd.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nc-sa.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nc.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-nd.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by-sa.png +0 -0
- package/bin/themes/default/source/img/icons/cc-by.png +0 -0
- package/bin/themes/default/source/img/icons/cc-zero.png +0 -0
- package/bin/themes/default/source/img/icons/close.png +0 -0
- package/bin/themes/default/source/img/icons/down-arrow.png +0 -0
- package/bin/themes/default/source/img/icons/download.png +0 -0
- package/bin/themes/default/source/img/icons/favicon.ico +0 -0
- package/bin/themes/default/source/img/icons/home.png +0 -0
- package/bin/themes/default/source/img/icons/left-arrow.png +0 -0
- package/bin/themes/default/source/img/icons/link.png +0 -0
- package/bin/themes/default/source/img/icons/nav.png +0 -0
- package/bin/themes/default/source/img/icons/right-arrow.png +0 -0
- package/bin/themes/default/source/img/icons/search.png +0 -0
- package/bin/themes/default/source/img/icons/start.png +0 -0
- package/bin/themes/default/source/img/layers-2x.png +0 -0
- package/bin/themes/default/source/img/layers.png +0 -0
- package/bin/themes/default/source/img/marker-icon.png +0 -0
- package/bin/themes/default/source/img/pattern-spiral-overlay.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/classic-catalogue.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/classic-entry.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/classic-essay.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/modern-contents.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/modern-cover.png +0 -0
- package/bin/themes/default/source/img/promo-screenshots/modern-essay.png +0 -0
- package/bin/themes/default/source/js/application.js +604 -0
- package/bin/themes/default/source/js/deepzoom.js +186 -0
- package/bin/themes/default/source/js/epub.js +9 -0
- package/bin/themes/default/source/js/fullscreen.js +190 -0
- package/bin/themes/default/source/js/helper.js +197 -0
- package/bin/themes/default/source/js/map.js +94 -0
- package/bin/themes/default/source/js/navigation.js +59 -0
- package/bin/themes/default/source/js/popup.js +311 -0
- package/bin/themes/default/source/js/search.js +35 -0
- package/bin/themes/default/source/js/soundcloud-api.js +1 -0
- package/bin/themes/default/static/css/epub.css +401 -0
- package/bin/themes/default/static/fonts/MaterialIcons-Regular.eot +0 -0
- package/bin/themes/default/static/fonts/MaterialIcons-Regular.woff +0 -0
- package/bin/themes/default/static/fonts/MaterialIcons-Regular.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bold.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bold.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bold.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bolditalic.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bolditalic.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-bolditalic.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-italic.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-italic.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-italic.woff2 +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-regular.eot +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-regular.woff +0 -0
- package/bin/themes/default/static/fonts/ibmplexsanscondensed-regular.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-bold.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-bold.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-bold.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-bolditalic.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-bolditalic.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-bolditalic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-italic.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-italic.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-italic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notosans-regular.eot +0 -0
- package/bin/themes/default/static/fonts/notosans-regular.woff +0 -0
- package/bin/themes/default/static/fonts/notosans-regular.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-bold.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-bold.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-bold.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-bolditalic.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-bolditalic.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-bolditalic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-italic.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-italic.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-italic.woff2 +0 -0
- package/bin/themes/default/static/fonts/notoserif-regular.eot +0 -0
- package/bin/themes/default/static/fonts/notoserif-regular.woff +0 -0
- package/bin/themes/default/static/fonts/notoserif-regular.woff2 +0 -0
- package/bin/themes/default/static/img/baseline-website-24px.png +0 -0
- package/bin/themes/default/static/img/cover.png +0 -0
- package/bin/themes/default/static/img/fullscreen.png +0 -0
- package/bin/themes/default/static/img/fullscreen@2x.png +0 -0
- package/bin/themes/default/static/img/icons/arrow_forward.png +0 -0
- package/bin/themes/default/static/img/icons/baseline-headset-24px.png +0 -0
- package/bin/themes/default/static/img/icons/baseline-videocam-24px.png +0 -0
- package/bin/themes/default/static/img/icons/baseline-website-24px.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nc-nd.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nc-sa.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nc.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-nd.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by-sa.png +0 -0
- package/bin/themes/default/static/img/icons/cc-by.png +0 -0
- package/bin/themes/default/static/img/icons/cc-zero.png +0 -0
- package/bin/themes/default/static/img/icons/close.png +0 -0
- package/bin/themes/default/static/img/icons/down-arrow.png +0 -0
- package/bin/themes/default/static/img/icons/download.png +0 -0
- package/bin/themes/default/static/img/icons/favicon.ico +0 -0
- package/bin/themes/default/static/img/icons/home.png +0 -0
- package/bin/themes/default/static/img/icons/left-arrow.png +0 -0
- package/bin/themes/default/static/img/icons/link.png +0 -0
- package/bin/themes/default/static/img/icons/nav.png +0 -0
- package/bin/themes/default/static/img/icons/right-arrow.png +0 -0
- package/bin/themes/default/static/img/icons/search.png +0 -0
- package/bin/themes/default/static/img/icons/soundcloud.png +0 -0
- package/bin/themes/default/static/img/icons/start.png +0 -0
- package/bin/themes/default/static/img/icons/vimeo.png +0 -0
- package/bin/themes/default/static/img/icons/website.png +0 -0
- package/bin/themes/default/static/img/icons/youtube.png +0 -0
- package/bin/themes/default/static/img/layers-2x.png +0 -0
- package/bin/themes/default/static/img/layers.png +0 -0
- package/bin/themes/default/static/img/marker-icon.png +0 -0
- package/bin/themes/default/static/img/pattern-spiral-overlay.png +0 -0
- package/bin/themes/default/tests/.gitkeep +0 -0
- package/bin/themes/default/tests/e2e/.eslintrc.js +9 -0
- package/bin/themes/default/tests/e2e/fixtures/blns.json +483 -0
- package/bin/themes/default/tests/e2e/plugins/index.js +22 -0
- package/bin/themes/default/tests/e2e/specs/quire-contents.spec.js +52 -0
- package/bin/themes/default/tests/e2e/specs/quire-contributors.spec.js +66 -0
- package/bin/themes/default/tests/e2e/specs/quire-entry.spec.js +104 -0
- package/bin/themes/default/tests/e2e/specs/quire-essay.spec.js +105 -0
- package/bin/themes/default/tests/e2e/specs/quire-menu.spec.js +38 -0
- package/bin/themes/default/tests/e2e/specs/quire-modal.spec.js +69 -0
- package/bin/themes/default/tests/e2e/specs/quire-next-back-buttons.spec.js +27 -0
- package/bin/themes/default/tests/e2e/specs/quire-page.spec.js +28 -0
- package/bin/themes/default/tests/e2e/specs/quire-search.spec.js +48 -0
- package/bin/themes/default/tests/e2e/specs/quire-splash.spec.js +38 -0
- package/bin/themes/default/tests/e2e/support/commands.js +25 -0
- package/bin/themes/default/tests/e2e/support/index.js +20 -0
- package/bin/themes/default/theme.toml +22 -0
- package/bin/themes/default/tsconfig.json +5 -0
- package/bin/themes/default/webpack/webpack.config.dev.js +128 -0
- package/bin/themes/default/webpack/webpack.config.epub.js +140 -0
- package/bin/themes/default/webpack/webpack.config.pdf.js +135 -0
- package/bin/themes/default/webpack/webpack.config.prod.js +133 -0
- package/package.json +1 -1
- package/index.js +0 -20
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Utilities.scss
|
|
3
|
+
// -----------------------------------------------------------------------------
|
|
4
|
+
// scss-lint:disable NameFormat
|
|
5
|
+
// Mixins
|
|
6
|
+
// -----------------------------------------------------------------------------
|
|
7
|
+
// Adjust foreground colors based on an element's background
|
|
8
|
+
@mixin foreground-color($bgcolor, $frcolor) {
|
|
9
|
+
* {
|
|
10
|
+
color: $frcolor;
|
|
11
|
+
}
|
|
12
|
+
svg {
|
|
13
|
+
fill: $frcolor;
|
|
14
|
+
&:hover {
|
|
15
|
+
fill: $frcolor;
|
|
16
|
+
background-color: transparent;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
a,
|
|
20
|
+
button,
|
|
21
|
+
.button {
|
|
22
|
+
background-color: $bgcolor;
|
|
23
|
+
color: $frcolor !important;
|
|
24
|
+
&:hover,
|
|
25
|
+
&:focus {
|
|
26
|
+
// background-color: darken($bgcolor, 5%);
|
|
27
|
+
// color: $frcolor;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
a {
|
|
31
|
+
border-bottom-color: $frcolor !important;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Adjust text color based background
|
|
36
|
+
@function background-color-text($color) {
|
|
37
|
+
@if (lightness($color) > 50) {
|
|
38
|
+
@return $off-black; // lighter background, return dark color
|
|
39
|
+
} @else {
|
|
40
|
+
@return $white; // darker background, return light color
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
// Adjust text color based background
|
|
45
|
+
@function background-color-text-classic($color) {
|
|
46
|
+
@if (lightness($color) > 50) {
|
|
47
|
+
@if $theme == classic {
|
|
48
|
+
@return $black;
|
|
49
|
+
} @else {
|
|
50
|
+
@return $off-black; // lighter background, return dark color
|
|
51
|
+
}
|
|
52
|
+
} @else {
|
|
53
|
+
@return $white; // darker background, return light color
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Adjust button color based background
|
|
58
|
+
@function button-color($color) {
|
|
59
|
+
@if $theme == classic {
|
|
60
|
+
@if (lightness($color) > 50) {
|
|
61
|
+
@return $off-black;
|
|
62
|
+
} @else {
|
|
63
|
+
@return $white;
|
|
64
|
+
}
|
|
65
|
+
} @else {
|
|
66
|
+
@return $accent-color;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// Adjust link hover color based on background color
|
|
71
|
+
@function link-hover-color($color) {
|
|
72
|
+
@if $theme == classic {
|
|
73
|
+
@return $accent-color;
|
|
74
|
+
} @else {
|
|
75
|
+
@if (lightness($color) > 50) {
|
|
76
|
+
@return darken($accent-color, 15%);
|
|
77
|
+
} @else {
|
|
78
|
+
@return lighten($accent-color, 15%);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
// Adjust background color
|
|
84
|
+
@function background-color($color) {
|
|
85
|
+
@if (lightness($color) > 50) {
|
|
86
|
+
@return darken($color, 10%); // lighter background, return dark color
|
|
87
|
+
} @else {
|
|
88
|
+
@return lighten($color, 10%); // darker background, return light color
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// General Bulma Overrides
|
|
93
|
+
// -----------------------------------------------------------------------------
|
|
94
|
+
.hero-body .container.is-fluid {
|
|
95
|
+
display: inline-block;
|
|
96
|
+
max-width: none;
|
|
97
|
+
background: $off-black-semi-transparent;
|
|
98
|
+
padding: 20px;
|
|
99
|
+
position: absolute;
|
|
100
|
+
bottom: 10%;
|
|
101
|
+
margin-left: 0;
|
|
102
|
+
left: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.hero-body,
|
|
106
|
+
.section,
|
|
107
|
+
.footer {
|
|
108
|
+
padding-left: 0;
|
|
109
|
+
padding-right: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// Utility Classes
|
|
113
|
+
// -----------------------------------------------------------------------------
|
|
114
|
+
sup,
|
|
115
|
+
sub {
|
|
116
|
+
line-height: 0;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// Visually Hidden utility class
|
|
120
|
+
.visually-hidden {
|
|
121
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
122
|
+
height: 1px;
|
|
123
|
+
overflow: hidden;
|
|
124
|
+
position: absolute;
|
|
125
|
+
width: 1px;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.is-print-only {
|
|
129
|
+
@media screen {
|
|
130
|
+
display: none;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.is-screen-only {
|
|
135
|
+
@media print {
|
|
136
|
+
display: none;
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.quire-error {
|
|
141
|
+
text-align: left;
|
|
142
|
+
p {
|
|
143
|
+
font-family: sans-serif;
|
|
144
|
+
margin-bottom: 1em;
|
|
145
|
+
}
|
|
146
|
+
pre {
|
|
147
|
+
margin-top: 1em;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
// @keyframes
|
|
151
|
+
//-------------------------------------------------------
|
|
152
|
+
// fadein
|
|
153
|
+
@keyframes fadeIn {
|
|
154
|
+
from {
|
|
155
|
+
opacity: 0;
|
|
156
|
+
}
|
|
157
|
+
to {
|
|
158
|
+
opacity: 1;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
/* Firefox < 16 */
|
|
162
|
+
@-moz-keyframes fadeIn {
|
|
163
|
+
from {
|
|
164
|
+
opacity: 0;
|
|
165
|
+
}
|
|
166
|
+
to {
|
|
167
|
+
opacity: 1;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
/* Safari, Chrome and Opera > 12.1 */
|
|
171
|
+
@-webkit-keyframes fadeIn {
|
|
172
|
+
from {
|
|
173
|
+
opacity: 0;
|
|
174
|
+
}
|
|
175
|
+
to {
|
|
176
|
+
opacity: 1;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
/* Internet Explorer */
|
|
180
|
+
@-ms-keyframes fadeIn {
|
|
181
|
+
from {
|
|
182
|
+
opacity: 0;
|
|
183
|
+
}
|
|
184
|
+
to {
|
|
185
|
+
opacity: 1;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
/* Opera < 12.1 */
|
|
189
|
+
@-o-keyframes fadeIn {
|
|
190
|
+
from {
|
|
191
|
+
opacity: 0;
|
|
192
|
+
}
|
|
193
|
+
to {
|
|
194
|
+
opacity: 1;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
// fadeOut
|
|
199
|
+
@keyframes fadeOut {
|
|
200
|
+
from {
|
|
201
|
+
opacity: 1;
|
|
202
|
+
}
|
|
203
|
+
to {
|
|
204
|
+
opacity: 0;
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
/* Firefox < 16 */
|
|
208
|
+
@-moz-keyframes fadeOut {
|
|
209
|
+
from {
|
|
210
|
+
opacity: 1;
|
|
211
|
+
}
|
|
212
|
+
to {
|
|
213
|
+
opacity: 0;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
/* Safari, Chrome and Opera > 12.1 */
|
|
217
|
+
@-webkit-keyframes fadeOut {
|
|
218
|
+
from {
|
|
219
|
+
opacity: 1;
|
|
220
|
+
}
|
|
221
|
+
to {
|
|
222
|
+
opacity: 0;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
/* Internet Explorer */
|
|
226
|
+
@-ms-keyframes fadeOut {
|
|
227
|
+
from {
|
|
228
|
+
opacity: 1;
|
|
229
|
+
}
|
|
230
|
+
to {
|
|
231
|
+
opacity: 0;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
/* Opera < 12.1 */
|
|
235
|
+
@-o-keyframes fadeOut {
|
|
236
|
+
from {
|
|
237
|
+
opacity: 1;
|
|
238
|
+
}
|
|
239
|
+
to {
|
|
240
|
+
opacity: 0;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// slideFromRight
|
|
245
|
+
@keyframes slideFromRight {
|
|
246
|
+
from {
|
|
247
|
+
right: -100em;
|
|
248
|
+
}
|
|
249
|
+
to {
|
|
250
|
+
right: 0;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
/* Firefox < 16 */
|
|
254
|
+
@-moz-keyframes slideFromRight {
|
|
255
|
+
from {
|
|
256
|
+
right: -100em;
|
|
257
|
+
}
|
|
258
|
+
to {
|
|
259
|
+
right: 0;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
/* Safari, Chrome and Opera > 12.1 */
|
|
263
|
+
@-webkit-keyframes slideFromRight {
|
|
264
|
+
from {
|
|
265
|
+
right: -100em;
|
|
266
|
+
}
|
|
267
|
+
to {
|
|
268
|
+
right: 0;
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
/* Internet Explorer */
|
|
272
|
+
@-ms-keyframes slideFromRight {
|
|
273
|
+
from {
|
|
274
|
+
right: -100em;
|
|
275
|
+
}
|
|
276
|
+
to {
|
|
277
|
+
right: 0;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
/* Opera < 12.1 */
|
|
281
|
+
@-o-keyframes slideFromRight {
|
|
282
|
+
from {
|
|
283
|
+
right: -100em;
|
|
284
|
+
}
|
|
285
|
+
to {
|
|
286
|
+
right: 0;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
// slideFromRight
|
|
291
|
+
@keyframes slideFromLeft {
|
|
292
|
+
from {
|
|
293
|
+
left: -100em;
|
|
294
|
+
}
|
|
295
|
+
to {
|
|
296
|
+
left: 0;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
/* Firefox < 16 */
|
|
300
|
+
@-moz-keyframes slideFromLeft {
|
|
301
|
+
from {
|
|
302
|
+
left: -100em;
|
|
303
|
+
}
|
|
304
|
+
to {
|
|
305
|
+
left: 0;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
/* Safari, Chrome and Opera > 12.1 */
|
|
309
|
+
@-webkit-keyframes slideFromLeft {
|
|
310
|
+
from {
|
|
311
|
+
left: -100em;
|
|
312
|
+
}
|
|
313
|
+
to {
|
|
314
|
+
left: 0;
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
/* Internet Explorer */
|
|
318
|
+
@-ms-keyframes slideFromLeft {
|
|
319
|
+
from {
|
|
320
|
+
left: -100em;
|
|
321
|
+
}
|
|
322
|
+
to {
|
|
323
|
+
left: 0;
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
/* Opera < 12.1 */
|
|
327
|
+
@-o-keyframes slideFromLeft {
|
|
328
|
+
from {
|
|
329
|
+
left: -100em;
|
|
330
|
+
}
|
|
331
|
+
to {
|
|
332
|
+
left: 0;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
// Required by HTML Template Polyfill for older IE compatibility
|
|
337
|
+
// -----------------------------------------------------------------------------
|
|
338
|
+
// scss-lint:disable ImportantRule
|
|
339
|
+
template {
|
|
340
|
+
display: none !important;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
html {
|
|
344
|
+
overflow-y: auto;
|
|
345
|
+
}
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Variables.scss
|
|
3
|
+
// -----------------------------------------------------------------------------
|
|
4
|
+
// Change values here to make changes to the type, color, cover and layout of
|
|
5
|
+
// your publication. Variable names are always preceeded by a $ (dollar sign).
|
|
6
|
+
// To avoid errors, variables names should not be changed or deleted, and be
|
|
7
|
+
// sure to leave the colons (:) and semi-colons (;) in place.
|
|
8
|
+
|
|
9
|
+
$accent-color: null;
|
|
10
|
+
$content-background-color: null; // main text area background color
|
|
11
|
+
$secondary-background-color: null; // only for modern theme
|
|
12
|
+
|
|
13
|
+
// Declare the theme: modern/classic
|
|
14
|
+
$theme: modern;
|
|
15
|
+
|
|
16
|
+
// Declare the navbar color style: normal/accent
|
|
17
|
+
$navbar: normal;
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
// Pre-defined fonts
|
|
22
|
+
// -----------------------------------------------------------------------------
|
|
23
|
+
// This theme includes three embedded, open license fonts, and also uses
|
|
24
|
+
// the widely available Times (files of which are not otherwise included here).
|
|
25
|
+
$ibm-sans: 'IBM Plex Sans Condensed', sans-serif;
|
|
26
|
+
$noto-sans: 'Noto Sans', sans-serif;
|
|
27
|
+
$noto-serif: 'Noto Serif', serif;
|
|
28
|
+
$times-serif: Times, serif;
|
|
29
|
+
|
|
30
|
+
// Page typography
|
|
31
|
+
// -----------------------------------------------------------------------------
|
|
32
|
+
$quire-base-font-size: 16px;
|
|
33
|
+
$quire-page-paragraph-style: line-space; // or use indent
|
|
34
|
+
|
|
35
|
+
// Cover typography
|
|
36
|
+
// -----------------------------------------------------------------------------
|
|
37
|
+
$quire-cover-text-color: $white;
|
|
38
|
+
$quire-cover-text-scale: 1; // use decimal numbers such as .8 or 1.3
|
|
39
|
+
|
|
40
|
+
// Menu
|
|
41
|
+
// -----------------------------------------------------------------------------
|
|
42
|
+
$quire-menu-width: 352px;
|
|
43
|
+
|
|
44
|
+
$quire-menu-color: $off-black;
|
|
45
|
+
$quire-menu-text-color: $white;
|
|
46
|
+
|
|
47
|
+
// Image viewer (pop-up figure viewer & entry page viewer)
|
|
48
|
+
// -----------------------------------------------------------------------------
|
|
49
|
+
$quire-entry-header-height: 6rem;
|
|
50
|
+
|
|
51
|
+
$quire-entry-image-color: $black;
|
|
52
|
+
$quire-entry-image-icons-color: $white;
|
|
53
|
+
|
|
54
|
+
// Active link and table-row color
|
|
55
|
+
// -----------------------------------------------------------------------------
|
|
56
|
+
$quire-hover-color: $light-yellow;
|
|
57
|
+
|
|
58
|
+
// Print/PDF stylesheet
|
|
59
|
+
// -----------------------------------------------------------------------------
|
|
60
|
+
$print-width: 8.5in;
|
|
61
|
+
$print-height: 11in;
|
|
62
|
+
$print-bleed: .125in;
|
|
63
|
+
|
|
64
|
+
$print-base-font-size: 8.5pt;
|
|
65
|
+
$print-text-color: $black;
|
|
66
|
+
|
|
67
|
+
$print-splash-color: $off-white;
|
|
68
|
+
|
|
69
|
+
$print-entry-image-color: $rich-black;
|
|
70
|
+
$print-entry-caption-color: $white;
|
|
71
|
+
$print-entry-image-display: all; // first | all
|
|
72
|
+
|
|
73
|
+
// Themes
|
|
74
|
+
// -----------------------------------------------------------------------------
|
|
75
|
+
// Declare theme variables
|
|
76
|
+
$quire-primary-font: null; // body and menu text
|
|
77
|
+
$quire-headings-font: null; // headings
|
|
78
|
+
$quire-footnotes-font: null; // footnotes and page backmatter
|
|
79
|
+
$quire-navigation-font: null; // navbar and next/prev buttons
|
|
80
|
+
|
|
81
|
+
@if $theme == classic {
|
|
82
|
+
// Classic Theme
|
|
83
|
+
$quire-primary-font: $noto-serif !default;
|
|
84
|
+
$quire-headings-font: $times-serif !default;
|
|
85
|
+
$quire-footnotes-font: $noto-sans !default;
|
|
86
|
+
$quire-navigation-font: $noto-sans !default;
|
|
87
|
+
$accent-color: $blue !default;
|
|
88
|
+
$content-background-color: $white !default;
|
|
89
|
+
$secondary-background-color: $content-background-color;
|
|
90
|
+
} @else {
|
|
91
|
+
// Modern Theme (default)
|
|
92
|
+
$quire-primary-font: $noto-sans !default;
|
|
93
|
+
$quire-headings-font: $ibm-sans !default;
|
|
94
|
+
$quire-footnotes-font: $noto-serif !default;
|
|
95
|
+
$quire-navigation-font: $noto-sans !default;
|
|
96
|
+
$accent-color: $red !default;
|
|
97
|
+
$content-background-color: $white !default;
|
|
98
|
+
$secondary-background-color: $off-white !default;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Navbar
|
|
102
|
+
// -----------------------------------------------------------------------------
|
|
103
|
+
$navbar-height: 3rem;
|
|
104
|
+
$quire-progress-bar-height: 2px;
|
|
105
|
+
|
|
106
|
+
// Declare navbar colors
|
|
107
|
+
$quire-navbar-color: null;
|
|
108
|
+
$quire-navbar-hover-color: null;
|
|
109
|
+
$quire-navbar-text-color: null;
|
|
110
|
+
|
|
111
|
+
@if $navbar == accent {
|
|
112
|
+
// Accent Navbar
|
|
113
|
+
$quire-navbar-color: $accent-color !default;
|
|
114
|
+
$quire-navbar-hover-color: darken($quire-navbar-color, 5%) !default;
|
|
115
|
+
$quire-navbar-text-color: $white !default;
|
|
116
|
+
} @else {
|
|
117
|
+
// Normal Navbar (default)
|
|
118
|
+
$quire-navbar-color: $white !default;
|
|
119
|
+
$quire-navbar-hover-color: darken($quire-navbar-color, 5%) !default;
|
|
120
|
+
@if $theme == classic {
|
|
121
|
+
$quire-navbar-text-color: lighten($off-black, 20%) !default;
|
|
122
|
+
} @else {
|
|
123
|
+
$quire-navbar-text-color: $off-black !default;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Cover colors
|
|
128
|
+
// -----------------------------------------------------------------------------
|
|
129
|
+
// Declare cover gradient colors (make them the same for a solid background)
|
|
130
|
+
$quire-cover-color-1: null;
|
|
131
|
+
$quire-cover-color-2: null;
|
|
132
|
+
|
|
133
|
+
@if $theme == classic {
|
|
134
|
+
$quire-cover-color-1: $accent-color !default;
|
|
135
|
+
$quire-cover-color-2: $red !default;
|
|
136
|
+
} @else {
|
|
137
|
+
$quire-cover-color-1: $blue !default;
|
|
138
|
+
$quire-cover-color-2: $accent-color !default;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// Layout sizes
|
|
142
|
+
// -----------------------------------------------------------------------------
|
|
143
|
+
$quire-map-height: 500px;
|
|
144
|
+
$quire-deepzoom-height: 500px;
|
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.woff
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bold.woff2
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.eot
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-bolditalic.woff
ADDED
|
Binary file
|
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.eot
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.woff
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-italic.woff2
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.eot
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.woff
ADDED
|
Binary file
|
package/bin/themes/default/source/fonts/ibm-plex-sans-condensed/ibmplexsanscondensed-regular.woff2
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|