@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,329 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Quire-contents-list.scss
|
|
3
|
+
// -----------------------------------------------------------------------------
|
|
4
|
+
//
|
|
5
|
+
// Quire uses Bulma's Menu component for the list of links inside the TOC. This
|
|
6
|
+
// class exists to provide a small amount of additional styling for the main
|
|
7
|
+
// TOC page of the book. Print TOC styles can also be defined on this element.
|
|
8
|
+
|
|
9
|
+
// .quire-contents
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
.quire-contents .quire-page__content .container .content {
|
|
14
|
+
background-color: transparent;
|
|
15
|
+
padding-left: 0;
|
|
16
|
+
padding-right: 0;
|
|
17
|
+
margin-bottom: 2.5rem;
|
|
18
|
+
color: background-color-text-classic($secondary-background-color);
|
|
19
|
+
}
|
|
20
|
+
@media print {
|
|
21
|
+
.quire-page__content .container.is-fullhd {
|
|
22
|
+
padding: 0;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Default list styles
|
|
27
|
+
// -----------------------------------------------------------------------------
|
|
28
|
+
.quire-contents-list {
|
|
29
|
+
color: background-color-text-classic($secondary-background-color);
|
|
30
|
+
&.list {
|
|
31
|
+
// Bulma overrides
|
|
32
|
+
background-color: transparent;
|
|
33
|
+
box-shadow: none;
|
|
34
|
+
}
|
|
35
|
+
@media screen {
|
|
36
|
+
font-family: $quire-headings-font;
|
|
37
|
+
margin-bottom: 5rem !important;
|
|
38
|
+
}
|
|
39
|
+
.quire-contributor {
|
|
40
|
+
font-style: italic;
|
|
41
|
+
}
|
|
42
|
+
.page-item,
|
|
43
|
+
.section-item > a,
|
|
44
|
+
.section-item > .list-header {
|
|
45
|
+
display: block;
|
|
46
|
+
margin-bottom: 1.375rem;
|
|
47
|
+
width: fit-content;
|
|
48
|
+
@media print {
|
|
49
|
+
margin-bottom: 1rem;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
li li {
|
|
53
|
+
padding-left: 1.5rem;
|
|
54
|
+
}
|
|
55
|
+
a {
|
|
56
|
+
@media screen {
|
|
57
|
+
color: background-color-text-classic($secondary-background-color);
|
|
58
|
+
transition: all .25s ease;
|
|
59
|
+
padding-bottom: .1em;
|
|
60
|
+
border-bottom: 1px dotted background-color-text-classic($secondary-background-color);
|
|
61
|
+
}
|
|
62
|
+
@media print {
|
|
63
|
+
color: $print-text-color;
|
|
64
|
+
}
|
|
65
|
+
&:hover {
|
|
66
|
+
color: $accent-color;
|
|
67
|
+
border-bottom: 1px solid $accent-color;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
.arrow svg {
|
|
71
|
+
display: none;
|
|
72
|
+
position: absolute;
|
|
73
|
+
width: 1em;
|
|
74
|
+
height: 1em;
|
|
75
|
+
transition: all .25s ease;
|
|
76
|
+
@if $theme == classic {
|
|
77
|
+
margin-top: .25em;
|
|
78
|
+
} @else {
|
|
79
|
+
margin-top: .375em;
|
|
80
|
+
}
|
|
81
|
+
fill: background-color-text-classic($secondary-background-color);
|
|
82
|
+
}
|
|
83
|
+
@media screen {
|
|
84
|
+
// Special styling for top-level list items
|
|
85
|
+
ul:first-child > li > a,
|
|
86
|
+
ul:first-child > li > .list-header {
|
|
87
|
+
font-size: 1.375em;
|
|
88
|
+
padding-bottom: 0;
|
|
89
|
+
border-bottom-width: 0;
|
|
90
|
+
.arrow svg {
|
|
91
|
+
display: inline-block;
|
|
92
|
+
}
|
|
93
|
+
&:hover {
|
|
94
|
+
border-bottom-width: 0;
|
|
95
|
+
.arrow svg {
|
|
96
|
+
margin-left: .75rem;
|
|
97
|
+
fill: $accent-color;
|
|
98
|
+
transition: all .25s ease;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// Additional "brief" list styles
|
|
106
|
+
// -----------------------------------------------------------------------------
|
|
107
|
+
.quire-contents-list.brief {
|
|
108
|
+
li li {
|
|
109
|
+
display: none;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
// Additional "abstract" list styles
|
|
114
|
+
// -----------------------------------------------------------------------------
|
|
115
|
+
.quire-contents-list.abstract {
|
|
116
|
+
.abstract-text {
|
|
117
|
+
font-size: 1rem;
|
|
118
|
+
margin-top: .375rem;
|
|
119
|
+
p {
|
|
120
|
+
margin-bottom: .375rem;
|
|
121
|
+
}
|
|
122
|
+
@media print {
|
|
123
|
+
font-size: .875rem;
|
|
124
|
+
margin-top: .25rem;
|
|
125
|
+
p {
|
|
126
|
+
margin-bottom: .25rem;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// Additional "grid" list styles
|
|
133
|
+
// -----------------------------------------------------------------------------
|
|
134
|
+
.quire-contents-list.grid {
|
|
135
|
+
ul {
|
|
136
|
+
display: grid;
|
|
137
|
+
grid-template-columns: 1fr;
|
|
138
|
+
grid-gap: 1rem;
|
|
139
|
+
}
|
|
140
|
+
li li {
|
|
141
|
+
padding-left: 0;
|
|
142
|
+
}
|
|
143
|
+
@media screen and (min-width: $desktop) {
|
|
144
|
+
ul {
|
|
145
|
+
grid-template-columns: 1fr 1fr;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
@media screen and (min-width: $widescreen) {
|
|
149
|
+
ul {
|
|
150
|
+
grid-template-columns: 1fr 1fr 1fr;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
@media screen and (min-width: $fullhd) {
|
|
154
|
+
ul {
|
|
155
|
+
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
.page-item,
|
|
159
|
+
.section-item > a,
|
|
160
|
+
.section-item > .list-header {
|
|
161
|
+
width: inherit;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// Grid headers that aren't links
|
|
165
|
+
// Top-level headers
|
|
166
|
+
ul:first-child > li.section-item {
|
|
167
|
+
padding: 1.5rem 0;
|
|
168
|
+
margin-bottom: 1.5rem;
|
|
169
|
+
border-top: 1px solid;
|
|
170
|
+
border-bottom: 1px solid;
|
|
171
|
+
@if (lightness($secondary-background-color) > 50) {
|
|
172
|
+
border-color: darken($secondary-background-color, 20%);
|
|
173
|
+
} @else {
|
|
174
|
+
border-color: lighten($secondary-background-color, 20%);
|
|
175
|
+
}
|
|
176
|
+
> .list-header {
|
|
177
|
+
font-size: 1.75rem;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
// All other headers
|
|
181
|
+
.section-item {
|
|
182
|
+
grid-column: 1/-1;
|
|
183
|
+
font-size: 1.125rem;
|
|
184
|
+
.list-header {
|
|
185
|
+
text-align: center;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
// Headers that are links
|
|
189
|
+
.section-item {
|
|
190
|
+
> a {
|
|
191
|
+
max-width: inherit;
|
|
192
|
+
text-align: center;
|
|
193
|
+
margin-bottom: 0;
|
|
194
|
+
border-bottom-width: 0;
|
|
195
|
+
.card {
|
|
196
|
+
min-height: inherit;
|
|
197
|
+
background-color: transparent;
|
|
198
|
+
.card-content {
|
|
199
|
+
font-size: 1.75rem;
|
|
200
|
+
.arrow {
|
|
201
|
+
display: none;
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
// Cards
|
|
209
|
+
.section-item .card,
|
|
210
|
+
.page-item .card {
|
|
211
|
+
box-shadow: none;
|
|
212
|
+
padding: 1.25rem;
|
|
213
|
+
min-height: 300px;
|
|
214
|
+
.card-content {
|
|
215
|
+
font-size: 2rem;
|
|
216
|
+
font-weight: 700;
|
|
217
|
+
line-height: 1.25;
|
|
218
|
+
padding: 0;
|
|
219
|
+
color: $accent-color;
|
|
220
|
+
.arrow svg {
|
|
221
|
+
display: inline-block;
|
|
222
|
+
fill: $accent-color;
|
|
223
|
+
@if $theme == classic {
|
|
224
|
+
margin-top: 0;
|
|
225
|
+
} @else {
|
|
226
|
+
margin-top: .1625em;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
.card-image {
|
|
231
|
+
transition: all .25s ease;
|
|
232
|
+
}
|
|
233
|
+
.card-image + .card-content {
|
|
234
|
+
padding-top: 1.25rem;
|
|
235
|
+
padding-bottom: .25rem;
|
|
236
|
+
font-size: 1.125rem;
|
|
237
|
+
line-height: 1.35;
|
|
238
|
+
}
|
|
239
|
+
&:hover {
|
|
240
|
+
.card-image {
|
|
241
|
+
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.75);
|
|
242
|
+
transition: all .25s ease;
|
|
243
|
+
}
|
|
244
|
+
.card-content {
|
|
245
|
+
color: darken($accent-color, 15%);
|
|
246
|
+
.arrow svg {
|
|
247
|
+
fill: darken($accent-color, 15%);
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
@if $theme == classic {
|
|
253
|
+
.page-item .card {
|
|
254
|
+
padding: 0 0 1.25rem 0;
|
|
255
|
+
&.no-image {
|
|
256
|
+
padding: 1.25rem;
|
|
257
|
+
background-color: $off-white;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
// Grid print styles
|
|
263
|
+
@media print {
|
|
264
|
+
|
|
265
|
+
$column-width: $print-width - $print-outer-margin - $print-inner-margin;
|
|
266
|
+
$card-width: ($column-width - .5625in) / 3;
|
|
267
|
+
$card-height: ($card-width * 1.25);
|
|
268
|
+
|
|
269
|
+
ul {
|
|
270
|
+
display: block;
|
|
271
|
+
}
|
|
272
|
+
.page-item {
|
|
273
|
+
float: left;
|
|
274
|
+
width: $card-width;
|
|
275
|
+
margin: 0 .09375in;
|
|
276
|
+
.card {
|
|
277
|
+
background-color: $off-white;
|
|
278
|
+
page-break-inside: avoid;
|
|
279
|
+
height: $card-height;
|
|
280
|
+
min-height: inherit;
|
|
281
|
+
.card-content {
|
|
282
|
+
color: $print-text-color;
|
|
283
|
+
font-size: 1.75rem;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
a::after {
|
|
287
|
+
position: inherit;
|
|
288
|
+
text-align: right;
|
|
289
|
+
display: block;
|
|
290
|
+
margin-left: 0;
|
|
291
|
+
font-size: 1.125rem;
|
|
292
|
+
font-weight: 700;
|
|
293
|
+
padding: 0 .5rem;
|
|
294
|
+
background-color: $off-white;
|
|
295
|
+
margin-bottom: 3rem;
|
|
296
|
+
page-break-before: avoid;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
.card-image img {
|
|
300
|
+
height: 1in;
|
|
301
|
+
width: auto;
|
|
302
|
+
}
|
|
303
|
+
.section-item {
|
|
304
|
+
width: $column-width;
|
|
305
|
+
margin: 0;
|
|
306
|
+
float: none;
|
|
307
|
+
clear: both;
|
|
308
|
+
page-break-after: avoid;
|
|
309
|
+
+ .page-item {
|
|
310
|
+
clear: left;
|
|
311
|
+
}
|
|
312
|
+
> a {
|
|
313
|
+
.card {
|
|
314
|
+
.card-content {
|
|
315
|
+
color: $print-text-color;
|
|
316
|
+
font-weight: 400;
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
&::after {
|
|
320
|
+
display: none;
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
// Remove border for top-level items
|
|
325
|
+
ul:first-child > li.section-item {
|
|
326
|
+
border-width: 0;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
}
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Quire-contributors.scss
|
|
3
|
+
// -----------------------------------------------------------------------------
|
|
4
|
+
// Styles for the contributors partial and shortcode
|
|
5
|
+
// .quire-contributors-list is the list-level element
|
|
6
|
+
// .quire-contributor is the individual contributor element
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
// .quire-contributors-list
|
|
10
|
+
// -----------------------------------------------------------------------------
|
|
11
|
+
.quire-contributors-list,
|
|
12
|
+
.content ul.quire-contributors-list {
|
|
13
|
+
list-style-type: none;
|
|
14
|
+
margin-left: 0;
|
|
15
|
+
|
|
16
|
+
&.align-right {
|
|
17
|
+
text-align: right;
|
|
18
|
+
margin-right: 2rem;
|
|
19
|
+
}
|
|
20
|
+
&.align-center {
|
|
21
|
+
text-align: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.title {
|
|
25
|
+
color: background-color-text($content-background-color);
|
|
26
|
+
@media print {
|
|
27
|
+
color: $print-text-color;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
li.quire-contributor {
|
|
32
|
+
margin-left: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&.initials {
|
|
36
|
+
li.quire-contributor__name {
|
|
37
|
+
display: inline;
|
|
38
|
+
margin-left: 0;
|
|
39
|
+
&::before {
|
|
40
|
+
content: "";
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&.name-title-block {
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-wrap: wrap;
|
|
48
|
+
.quire-contributor {
|
|
49
|
+
margin-right: 2rem;
|
|
50
|
+
}
|
|
51
|
+
.quire-contributor__title,
|
|
52
|
+
.quire-contributor__affiliation {
|
|
53
|
+
display: block;
|
|
54
|
+
font-style: italic;
|
|
55
|
+
}
|
|
56
|
+
&.align-right {
|
|
57
|
+
justify-content: flex-end;
|
|
58
|
+
.quire-contributor {
|
|
59
|
+
margin-right: 0;
|
|
60
|
+
margin-left: 2rem;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
&.align-center {
|
|
64
|
+
justify-content: center;
|
|
65
|
+
.quire-contributor {
|
|
66
|
+
margin-right: 2rem;
|
|
67
|
+
margin-left: 2rem;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// .quire-contributor
|
|
74
|
+
// -----------------------------------------------------------------------------
|
|
75
|
+
.quire-contributor {
|
|
76
|
+
&:before {
|
|
77
|
+
display: none !important;
|
|
78
|
+
}
|
|
79
|
+
.title {
|
|
80
|
+
margin-bottom: .5rem;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.quire-page__content .content &__url {
|
|
84
|
+
border-bottom-width: 0px;
|
|
85
|
+
svg {
|
|
86
|
+
width: .875em;
|
|
87
|
+
height: .875em;
|
|
88
|
+
@if $theme == classic {
|
|
89
|
+
fill: background-color-text-classic($content-background-color);
|
|
90
|
+
} @else {
|
|
91
|
+
fill: $accent-color;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
&:hover {
|
|
95
|
+
border-bottom-width: 0px !important;
|
|
96
|
+
svg {
|
|
97
|
+
fill: link-hover-color($content-background-color);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&__pic {
|
|
103
|
+
width: 100px;
|
|
104
|
+
border-radius: 60px;
|
|
105
|
+
margin: .8em 1em .8em 0;
|
|
106
|
+
overflow: hidden;
|
|
107
|
+
@media screen and (min-width: $tablet) { max-width: 200px; }
|
|
108
|
+
}
|
|
109
|
+
.media {
|
|
110
|
+
padding-bottom: 1em;
|
|
111
|
+
}
|
|
112
|
+
.media-left {
|
|
113
|
+
margin-right: .5rem;
|
|
114
|
+
float: left;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&__bio {
|
|
118
|
+
line-height: inherit;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
&__details {
|
|
122
|
+
font-size: 1em;
|
|
123
|
+
p {
|
|
124
|
+
margin-bottom: .5rem !important;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&__page-link {
|
|
129
|
+
@media print { display: none; }
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Quire-copyright.scss
|
|
3
|
+
// -----------------------------------------------------------------------------
|
|
4
|
+
//
|
|
5
|
+
// Styling for copyright and license info which normally appears at the bottom
|
|
6
|
+
// of the site menu.
|
|
7
|
+
|
|
8
|
+
// .quire-copyright
|
|
9
|
+
// -----------------------------------------------------------------------------
|
|
10
|
+
.quire-copyright {
|
|
11
|
+
padding: 0 1em;
|
|
12
|
+
font-family: $quire-navigation-font;
|
|
13
|
+
|
|
14
|
+
&__icon {
|
|
15
|
+
height: 2.5em;
|
|
16
|
+
max-width: 100%;
|
|
17
|
+
& img {
|
|
18
|
+
max-height: 100%;
|
|
19
|
+
}
|
|
20
|
+
&__logo {
|
|
21
|
+
height: 3em;
|
|
22
|
+
margin-bottom: .25em;
|
|
23
|
+
margin-right: 1em;
|
|
24
|
+
max-width: 100%;
|
|
25
|
+
display: inline-block;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
// =============================================================================
|
|
2
|
+
// Quire-cover.scss
|
|
3
|
+
// -----------------------------------------------------------------------------
|
|
4
|
+
//
|
|
5
|
+
// Cover component (used in the layout for 'cover' page types)
|
|
6
|
+
|
|
7
|
+
// .quire-cover
|
|
8
|
+
// -----------------------------------------------------------------------------
|
|
9
|
+
.quire-cover {
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@media print {
|
|
13
|
+
$splash-page-width: $print-width + $print-bleed + $print-bleed;
|
|
14
|
+
$splash-page-height: $print-height + $print-bleed + $print-bleed;
|
|
15
|
+
|
|
16
|
+
width: $splash-page-width;
|
|
17
|
+
height: $splash-page-height;
|
|
18
|
+
margin: -$print-bleed;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&__overlay {
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: 0;
|
|
24
|
+
left: 0;
|
|
25
|
+
width: 100%;
|
|
26
|
+
min-height: calc(95vh - #{$navbar-height} - #{$quire-progress-bar-height});
|
|
27
|
+
background-position: center center;
|
|
28
|
+
background-repeat: no-repeat;
|
|
29
|
+
background-size: cover;
|
|
30
|
+
@media print {
|
|
31
|
+
height: 100%;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&__hero {
|
|
36
|
+
background-color: $quire-cover-color-1;
|
|
37
|
+
background-image: linear-gradient(90deg, $quire-cover-color-1, $quire-cover-color-2);
|
|
38
|
+
position: relative;
|
|
39
|
+
min-height: calc(95vh - #{$navbar-height} - #{$quire-progress-bar-height}) !important;
|
|
40
|
+
text-align: left;
|
|
41
|
+
display: flex;
|
|
42
|
+
align-items: center;
|
|
43
|
+
|
|
44
|
+
@media print {
|
|
45
|
+
width: 100%;
|
|
46
|
+
height: 100%;
|
|
47
|
+
|
|
48
|
+
.hero-body {
|
|
49
|
+
height: auto;
|
|
50
|
+
// title/author box
|
|
51
|
+
.container {
|
|
52
|
+
width: 75%;
|
|
53
|
+
padding-left: .75in;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.title {
|
|
59
|
+
font-family: $quire-headings-font;
|
|
60
|
+
font-size: calc(2rem * #{$quire-cover-text-scale});
|
|
61
|
+
font-weight: 700;
|
|
62
|
+
line-height: 1.07;
|
|
63
|
+
margin-bottom: calc(.5rem * #{$quire-cover-text-scale});
|
|
64
|
+
color: $quire-cover-text-color;
|
|
65
|
+
@media print {
|
|
66
|
+
font-size: 40pt;
|
|
67
|
+
margin-top: 0;
|
|
68
|
+
margin-bottom: 1em;
|
|
69
|
+
color: $quire-cover-text-color;
|
|
70
|
+
page-break-before: right;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.subtitle {
|
|
75
|
+
display: block;
|
|
76
|
+
margin-top: calc(.5rem * #{$quire-cover-text-scale});
|
|
77
|
+
font-size: calc(1.5rem * #{$quire-cover-text-scale});
|
|
78
|
+
font-weight: 400;
|
|
79
|
+
line-height: 1.02;
|
|
80
|
+
color: $quire-cover-text-color;
|
|
81
|
+
@media print {
|
|
82
|
+
font-size: 30pt;
|
|
83
|
+
margin-top: .25em;
|
|
84
|
+
color: $quire-cover-text-color;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.reading-line {
|
|
89
|
+
font-family: $quire-headings-font;
|
|
90
|
+
font-style: italic;
|
|
91
|
+
font-size: calc(1.25rem * #{$quire-cover-text-scale});
|
|
92
|
+
line-height: 1.2;
|
|
93
|
+
color: $quire-cover-text-color;
|
|
94
|
+
@media print {
|
|
95
|
+
font-size: 18pt;
|
|
96
|
+
color: $quire-cover-text-color;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.contributor {
|
|
101
|
+
font-family: $quire-headings-font;
|
|
102
|
+
font-size: calc(1em * #{$quire-cover-text-scale});
|
|
103
|
+
margin-top: calc(.5rem * #{$quire-cover-text-scale});
|
|
104
|
+
color: $quire-cover-text-color;
|
|
105
|
+
@media print {
|
|
106
|
+
font-size: 18pt;
|
|
107
|
+
color: $quire-cover-text-color;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
&__more {
|
|
112
|
+
@media print {
|
|
113
|
+
display: none;
|
|
114
|
+
}
|
|
115
|
+
& .hero-more {
|
|
116
|
+
display: block;
|
|
117
|
+
position: relative;
|
|
118
|
+
line-height: 50px;
|
|
119
|
+
color: background-color-text($black);
|
|
120
|
+
width: 50px;
|
|
121
|
+
height: 50px;
|
|
122
|
+
background: $black;
|
|
123
|
+
border-radius: 25px;
|
|
124
|
+
margin: -25px auto 25px auto;
|
|
125
|
+
text-align: center;
|
|
126
|
+
svg {
|
|
127
|
+
height: 3.5rem;
|
|
128
|
+
width: 3.5rem;
|
|
129
|
+
margin-left: .25rem;
|
|
130
|
+
margin-top: .25rem;
|
|
131
|
+
-webkit-transition: all .5s ease;
|
|
132
|
+
transition: all .5s ease;
|
|
133
|
+
fill: background-color-text($black);
|
|
134
|
+
img {
|
|
135
|
+
padding: 7px 0;
|
|
136
|
+
}
|
|
137
|
+
&:hover {
|
|
138
|
+
margin-top: .3rem;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
&.next-page {
|
|
142
|
+
transform: rotate(-90deg);
|
|
143
|
+
margin-bottom: 0;
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
&__button {
|
|
149
|
+
background-color: $accent-color;
|
|
150
|
+
color: findColorInvert($accent-color);
|
|
151
|
+
border-width: 0px;
|
|
152
|
+
border-radius: 2px;
|
|
153
|
+
font-family: $quire-navigation-font;
|
|
154
|
+
font-size: 1rem !important;
|
|
155
|
+
padding: 0 !important;
|
|
156
|
+
width: 140px;
|
|
157
|
+
height: 44px;
|
|
158
|
+
svg {
|
|
159
|
+
width: 1.25rem;
|
|
160
|
+
height: 1.25rem;
|
|
161
|
+
margin-left: .25rem;
|
|
162
|
+
margin-bottom: .05rem;
|
|
163
|
+
fill: findColorInvert($accent-color);
|
|
164
|
+
}
|
|
165
|
+
&:hover {
|
|
166
|
+
background-color: darken($accent-color, 15%);
|
|
167
|
+
color: $white;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.quire-page__content {
|
|
172
|
+
padding-bottom: 0;
|
|
173
|
+
.container.is-fluid {
|
|
174
|
+
.content {
|
|
175
|
+
padding-top: 2em !important;
|
|
176
|
+
color: background-color-text-classic($secondary-background-color);
|
|
177
|
+
background-color: $secondary-background-color;
|
|
178
|
+
p {
|
|
179
|
+
line-height: 2em;
|
|
180
|
+
font-family: $quire-primary-font;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
@media screen and (min-width: 1028px) {
|
|
184
|
+
max-width: 900px;
|
|
185
|
+
width: 900px;
|
|
186
|
+
margin: 0 auto;
|
|
187
|
+
}
|
|
188
|
+
@media print {
|
|
189
|
+
display: none;
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.quire-contents-buttons {
|
|
195
|
+
ul {
|
|
196
|
+
li.quire-nav-button {
|
|
197
|
+
line-height: 34px;
|
|
198
|
+
a {
|
|
199
|
+
padding-top: 0.325em;
|
|
200
|
+
color: $content-background-color;
|
|
201
|
+
}
|
|
202
|
+
svg {
|
|
203
|
+
fill: $content-background-color;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
.nav-title {
|
|
208
|
+
font-size: initial;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
|