rbcli 0.2.8 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rakeTasks +7 -0
- data/.rbenv-gemsets +1 -0
- data/CHANGELOG.md +37 -0
- data/Gemfile.lock +46 -46
- data/README.md +2 -2
- data/docs-src/archetypes/default.md +6 -0
- data/docs-src/config.toml +37 -0
- data/docs-src/{docs/index.md → content/_index.md} +4 -4
- data/docs-src/content/advanced/_index.md +11 -0
- data/docs-src/{docs → content}/advanced/automatic_updates.md +6 -2
- data/docs-src/{docs → content}/advanced/command_types.md +8 -4
- data/docs-src/{docs → content}/advanced/distributed_state_locking.md +6 -2
- data/docs-src/{docs → content}/advanced/hooks.md +6 -2
- data/docs-src/{docs → content}/advanced/interactive_commands.md +5 -1
- data/docs-src/{docs → content}/advanced/logging.md +6 -2
- data/docs-src/{docs → content}/advanced/remote_execution.md +5 -1
- data/docs-src/{docs → content}/advanced/state_storage.md +6 -3
- data/docs-src/{docs → content}/advanced/user_config_files.md +5 -1
- data/docs-src/content/development/_index.md +11 -0
- data/docs-src/{docs/imported → content/development}/changelog.md +73 -6
- data/docs-src/{docs → content}/development/code_of_conduct.md +8 -1
- data/docs-src/{docs → content}/development/contributing.md +16 -1
- data/docs-src/{docs → content}/development/license.md +9 -2
- data/docs-src/{docs/imported/quick_reference.md → content/quick_reference/_index.md} +8 -1
- data/docs-src/{docs → content}/tutorial/10-getting_started.md +7 -1
- data/docs-src/{docs → content}/tutorial/20-project_layout.md +10 -2
- data/docs-src/{docs → content}/tutorial/30-your_first_command.md +10 -4
- data/docs-src/{docs → content}/tutorial/40-options_parameters_and_arguments.md +9 -3
- data/docs-src/{docs → content}/tutorial/50-publishing.md +9 -3
- data/docs-src/content/tutorial/_index.md +11 -0
- data/docs-src/{docs/whoami.md → content/whoami/_index.md} +11 -5
- data/docs-src/layouts/partials/logo.html +3 -0
- data/docs-src/makesite.sh +33 -7
- data/docs-src/mkdocs-archived.tar.gz +0 -0
- data/docs-src/runsite.sh +6 -1
- data/docs-src/themes/hugo-theme-learn/.editorconfig +16 -0
- data/docs-src/themes/hugo-theme-learn/.gitignore +3 -0
- data/docs-src/themes/hugo-theme-learn/.grenrc.yml +25 -0
- data/docs-src/themes/hugo-theme-learn/CHANGELOG.md +226 -0
- data/docs-src/themes/hugo-theme-learn/LICENSE.md +22 -0
- data/docs-src/themes/hugo-theme-learn/README.md +97 -0
- data/docs-src/themes/hugo-theme-learn/archetypes/chapter.md +13 -0
- data/docs-src/themes/hugo-theme-learn/archetypes/default.md +7 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/LICENSE.md +20 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/config.toml +102 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/_index.en.md +41 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/_index.fr.md +43 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/_index.en.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/_index.fr.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/_index.zh.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/configuration/_index.en.md +60 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/configuration/_index.fr.md +56 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/installation/_index.en.md +102 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/installation/_index.fr.md +100 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/installation/images/chapter.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/requirements/_index.en.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/requirements/_index.fr.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/requirements/images/magic.gif +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/_index.en.md +194 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/_index.fr.md +194 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/images/blue-variant.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/images/green-variant.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/images/red-variant.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/_index.en.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/_index.fr.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/archetypes.en.md +57 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/archetypes.fr.md +57 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/i18n/_index.en.md +78 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/i18n/_index.fr.md +78 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/i18n/images/i18n-menu.gif +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/icons.en.md +41 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/markdown.en.md +692 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/markdown.fr.md +666 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.en.md +109 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.fr.md +109 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.en.md +166 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.fr.md +146 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/frontmatter-icon.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-chapter.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-default.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/syntaxhighlight.en.md +89 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/tags.en.md +39 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/tags.fr.md +40 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/credits.en.md +28 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/credits.fr.md +28 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.en.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.fr.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.md +85 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.md +85 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.en.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.fr.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.en.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.en.md +7 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md +7 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.en.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.fr.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.en.md +283 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.fr.md +283 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.en.md +62 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.fr.md +62 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.en.md +23 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.fr.md +23 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/showcase.en.md +13 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/showcase.fr.md +14 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/partials/custom-footer.html +10 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/partials/logo.html +39 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/partials/menu-footer.html +14 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/shortcodes/ghcontributors.html +31 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/css/theme-mine.css +104 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/images/showcase/inteliver_docs.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/images/showcase/tat.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/images/showcase/tshark_dev.png +0 -0
- data/docs-src/themes/hugo-theme-learn/i18n/ar.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/de.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/en.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/es.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/fr.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/hi.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/id.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/ja.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/nl.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/pt.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/ru.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/tr.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/zh-cn.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/images/screenshot.png +0 -0
- data/docs-src/themes/hugo-theme-learn/images/tn.png +0 -0
- data/docs-src/themes/hugo-theme-learn/layouts/404.html +56 -0
- data/docs-src/themes/hugo-theme-learn/layouts/_default/list.html +22 -0
- data/docs-src/themes/hugo-theme-learn/layouts/_default/single.html +12 -0
- data/docs-src/themes/hugo-theme-learn/layouts/index.html +31 -0
- data/docs-src/themes/hugo-theme-learn/layouts/index.json +12 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/custom-comments.html +3 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/custom-footer.html +5 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/custom-header.html +5 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/favicon.html +1 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/footer.html +77 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/header.html +111 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/logo.html +19 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/menu-footer.html +1 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/menu.html +151 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/meta.html +2 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/search.html +16 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/tags.html +7 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/toc.html +5 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/attachments.html +36 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/button.html +14 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/children.html +101 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/expand.html +17 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/mermaid.html +2 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/notice.html +2 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/ref.html +14 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/relref.html +14 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/siteparam.html +7 -0
- data/docs-src/themes/hugo-theme-learn/netlify.toml +23 -0
- data/docs-src/themes/hugo-theme-learn/static/css/atom-one-dark-reasonable.css +77 -0
- data/docs-src/themes/hugo-theme-learn/static/css/auto-complete.css +47 -0
- data/docs-src/themes/hugo-theme-learn/static/css/featherlight.min.css +8 -0
- data/docs-src/themes/hugo-theme-learn/static/css/fontawesome-all.min.css +1 -0
- data/docs-src/themes/hugo-theme-learn/static/css/hugo-theme.css +254 -0
- data/docs-src/themes/hugo-theme-learn/static/css/hybrid.css +102 -0
- data/docs-src/themes/hugo-theme-learn/static/css/nucleus.css +615 -0
- data/docs-src/themes/hugo-theme-learn/static/css/perfect-scrollbar.min.css +2 -0
- data/docs-src/themes/hugo-theme-learn/static/css/tags.css +49 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme-blue.css +111 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme-green.css +111 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme-red.css +111 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme.css +1136 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/images/clippy.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/images/favicon.png +0 -0
- data/docs-src/themes/hugo-theme-learn/static/images/gopher-404.jpg +0 -0
- data/docs-src/themes/hugo-theme-learn/static/js/auto-complete.js +3 -0
- data/docs-src/themes/hugo-theme-learn/static/js/clipboard.min.js +7 -0
- data/docs-src/themes/hugo-theme-learn/static/js/featherlight.min.js +9 -0
- data/docs-src/themes/hugo-theme-learn/static/js/highlight.pack.js +6 -0
- data/docs-src/themes/hugo-theme-learn/static/js/hugo-learn.js +94 -0
- data/docs-src/themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js +2 -0
- data/docs-src/themes/hugo-theme-learn/static/js/jquery.sticky.js +288 -0
- data/docs-src/themes/hugo-theme-learn/static/js/learn.js +459 -0
- data/docs-src/themes/hugo-theme-learn/static/js/lunr.min.js +6 -0
- data/docs-src/themes/hugo-theme-learn/static/js/modernizr.custom-3.6.0.js +3 -0
- data/docs-src/themes/hugo-theme-learn/static/js/perfect-scrollbar.jquery.min.js +2 -0
- data/docs-src/themes/hugo-theme-learn/static/js/perfect-scrollbar.min.js +2 -0
- data/docs-src/themes/hugo-theme-learn/static/js/search.js +93 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.css +277 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.dark.css +278 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.forest.css +356 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.js +8 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/theme.toml +21 -0
- data/docs-src/themes/hugo-theme-learn/wercker.yml +16 -0
- data/docs/404.html +54 -670
- data/docs/advanced/automatic_updates/index.html +998 -651
- data/docs/advanced/command_types/index.html +1022 -742
- data/docs/advanced/distributed_state_locking/index.html +998 -635
- data/docs/advanced/hooks/index.html +1011 -691
- data/docs/advanced/index.html +1140 -0
- data/docs/advanced/index.xml +117 -0
- data/docs/advanced/interactive_commands/index.html +1000 -652
- data/docs/advanced/logging/index.html +1006 -655
- data/docs/advanced/remote_execution/index.html +1010 -666
- data/docs/advanced/state_storage/index.html +1009 -721
- data/docs/advanced/user_config_files/index.html +981 -626
- data/docs/categories/index.html +1146 -0
- data/docs/categories/index.xml +14 -0
- data/docs/css/atom-one-dark-reasonable.css +77 -0
- data/docs/css/auto-complete.css +47 -0
- data/docs/css/featherlight.min.css +8 -0
- data/docs/css/fontawesome-all.min.css +1 -0
- data/docs/css/hugo-theme.css +254 -0
- data/docs/css/hybrid.css +102 -0
- data/docs/css/nucleus.css +615 -0
- data/docs/css/perfect-scrollbar.min.css +2 -0
- data/docs/css/tags.css +49 -0
- data/docs/css/theme-blue.css +111 -0
- data/docs/css/theme-green.css +111 -0
- data/docs/css/theme-red.css +111 -0
- data/docs/css/theme.css +1136 -0
- data/docs/development/changelog/index.html +1376 -0
- data/docs/development/code_of_conduct/index.html +974 -671
- data/docs/development/contributing/index.html +989 -583
- data/docs/development/index.html +1140 -0
- data/docs/development/index.xml +54 -0
- data/docs/development/license/index.html +973 -559
- data/docs/fonts/Inconsolata.eot +0 -0
- data/docs/fonts/Inconsolata.svg +1 -0
- data/docs/fonts/Inconsolata.ttf +0 -0
- data/docs/fonts/Inconsolata.woff +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.eot +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.svg +1 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.ttf +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.woff +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.woff2 +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.eot +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.svg +1 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.ttf +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.woff +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.woff2 +0 -0
- data/docs/fonts/Work_Sans_200.eot +0 -0
- data/docs/fonts/Work_Sans_200.svg +1 -0
- data/docs/fonts/Work_Sans_200.ttf +0 -0
- data/docs/fonts/Work_Sans_200.woff +0 -0
- data/docs/fonts/Work_Sans_200.woff2 +0 -0
- data/docs/fonts/Work_Sans_300.eot +0 -0
- data/docs/fonts/Work_Sans_300.svg +1 -0
- data/docs/fonts/Work_Sans_300.ttf +0 -0
- data/docs/fonts/Work_Sans_300.woff +0 -0
- data/docs/fonts/Work_Sans_300.woff2 +0 -0
- data/docs/fonts/Work_Sans_500.eot +0 -0
- data/docs/fonts/Work_Sans_500.svg +1 -0
- data/docs/fonts/Work_Sans_500.ttf +0 -0
- data/docs/fonts/Work_Sans_500.woff +0 -0
- data/docs/fonts/Work_Sans_500.woff2 +0 -0
- data/docs/images/clippy.svg +1 -0
- data/docs/images/favicon.png +0 -0
- data/docs/images/gopher-404.jpg +0 -0
- data/docs/imported/changelog/index.html +1208 -1020
- data/docs/imported/index.html +1191 -0
- data/docs/imported/index.xml +23 -0
- data/docs/index.html +925 -558
- data/docs/index.json +183 -0
- data/docs/index.xml +212 -0
- data/docs/js/auto-complete.js +3 -0
- data/docs/js/clipboard.min.js +7 -0
- data/docs/js/featherlight.min.js +9 -0
- data/docs/js/highlight.pack.js +6 -0
- data/docs/js/html5shiv-printshiv.min.js +4 -0
- data/docs/js/hugo-learn.js +94 -0
- data/docs/js/jquery-3.3.1.min.js +2 -0
- data/docs/js/jquery.sticky.js +288 -0
- data/docs/js/learn.js +459 -0
- data/docs/js/lunr.min.js +6 -0
- data/docs/js/modernizr.custom-3.6.0.js +3 -0
- data/docs/js/perfect-scrollbar.jquery.min.js +2 -0
- data/docs/js/perfect-scrollbar.min.js +2 -0
- data/docs/js/search.js +93 -0
- data/docs/mermaid/mermaid.css +277 -0
- data/docs/mermaid/mermaid.dark.css +278 -0
- data/docs/mermaid/mermaid.forest.css +356 -0
- data/docs/mermaid/mermaid.js +8 -0
- data/docs/quick_reference/index.html +1246 -0
- data/docs/quick_reference/index.xml +15 -0
- data/docs/sitemap.xml +133 -107
- data/docs/tags/index.html +1146 -0
- data/docs/tags/index.xml +14 -0
- data/docs/tutorial/10-getting_started/index.html +994 -662
- data/docs/tutorial/20-project_layout/index.html +1013 -722
- data/docs/tutorial/30-your_first_command/index.html +1055 -734
- data/docs/tutorial/40-options_parameters_and_arguments/index.html +1136 -878
- data/docs/tutorial/50-publishing/index.html +984 -671
- data/docs/tutorial/index.html +1140 -0
- data/docs/tutorial/index.xml +71 -0
- data/docs/webfonts/fa-brands-400.eot +0 -0
- data/docs/webfonts/fa-brands-400.svg +1 -0
- data/docs/webfonts/fa-brands-400.ttf +0 -0
- data/docs/webfonts/fa-brands-400.woff +0 -0
- data/docs/webfonts/fa-brands-400.woff2 +0 -0
- data/docs/webfonts/fa-regular-400.eot +0 -0
- data/docs/webfonts/fa-regular-400.svg +1 -0
- data/docs/webfonts/fa-regular-400.ttf +0 -0
- data/docs/webfonts/fa-regular-400.woff +0 -0
- data/docs/webfonts/fa-regular-400.woff2 +0 -0
- data/docs/webfonts/fa-solid-900.eot +0 -0
- data/docs/webfonts/fa-solid-900.svg +1 -0
- data/docs/webfonts/fa-solid-900.ttf +0 -0
- data/docs/webfonts/fa-solid-900.woff +0 -0
- data/docs/webfonts/fa-solid-900.woff2 +0 -0
- data/docs/whoami/index.html +965 -555
- data/docs/whoami/index.xml +15 -0
- data/exe/rbcli +1 -0
- data/lib/rbcli-tool/project.rb +6 -2
- data/lib/rbcli/configuration/configurate_blocks/me.rb +5 -5
- data/lib/rbcli/engine/command.rb +1 -1
- data/lib/rbcli/util/deprecation_warning.rb +21 -4
- data/lib/rbcli/util/msg.rb +2 -2
- data/lib/rbcli/version.rb +1 -1
- data/rbcli.gemspec +12 -13
- data/skeletons/project/.rakeTasks +7 -0
- data/skeletons/project/Gemfile +1 -1
- data/skeletons/project/config/general.rb +1 -1
- data/skeletons/project/exe/executable +1 -3
- data/skeletons/project/lib/lib.erb +9 -0
- data/skeletons/project/spec/spec_helper.rb +7 -7
- data/skeletons/project/spec/untitled_spec.rb +6 -6
- data/skeletons/project/untitled.gemspec +30 -30
- metadata +381 -95
- data/docs-src/mkdocs.yml +0 -79
- data/docs/assets/fonts/font-awesome.css +0 -4
- data/docs/assets/fonts/material-icons.css +0 -13
- data/docs/assets/fonts/specimen/FontAwesome.ttf +0 -0
- data/docs/assets/fonts/specimen/FontAwesome.woff +0 -0
- data/docs/assets/fonts/specimen/FontAwesome.woff2 +0 -0
- data/docs/assets/fonts/specimen/MaterialIcons-Regular.ttf +0 -0
- data/docs/assets/fonts/specimen/MaterialIcons-Regular.woff +0 -0
- data/docs/assets/fonts/specimen/MaterialIcons-Regular.woff2 +0 -0
- data/docs/assets/images/favicon.png +0 -0
- data/docs/assets/images/icons/bitbucket.1b09e088.svg +0 -20
- data/docs/assets/images/icons/github.f0b8504a.svg +0 -18
- data/docs/assets/images/icons/gitlab.6dd19c00.svg +0 -38
- data/docs/assets/javascripts/application.583bbe55.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.da.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.de.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.du.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.es.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.fi.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.fr.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.hu.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.it.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.jp.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.multi.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.no.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.pt.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.ro.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.ru.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.stemmer.support.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.sv.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.tr.js +0 -1
- data/docs/assets/javascripts/lunr/tinyseg.js +0 -1
- data/docs/assets/javascripts/modernizr.1aa3b519.js +0 -1
- data/docs/assets/stylesheets/application-palette.22915126.css +0 -1176
- data/docs/assets/stylesheets/application.451f80e5.css +0 -2552
- data/docs/imported/quick_reference/index.html +0 -1120
- data/docs/search/search_index.json +0 -1
- data/docs/sitemap.xml.gz +0 -0
- data/skeletons/project/lib/.keep +0 -0
@@ -1,2552 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
html {
|
3
|
-
box-sizing: border-box; }
|
4
|
-
|
5
|
-
*,
|
6
|
-
*::before,
|
7
|
-
*::after {
|
8
|
-
box-sizing: inherit; }
|
9
|
-
|
10
|
-
html {
|
11
|
-
-webkit-text-size-adjust: none;
|
12
|
-
-moz-text-size-adjust: none;
|
13
|
-
-ms-text-size-adjust: none;
|
14
|
-
text-size-adjust: none; }
|
15
|
-
|
16
|
-
body {
|
17
|
-
margin: 0; }
|
18
|
-
|
19
|
-
hr {
|
20
|
-
overflow: visible;
|
21
|
-
box-sizing: content-box; }
|
22
|
-
|
23
|
-
a {
|
24
|
-
-webkit-text-decoration-skip: objects; }
|
25
|
-
|
26
|
-
a,
|
27
|
-
button,
|
28
|
-
label,
|
29
|
-
input {
|
30
|
-
-webkit-tap-highlight-color: transparent; }
|
31
|
-
|
32
|
-
a {
|
33
|
-
color: inherit;
|
34
|
-
text-decoration: none; }
|
35
|
-
|
36
|
-
small {
|
37
|
-
font-size: 80%; }
|
38
|
-
|
39
|
-
sub,
|
40
|
-
sup {
|
41
|
-
position: relative;
|
42
|
-
font-size: 80%;
|
43
|
-
line-height: 0;
|
44
|
-
vertical-align: baseline; }
|
45
|
-
|
46
|
-
sub {
|
47
|
-
bottom: -0.25em; }
|
48
|
-
|
49
|
-
sup {
|
50
|
-
top: -0.5em; }
|
51
|
-
|
52
|
-
img {
|
53
|
-
border-style: none; }
|
54
|
-
|
55
|
-
table {
|
56
|
-
border-collapse: separate;
|
57
|
-
border-spacing: 0; }
|
58
|
-
|
59
|
-
td,
|
60
|
-
th {
|
61
|
-
font-weight: normal;
|
62
|
-
vertical-align: top; }
|
63
|
-
|
64
|
-
button {
|
65
|
-
margin: 0;
|
66
|
-
padding: 0;
|
67
|
-
border: 0;
|
68
|
-
outline-style: none;
|
69
|
-
background: transparent;
|
70
|
-
font-size: inherit; }
|
71
|
-
|
72
|
-
input {
|
73
|
-
border: 0;
|
74
|
-
outline: 0; }
|
75
|
-
|
76
|
-
.md-icon, .md-clipboard::before, .md-nav__title::before, .md-nav__button, .md-nav__link::after, .md-search-result__article--document::before, .md-source-file::before, .md-typeset .admonition > .admonition-title::before, .md-typeset details > .admonition-title::before, .md-typeset .admonition > summary::before, .md-typeset details > summary::before, .md-typeset .footnote-backref, .md-typeset .critic.comment::before, .md-typeset summary::after, .md-typeset .task-list-control .task-list-indicator::before {
|
77
|
-
font-family: "Material Icons";
|
78
|
-
font-style: normal;
|
79
|
-
font-variant: normal;
|
80
|
-
font-weight: normal;
|
81
|
-
line-height: 1;
|
82
|
-
text-transform: none;
|
83
|
-
white-space: nowrap;
|
84
|
-
speak: none;
|
85
|
-
word-wrap: normal;
|
86
|
-
direction: ltr; }
|
87
|
-
.md-content__icon, .md-header-nav__button, .md-footer-nav__button, .md-nav__title::before, .md-nav__button, .md-search-result__article--document::before {
|
88
|
-
display: inline-block;
|
89
|
-
margin: 0.4rem;
|
90
|
-
padding: 0.8rem;
|
91
|
-
font-size: 2.4rem;
|
92
|
-
cursor: pointer; }
|
93
|
-
|
94
|
-
.md-icon--arrow-back::before {
|
95
|
-
content: "\E5C4"; }
|
96
|
-
|
97
|
-
.md-icon--arrow-forward::before {
|
98
|
-
content: "\E5C8"; }
|
99
|
-
|
100
|
-
.md-icon--menu::before {
|
101
|
-
content: "\E5D2"; }
|
102
|
-
|
103
|
-
.md-icon--search::before {
|
104
|
-
content: "\E8B6"; }
|
105
|
-
|
106
|
-
[dir="rtl"] .md-icon--arrow-back::before {
|
107
|
-
content: "\E5C8"; }
|
108
|
-
|
109
|
-
[dir="rtl"] .md-icon--arrow-forward::before {
|
110
|
-
content: "\E5C4"; }
|
111
|
-
|
112
|
-
body {
|
113
|
-
-webkit-font-smoothing: antialiased;
|
114
|
-
-moz-osx-font-smoothing: grayscale; }
|
115
|
-
|
116
|
-
body,
|
117
|
-
input {
|
118
|
-
color: rgba(0, 0, 0, 0.87);
|
119
|
-
-webkit-font-feature-settings: "kern", "liga";
|
120
|
-
font-feature-settings: "kern", "liga";
|
121
|
-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
|
122
|
-
|
123
|
-
pre,
|
124
|
-
code,
|
125
|
-
kbd {
|
126
|
-
color: rgba(0, 0, 0, 0.87);
|
127
|
-
-webkit-font-feature-settings: "kern";
|
128
|
-
font-feature-settings: "kern";
|
129
|
-
font-family: "Courier New", Courier, monospace; }
|
130
|
-
|
131
|
-
.md-typeset {
|
132
|
-
font-size: 1.6rem;
|
133
|
-
line-height: 1.6;
|
134
|
-
-webkit-print-color-adjust: exact; }
|
135
|
-
.md-typeset p,
|
136
|
-
.md-typeset ul,
|
137
|
-
.md-typeset ol,
|
138
|
-
.md-typeset blockquote {
|
139
|
-
margin: 1em 0; }
|
140
|
-
.md-typeset h1 {
|
141
|
-
margin: 0 0 4rem;
|
142
|
-
color: rgba(0, 0, 0, 0.54);
|
143
|
-
font-size: 3.125rem;
|
144
|
-
font-weight: 300;
|
145
|
-
letter-spacing: -0.01em;
|
146
|
-
line-height: 1.3; }
|
147
|
-
.md-typeset h2 {
|
148
|
-
margin: 4rem 0 1.6rem;
|
149
|
-
font-size: 2.5rem;
|
150
|
-
font-weight: 300;
|
151
|
-
letter-spacing: -0.01em;
|
152
|
-
line-height: 1.4; }
|
153
|
-
.md-typeset h3 {
|
154
|
-
margin: 3.2rem 0 1.6rem;
|
155
|
-
font-size: 2rem;
|
156
|
-
font-weight: 400;
|
157
|
-
letter-spacing: -0.01em;
|
158
|
-
line-height: 1.5; }
|
159
|
-
.md-typeset h2 + h3 {
|
160
|
-
margin-top: 1.6rem; }
|
161
|
-
.md-typeset h4 {
|
162
|
-
margin: 1.6rem 0;
|
163
|
-
font-size: 1.6rem;
|
164
|
-
font-weight: 700;
|
165
|
-
letter-spacing: -0.01em; }
|
166
|
-
.md-typeset h5,
|
167
|
-
.md-typeset h6 {
|
168
|
-
margin: 1.6rem 0;
|
169
|
-
color: rgba(0, 0, 0, 0.54);
|
170
|
-
font-size: 1.28rem;
|
171
|
-
font-weight: 700;
|
172
|
-
letter-spacing: -0.01em; }
|
173
|
-
.md-typeset h5 {
|
174
|
-
text-transform: uppercase; }
|
175
|
-
.md-typeset hr {
|
176
|
-
margin: 1.5em 0;
|
177
|
-
border-bottom: 0.1rem dotted rgba(0, 0, 0, 0.26); }
|
178
|
-
.md-typeset a {
|
179
|
-
color: #3f51b5;
|
180
|
-
word-break: break-word; }
|
181
|
-
.md-typeset a, .md-typeset a::before {
|
182
|
-
transition: color 0.125s; }
|
183
|
-
.md-typeset a:hover, .md-typeset a:active {
|
184
|
-
color: #536dfe; }
|
185
|
-
.md-typeset code,
|
186
|
-
.md-typeset pre {
|
187
|
-
background-color: rgba(236, 236, 236, 0.5);
|
188
|
-
color: #37474F;
|
189
|
-
font-size: 85%;
|
190
|
-
direction: ltr; }
|
191
|
-
.md-typeset code {
|
192
|
-
margin: 0 0.29412em;
|
193
|
-
padding: 0.07353em 0;
|
194
|
-
border-radius: 0.2rem;
|
195
|
-
box-shadow: 0.29412em 0 0 rgba(236, 236, 236, 0.5), -0.29412em 0 0 rgba(236, 236, 236, 0.5);
|
196
|
-
word-break: break-word;
|
197
|
-
-webkit-box-decoration-break: clone;
|
198
|
-
box-decoration-break: clone; }
|
199
|
-
.md-typeset h1 code,
|
200
|
-
.md-typeset h2 code,
|
201
|
-
.md-typeset h3 code,
|
202
|
-
.md-typeset h4 code,
|
203
|
-
.md-typeset h5 code,
|
204
|
-
.md-typeset h6 code {
|
205
|
-
margin: 0;
|
206
|
-
background-color: transparent;
|
207
|
-
box-shadow: none; }
|
208
|
-
.md-typeset a > code {
|
209
|
-
margin: inherit;
|
210
|
-
padding: inherit;
|
211
|
-
border-radius: none;
|
212
|
-
background-color: inherit;
|
213
|
-
color: inherit;
|
214
|
-
box-shadow: none; }
|
215
|
-
.md-typeset pre {
|
216
|
-
position: relative;
|
217
|
-
margin: 1em 0;
|
218
|
-
border-radius: 0.2rem;
|
219
|
-
line-height: 1.4;
|
220
|
-
-webkit-overflow-scrolling: touch; }
|
221
|
-
.md-typeset pre > code {
|
222
|
-
display: block;
|
223
|
-
margin: 0;
|
224
|
-
padding: 1.05rem 1.2rem;
|
225
|
-
background-color: transparent;
|
226
|
-
font-size: inherit;
|
227
|
-
box-shadow: none;
|
228
|
-
-webkit-box-decoration-break: none;
|
229
|
-
box-decoration-break: none;
|
230
|
-
overflow: auto; }
|
231
|
-
.md-typeset pre > code::-webkit-scrollbar {
|
232
|
-
width: 0.4rem;
|
233
|
-
height: 0.4rem; }
|
234
|
-
.md-typeset pre > code::-webkit-scrollbar-thumb {
|
235
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
236
|
-
.md-typeset pre > code::-webkit-scrollbar-thumb:hover {
|
237
|
-
background-color: #536dfe; }
|
238
|
-
.md-typeset kbd {
|
239
|
-
padding: 0 0.29412em;
|
240
|
-
border: 0.1rem solid #c9c9c9;
|
241
|
-
border-radius: 0.3rem;
|
242
|
-
border-bottom-color: #bcbcbc;
|
243
|
-
background-color: #FCFCFC;
|
244
|
-
color: #555555;
|
245
|
-
font-size: 85%;
|
246
|
-
box-shadow: 0 0.1rem 0 #b0b0b0;
|
247
|
-
word-break: break-word; }
|
248
|
-
.md-typeset mark {
|
249
|
-
margin: 0 0.25em;
|
250
|
-
padding: 0.0625em 0;
|
251
|
-
border-radius: 0.2rem;
|
252
|
-
background-color: rgba(255, 235, 59, 0.5);
|
253
|
-
box-shadow: 0.25em 0 0 rgba(255, 235, 59, 0.5), -0.25em 0 0 rgba(255, 235, 59, 0.5);
|
254
|
-
word-break: break-word;
|
255
|
-
-webkit-box-decoration-break: clone;
|
256
|
-
box-decoration-break: clone; }
|
257
|
-
.md-typeset abbr {
|
258
|
-
border-bottom: 0.1rem dotted rgba(0, 0, 0, 0.54);
|
259
|
-
text-decoration: none;
|
260
|
-
cursor: help; }
|
261
|
-
.md-typeset small {
|
262
|
-
opacity: 0.75; }
|
263
|
-
.md-typeset sup,
|
264
|
-
.md-typeset sub {
|
265
|
-
margin-left: 0.07812em; }
|
266
|
-
[dir="rtl"] .md-typeset sup, [dir="rtl"]
|
267
|
-
.md-typeset sub {
|
268
|
-
margin-right: 0.07812em;
|
269
|
-
margin-left: initial; }
|
270
|
-
.md-typeset blockquote {
|
271
|
-
padding-left: 1.2rem;
|
272
|
-
border-left: 0.4rem solid rgba(0, 0, 0, 0.26);
|
273
|
-
color: rgba(0, 0, 0, 0.54); }
|
274
|
-
[dir="rtl"] .md-typeset blockquote {
|
275
|
-
padding-right: 1.2rem;
|
276
|
-
padding-left: initial;
|
277
|
-
border-right: 0.4rem solid rgba(0, 0, 0, 0.26);
|
278
|
-
border-left: initial; }
|
279
|
-
.md-typeset ul {
|
280
|
-
list-style-type: disc; }
|
281
|
-
.md-typeset ul,
|
282
|
-
.md-typeset ol {
|
283
|
-
margin-left: 0.625em;
|
284
|
-
padding: 0; }
|
285
|
-
[dir="rtl"] .md-typeset ul, [dir="rtl"]
|
286
|
-
.md-typeset ol {
|
287
|
-
margin-right: 0.625em;
|
288
|
-
margin-left: initial; }
|
289
|
-
.md-typeset ul ol,
|
290
|
-
.md-typeset ol ol {
|
291
|
-
list-style-type: lower-alpha; }
|
292
|
-
.md-typeset ul ol ol,
|
293
|
-
.md-typeset ol ol ol {
|
294
|
-
list-style-type: lower-roman; }
|
295
|
-
.md-typeset ul li,
|
296
|
-
.md-typeset ol li {
|
297
|
-
margin-bottom: 0.5em;
|
298
|
-
margin-left: 1.25em; }
|
299
|
-
[dir="rtl"] .md-typeset ul li, [dir="rtl"]
|
300
|
-
.md-typeset ol li {
|
301
|
-
margin-right: 1.25em;
|
302
|
-
margin-left: initial; }
|
303
|
-
.md-typeset ul li p,
|
304
|
-
.md-typeset ul li blockquote,
|
305
|
-
.md-typeset ol li p,
|
306
|
-
.md-typeset ol li blockquote {
|
307
|
-
margin: 0.5em 0; }
|
308
|
-
.md-typeset ul li:last-child,
|
309
|
-
.md-typeset ol li:last-child {
|
310
|
-
margin-bottom: 0; }
|
311
|
-
.md-typeset ul li ul,
|
312
|
-
.md-typeset ul li ol,
|
313
|
-
.md-typeset ol li ul,
|
314
|
-
.md-typeset ol li ol {
|
315
|
-
margin: 0.5em 0 0.5em 0.625em; }
|
316
|
-
[dir="rtl"] .md-typeset ul li ul, [dir="rtl"]
|
317
|
-
.md-typeset ul li ol, [dir="rtl"]
|
318
|
-
.md-typeset ol li ul, [dir="rtl"]
|
319
|
-
.md-typeset ol li ol {
|
320
|
-
margin-right: 0.625em;
|
321
|
-
margin-left: initial; }
|
322
|
-
.md-typeset dd {
|
323
|
-
margin: 1em 0 1em 1.875em; }
|
324
|
-
[dir="rtl"] .md-typeset dd {
|
325
|
-
margin-right: 1.875em;
|
326
|
-
margin-left: initial; }
|
327
|
-
.md-typeset iframe,
|
328
|
-
.md-typeset img,
|
329
|
-
.md-typeset svg {
|
330
|
-
max-width: 100%; }
|
331
|
-
.md-typeset table:not([class]) {
|
332
|
-
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
333
|
-
display: inline-block;
|
334
|
-
max-width: 100%;
|
335
|
-
border-radius: 0.2rem;
|
336
|
-
font-size: 1.28rem;
|
337
|
-
overflow: auto;
|
338
|
-
-webkit-overflow-scrolling: touch; }
|
339
|
-
.md-typeset table:not([class]) + * {
|
340
|
-
margin-top: 1.5em; }
|
341
|
-
.md-typeset table:not([class]) th:not([align]),
|
342
|
-
.md-typeset table:not([class]) td:not([align]) {
|
343
|
-
text-align: left; }
|
344
|
-
[dir="rtl"] .md-typeset table:not([class]) th:not([align]), [dir="rtl"]
|
345
|
-
.md-typeset table:not([class]) td:not([align]) {
|
346
|
-
text-align: right; }
|
347
|
-
.md-typeset table:not([class]) th {
|
348
|
-
min-width: 10rem;
|
349
|
-
padding: 1.2rem 1.6rem;
|
350
|
-
background-color: rgba(0, 0, 0, 0.54);
|
351
|
-
color: white;
|
352
|
-
vertical-align: top; }
|
353
|
-
.md-typeset table:not([class]) td {
|
354
|
-
padding: 1.2rem 1.6rem;
|
355
|
-
border-top: 0.1rem solid rgba(0, 0, 0, 0.07);
|
356
|
-
vertical-align: top; }
|
357
|
-
.md-typeset table:not([class]) tr:first-child td {
|
358
|
-
border-top: 0; }
|
359
|
-
.md-typeset table:not([class]) a {
|
360
|
-
word-break: normal; }
|
361
|
-
.md-typeset__scrollwrap {
|
362
|
-
margin: 1em -1.6rem;
|
363
|
-
overflow-x: auto;
|
364
|
-
-webkit-overflow-scrolling: touch; }
|
365
|
-
.md-typeset .md-typeset__table {
|
366
|
-
display: inline-block;
|
367
|
-
margin-bottom: 0.5em;
|
368
|
-
padding: 0 1.6rem; }
|
369
|
-
.md-typeset .md-typeset__table table {
|
370
|
-
display: table;
|
371
|
-
width: 100%;
|
372
|
-
margin: 0;
|
373
|
-
overflow: hidden; }
|
374
|
-
|
375
|
-
html {
|
376
|
-
height: 100%;
|
377
|
-
font-size: 62.5%;
|
378
|
-
overflow-x: hidden; }
|
379
|
-
|
380
|
-
body {
|
381
|
-
position: relative;
|
382
|
-
height: 100%; }
|
383
|
-
|
384
|
-
hr {
|
385
|
-
display: block;
|
386
|
-
height: 0.1rem;
|
387
|
-
padding: 0;
|
388
|
-
border: 0; }
|
389
|
-
|
390
|
-
.md-svg {
|
391
|
-
display: none; }
|
392
|
-
|
393
|
-
.md-grid {
|
394
|
-
max-width: 122rem;
|
395
|
-
margin-right: auto;
|
396
|
-
margin-left: auto; }
|
397
|
-
|
398
|
-
.md-container,
|
399
|
-
.md-main {
|
400
|
-
overflow: auto; }
|
401
|
-
|
402
|
-
.md-container {
|
403
|
-
display: table;
|
404
|
-
width: 100%;
|
405
|
-
height: 100%;
|
406
|
-
padding-top: 4.8rem;
|
407
|
-
table-layout: fixed; }
|
408
|
-
|
409
|
-
.md-main {
|
410
|
-
display: table-row;
|
411
|
-
height: 100%; }
|
412
|
-
.md-main__inner {
|
413
|
-
height: 100%;
|
414
|
-
padding-top: 3rem;
|
415
|
-
padding-bottom: 0.1rem; }
|
416
|
-
|
417
|
-
.md-toggle {
|
418
|
-
display: none; }
|
419
|
-
|
420
|
-
.md-overlay {
|
421
|
-
position: fixed;
|
422
|
-
top: 0;
|
423
|
-
width: 0;
|
424
|
-
height: 0;
|
425
|
-
transition: width 0s 0.25s, height 0s 0.25s, opacity 0.25s;
|
426
|
-
background-color: rgba(0, 0, 0, 0.54);
|
427
|
-
opacity: 0;
|
428
|
-
z-index: 3; }
|
429
|
-
|
430
|
-
.md-flex {
|
431
|
-
display: table; }
|
432
|
-
.md-flex__cell {
|
433
|
-
display: table-cell;
|
434
|
-
position: relative;
|
435
|
-
vertical-align: top; }
|
436
|
-
.md-flex__cell--shrink {
|
437
|
-
width: 0%; }
|
438
|
-
.md-flex__cell--stretch {
|
439
|
-
display: table;
|
440
|
-
width: 100%;
|
441
|
-
table-layout: fixed; }
|
442
|
-
.md-flex__ellipsis {
|
443
|
-
display: table-cell;
|
444
|
-
text-overflow: ellipsis;
|
445
|
-
white-space: nowrap;
|
446
|
-
overflow: hidden; }
|
447
|
-
|
448
|
-
.md-skip {
|
449
|
-
position: fixed;
|
450
|
-
width: 0.1rem;
|
451
|
-
height: 0.1rem;
|
452
|
-
margin: 1rem;
|
453
|
-
padding: 0.6rem 1rem;
|
454
|
-
clip: rect(0.1rem);
|
455
|
-
-webkit-transform: translateY(0.8rem);
|
456
|
-
transform: translateY(0.8rem);
|
457
|
-
border-radius: 0.2rem;
|
458
|
-
background-color: rgba(0, 0, 0, 0.87);
|
459
|
-
color: white;
|
460
|
-
font-size: 1.28rem;
|
461
|
-
opacity: 0;
|
462
|
-
overflow: hidden; }
|
463
|
-
.md-skip:focus {
|
464
|
-
width: auto;
|
465
|
-
height: auto;
|
466
|
-
clip: auto;
|
467
|
-
-webkit-transform: translateX(0);
|
468
|
-
transform: translateX(0);
|
469
|
-
transition: opacity 0.175s 0.075s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
470
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.175s 0.075s;
|
471
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.175s 0.075s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
472
|
-
opacity: 1;
|
473
|
-
z-index: 10; }
|
474
|
-
|
475
|
-
@page {
|
476
|
-
margin: 25mm; }
|
477
|
-
|
478
|
-
.md-clipboard {
|
479
|
-
position: absolute;
|
480
|
-
top: 0.6rem;
|
481
|
-
right: 0.6rem;
|
482
|
-
width: 2.8rem;
|
483
|
-
height: 2.8rem;
|
484
|
-
border-radius: 0.2rem;
|
485
|
-
font-size: 1.6rem;
|
486
|
-
cursor: pointer;
|
487
|
-
z-index: 1;
|
488
|
-
-webkit-backface-visibility: hidden;
|
489
|
-
backface-visibility: hidden; }
|
490
|
-
.md-clipboard::before {
|
491
|
-
transition: color 0.25s, opacity 0.25s;
|
492
|
-
color: rgba(0, 0, 0, 0.07);
|
493
|
-
content: "\E14D"; }
|
494
|
-
pre:hover .md-clipboard::before,
|
495
|
-
.codehilite:hover .md-clipboard::before, .md-typeset .highlight:hover .md-clipboard::before {
|
496
|
-
color: rgba(0, 0, 0, 0.54); }
|
497
|
-
.md-clipboard:focus::before, .md-clipboard:hover::before {
|
498
|
-
color: #536dfe; }
|
499
|
-
.md-clipboard__message {
|
500
|
-
display: block;
|
501
|
-
position: absolute;
|
502
|
-
top: 0;
|
503
|
-
right: 3.4rem;
|
504
|
-
padding: 0.6rem 1rem;
|
505
|
-
-webkit-transform: translateX(0.8rem);
|
506
|
-
transform: translateX(0.8rem);
|
507
|
-
transition: opacity 0.175s, -webkit-transform 0.25s cubic-bezier(0.9, 0.1, 0.9, 0);
|
508
|
-
transition: transform 0.25s cubic-bezier(0.9, 0.1, 0.9, 0), opacity 0.175s;
|
509
|
-
transition: transform 0.25s cubic-bezier(0.9, 0.1, 0.9, 0), opacity 0.175s, -webkit-transform 0.25s cubic-bezier(0.9, 0.1, 0.9, 0);
|
510
|
-
border-radius: 0.2rem;
|
511
|
-
background-color: rgba(0, 0, 0, 0.54);
|
512
|
-
color: white;
|
513
|
-
font-size: 1.28rem;
|
514
|
-
white-space: nowrap;
|
515
|
-
opacity: 0;
|
516
|
-
pointer-events: none; }
|
517
|
-
.md-clipboard__message--active {
|
518
|
-
-webkit-transform: translateX(0);
|
519
|
-
transform: translateX(0);
|
520
|
-
transition: opacity 0.175s 0.075s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
521
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.175s 0.075s;
|
522
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.175s 0.075s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
523
|
-
opacity: 1;
|
524
|
-
pointer-events: initial; }
|
525
|
-
.md-clipboard__message::before {
|
526
|
-
content: attr(aria-label); }
|
527
|
-
.md-clipboard__message::after {
|
528
|
-
display: block;
|
529
|
-
position: absolute;
|
530
|
-
top: 50%;
|
531
|
-
right: -0.4rem;
|
532
|
-
width: 0;
|
533
|
-
margin-top: -0.4rem;
|
534
|
-
border-width: 0.4rem 0 0.4rem 0.4rem;
|
535
|
-
border-style: solid;
|
536
|
-
border-color: transparent rgba(0, 0, 0, 0.54);
|
537
|
-
content: ""; }
|
538
|
-
|
539
|
-
.md-content__inner {
|
540
|
-
margin: 0 1.6rem 2.4rem;
|
541
|
-
padding-top: 1.2rem; }
|
542
|
-
.md-content__inner::before {
|
543
|
-
display: block;
|
544
|
-
height: 0.8rem;
|
545
|
-
content: ""; }
|
546
|
-
.md-content__inner > :last-child {
|
547
|
-
margin-bottom: 0; }
|
548
|
-
|
549
|
-
.md-content__icon {
|
550
|
-
position: relative;
|
551
|
-
margin: 0.8rem 0;
|
552
|
-
padding: 0;
|
553
|
-
float: right; }
|
554
|
-
.md-typeset .md-content__icon {
|
555
|
-
color: rgba(0, 0, 0, 0.26); }
|
556
|
-
|
557
|
-
.md-header {
|
558
|
-
position: fixed;
|
559
|
-
top: 0;
|
560
|
-
right: 0;
|
561
|
-
left: 0;
|
562
|
-
height: 4.8rem;
|
563
|
-
transition: background-color 0.25s, color 0.25s;
|
564
|
-
background-color: #3f51b5;
|
565
|
-
color: white;
|
566
|
-
box-shadow: none;
|
567
|
-
z-index: 2;
|
568
|
-
-webkit-backface-visibility: hidden;
|
569
|
-
backface-visibility: hidden; }
|
570
|
-
.no-js .md-header {
|
571
|
-
transition: none;
|
572
|
-
box-shadow: none; }
|
573
|
-
.md-header[data-md-state="shadow"] {
|
574
|
-
transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
|
575
|
-
box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.1), 0 0.4rem 0.8rem rgba(0, 0, 0, 0.2); }
|
576
|
-
|
577
|
-
.md-header-nav {
|
578
|
-
padding: 0 0.4rem; }
|
579
|
-
.md-header-nav__button {
|
580
|
-
position: relative;
|
581
|
-
transition: opacity 0.25s;
|
582
|
-
z-index: 1; }
|
583
|
-
.md-header-nav__button:hover {
|
584
|
-
opacity: 0.7; }
|
585
|
-
.md-header-nav__button.md-logo * {
|
586
|
-
display: block; }
|
587
|
-
.no-js .md-header-nav__button.md-icon--search {
|
588
|
-
display: none; }
|
589
|
-
.md-header-nav__topic {
|
590
|
-
display: block;
|
591
|
-
position: absolute;
|
592
|
-
transition: opacity 0.15s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
593
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s;
|
594
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
595
|
-
text-overflow: ellipsis;
|
596
|
-
white-space: nowrap;
|
597
|
-
overflow: hidden; }
|
598
|
-
.md-header-nav__topic + .md-header-nav__topic {
|
599
|
-
-webkit-transform: translateX(2.5rem);
|
600
|
-
transform: translateX(2.5rem);
|
601
|
-
transition: opacity 0.15s, -webkit-transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1);
|
602
|
-
transition: transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1), opacity 0.15s;
|
603
|
-
transition: transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1), opacity 0.15s, -webkit-transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1);
|
604
|
-
opacity: 0;
|
605
|
-
z-index: -1;
|
606
|
-
pointer-events: none; }
|
607
|
-
[dir="rtl"] .md-header-nav__topic + .md-header-nav__topic {
|
608
|
-
-webkit-transform: translateX(-2.5rem);
|
609
|
-
transform: translateX(-2.5rem); }
|
610
|
-
.no-js .md-header-nav__topic {
|
611
|
-
position: initial; }
|
612
|
-
.no-js .md-header-nav__topic + .md-header-nav__topic {
|
613
|
-
display: none; }
|
614
|
-
.md-header-nav__title {
|
615
|
-
padding: 0 2rem;
|
616
|
-
font-size: 1.8rem;
|
617
|
-
line-height: 4.8rem; }
|
618
|
-
.md-header-nav__title[data-md-state="active"] .md-header-nav__topic {
|
619
|
-
-webkit-transform: translateX(-2.5rem);
|
620
|
-
transform: translateX(-2.5rem);
|
621
|
-
transition: opacity 0.15s, -webkit-transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1);
|
622
|
-
transition: transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1), opacity 0.15s;
|
623
|
-
transition: transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1), opacity 0.15s, -webkit-transform 0.4s cubic-bezier(1, 0.7, 0.1, 0.1);
|
624
|
-
opacity: 0;
|
625
|
-
z-index: -1;
|
626
|
-
pointer-events: none; }
|
627
|
-
[dir="rtl"] .md-header-nav__title[data-md-state="active"] .md-header-nav__topic {
|
628
|
-
-webkit-transform: translateX(2.5rem);
|
629
|
-
transform: translateX(2.5rem); }
|
630
|
-
.md-header-nav__title[data-md-state="active"] .md-header-nav__topic + .md-header-nav__topic {
|
631
|
-
-webkit-transform: translateX(0);
|
632
|
-
transform: translateX(0);
|
633
|
-
transition: opacity 0.15s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
634
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s;
|
635
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
636
|
-
opacity: 1;
|
637
|
-
z-index: 0;
|
638
|
-
pointer-events: initial; }
|
639
|
-
.md-header-nav__source {
|
640
|
-
display: none; }
|
641
|
-
|
642
|
-
.md-hero {
|
643
|
-
transition: background 0.25s;
|
644
|
-
background-color: #3f51b5;
|
645
|
-
color: white;
|
646
|
-
font-size: 2rem;
|
647
|
-
overflow: hidden; }
|
648
|
-
.md-hero__inner {
|
649
|
-
margin-top: 2rem;
|
650
|
-
padding: 1.6rem 1.6rem 0.8rem;
|
651
|
-
transition: opacity 0.25s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
652
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.25s;
|
653
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.25s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
654
|
-
transition-delay: 0.1s; }
|
655
|
-
[data-md-state="hidden"] .md-hero__inner {
|
656
|
-
pointer-events: none;
|
657
|
-
-webkit-transform: translateY(1.25rem);
|
658
|
-
transform: translateY(1.25rem);
|
659
|
-
transition: opacity 0.1s 0s, -webkit-transform 0s 0.4s;
|
660
|
-
transition: transform 0s 0.4s, opacity 0.1s 0s;
|
661
|
-
transition: transform 0s 0.4s, opacity 0.1s 0s, -webkit-transform 0s 0.4s;
|
662
|
-
opacity: 0; }
|
663
|
-
.md-hero--expand .md-hero__inner {
|
664
|
-
margin-bottom: 2.4rem; }
|
665
|
-
|
666
|
-
.md-footer-nav {
|
667
|
-
background-color: rgba(0, 0, 0, 0.87);
|
668
|
-
color: white; }
|
669
|
-
.md-footer-nav__inner {
|
670
|
-
padding: 0.4rem;
|
671
|
-
overflow: auto; }
|
672
|
-
.md-footer-nav__link {
|
673
|
-
padding-top: 2.8rem;
|
674
|
-
padding-bottom: 0.8rem;
|
675
|
-
transition: opacity 0.25s; }
|
676
|
-
.md-footer-nav__link:hover {
|
677
|
-
opacity: 0.7; }
|
678
|
-
.md-footer-nav__link--prev {
|
679
|
-
width: 25%;
|
680
|
-
float: left; }
|
681
|
-
[dir="rtl"] .md-footer-nav__link--prev {
|
682
|
-
float: right; }
|
683
|
-
.md-footer-nav__link--next {
|
684
|
-
width: 75%;
|
685
|
-
float: right;
|
686
|
-
text-align: right; }
|
687
|
-
[dir="rtl"] .md-footer-nav__link--next {
|
688
|
-
float: left;
|
689
|
-
text-align: left; }
|
690
|
-
.md-footer-nav__button {
|
691
|
-
transition: background 0.25s; }
|
692
|
-
.md-footer-nav__title {
|
693
|
-
position: relative;
|
694
|
-
padding: 0 2rem;
|
695
|
-
font-size: 1.8rem;
|
696
|
-
line-height: 4.8rem; }
|
697
|
-
.md-footer-nav__direction {
|
698
|
-
position: absolute;
|
699
|
-
right: 0;
|
700
|
-
left: 0;
|
701
|
-
margin-top: -2rem;
|
702
|
-
padding: 0 2rem;
|
703
|
-
color: rgba(255, 255, 255, 0.7);
|
704
|
-
font-size: 1.5rem; }
|
705
|
-
|
706
|
-
.md-footer-meta {
|
707
|
-
background-color: rgba(0, 0, 0, 0.895); }
|
708
|
-
.md-footer-meta__inner {
|
709
|
-
padding: 0.4rem;
|
710
|
-
overflow: auto; }
|
711
|
-
html .md-footer-meta.md-typeset a {
|
712
|
-
color: rgba(255, 255, 255, 0.7); }
|
713
|
-
html .md-footer-meta.md-typeset a:focus, html .md-footer-meta.md-typeset a:hover {
|
714
|
-
color: white; }
|
715
|
-
|
716
|
-
.md-footer-copyright {
|
717
|
-
margin: 0 1.2rem;
|
718
|
-
padding: 0.8rem 0;
|
719
|
-
color: rgba(255, 255, 255, 0.3);
|
720
|
-
font-size: 1.28rem; }
|
721
|
-
.md-footer-copyright__highlight {
|
722
|
-
color: rgba(255, 255, 255, 0.7); }
|
723
|
-
|
724
|
-
.md-footer-social {
|
725
|
-
margin: 0 0.8rem;
|
726
|
-
padding: 0.4rem 0 1.2rem; }
|
727
|
-
.md-footer-social__link {
|
728
|
-
display: inline-block;
|
729
|
-
width: 3.2rem;
|
730
|
-
height: 3.2rem;
|
731
|
-
font-size: 1.6rem;
|
732
|
-
text-align: center; }
|
733
|
-
.md-footer-social__link::before {
|
734
|
-
line-height: 1.9; }
|
735
|
-
|
736
|
-
.md-nav {
|
737
|
-
font-size: 1.4rem;
|
738
|
-
line-height: 1.3; }
|
739
|
-
.md-nav__title {
|
740
|
-
display: block;
|
741
|
-
padding: 0 1.2rem;
|
742
|
-
font-weight: 700;
|
743
|
-
text-overflow: ellipsis;
|
744
|
-
overflow: hidden; }
|
745
|
-
.md-nav__title::before {
|
746
|
-
display: none;
|
747
|
-
content: "\E5C4"; }
|
748
|
-
[dir="rtl"] .md-nav__title::before {
|
749
|
-
content: "\E5C8"; }
|
750
|
-
.md-nav__title .md-nav__button {
|
751
|
-
display: none; }
|
752
|
-
.md-nav__list {
|
753
|
-
margin: 0;
|
754
|
-
padding: 0;
|
755
|
-
list-style: none; }
|
756
|
-
.md-nav__item {
|
757
|
-
padding: 0 1.2rem; }
|
758
|
-
.md-nav__item:last-child {
|
759
|
-
padding-bottom: 1.2rem; }
|
760
|
-
.md-nav__item .md-nav__item {
|
761
|
-
padding-right: 0; }
|
762
|
-
[dir="rtl"] .md-nav__item .md-nav__item {
|
763
|
-
padding-right: 1.2rem;
|
764
|
-
padding-left: 0; }
|
765
|
-
.md-nav__item .md-nav__item:last-child {
|
766
|
-
padding-bottom: 0; }
|
767
|
-
.md-nav__button img {
|
768
|
-
width: 100%;
|
769
|
-
height: auto; }
|
770
|
-
.md-nav__link {
|
771
|
-
display: block;
|
772
|
-
margin-top: 0.625em;
|
773
|
-
transition: color 0.125s;
|
774
|
-
text-overflow: ellipsis;
|
775
|
-
cursor: pointer;
|
776
|
-
overflow: hidden; }
|
777
|
-
.md-nav__item--nested > .md-nav__link::after {
|
778
|
-
content: "\E313"; }
|
779
|
-
html .md-nav__link[for="__toc"] {
|
780
|
-
display: none; }
|
781
|
-
html .md-nav__link[for="__toc"] ~ .md-nav {
|
782
|
-
display: none; }
|
783
|
-
html .md-nav__link[for="__toc"] + .md-nav__link::after {
|
784
|
-
display: none; }
|
785
|
-
.md-nav__link[data-md-state="blur"] {
|
786
|
-
color: rgba(0, 0, 0, 0.54); }
|
787
|
-
.md-nav__link:active, .md-nav__link--active {
|
788
|
-
color: #3f51b5; }
|
789
|
-
.md-nav__item--nested > .md-nav__link {
|
790
|
-
color: inherit; }
|
791
|
-
.md-nav__link:focus, .md-nav__link:hover {
|
792
|
-
color: #536dfe; }
|
793
|
-
.md-nav__source {
|
794
|
-
display: none; }
|
795
|
-
|
796
|
-
.no-js .md-search {
|
797
|
-
display: none; }
|
798
|
-
|
799
|
-
.md-search__overlay {
|
800
|
-
opacity: 0;
|
801
|
-
z-index: 1; }
|
802
|
-
|
803
|
-
.md-search__form {
|
804
|
-
position: relative; }
|
805
|
-
|
806
|
-
.md-search__input {
|
807
|
-
position: relative;
|
808
|
-
padding: 0 4.4rem 0 7.2rem;
|
809
|
-
text-overflow: ellipsis;
|
810
|
-
z-index: 2; }
|
811
|
-
[dir="rtl"] .md-search__input {
|
812
|
-
padding: 0 7.2rem 0 4.4rem; }
|
813
|
-
.md-search__input::-webkit-input-placeholder {
|
814
|
-
transition: color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1); }
|
815
|
-
.md-search__input:-ms-input-placeholder {
|
816
|
-
transition: color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1); }
|
817
|
-
.md-search__input::-ms-input-placeholder {
|
818
|
-
transition: color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1); }
|
819
|
-
.md-search__input::placeholder {
|
820
|
-
transition: color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1); }
|
821
|
-
.md-search__input ~ .md-search__icon, .md-search__input::-webkit-input-placeholder {
|
822
|
-
color: rgba(0, 0, 0, 0.54); }
|
823
|
-
.md-search__input ~ .md-search__icon, .md-search__input:-ms-input-placeholder {
|
824
|
-
color: rgba(0, 0, 0, 0.54); }
|
825
|
-
.md-search__input ~ .md-search__icon, .md-search__input::-ms-input-placeholder {
|
826
|
-
color: rgba(0, 0, 0, 0.54); }
|
827
|
-
.md-search__input ~ .md-search__icon, .md-search__input::placeholder {
|
828
|
-
color: rgba(0, 0, 0, 0.54); }
|
829
|
-
.md-search__input::-ms-clear {
|
830
|
-
display: none; }
|
831
|
-
|
832
|
-
.md-search__icon {
|
833
|
-
position: absolute;
|
834
|
-
transition: color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.25s;
|
835
|
-
font-size: 2.4rem;
|
836
|
-
cursor: pointer;
|
837
|
-
z-index: 2; }
|
838
|
-
.md-search__icon:hover {
|
839
|
-
opacity: 0.7; }
|
840
|
-
.md-search__icon[for="__search"] {
|
841
|
-
top: 0.6rem;
|
842
|
-
left: 1rem; }
|
843
|
-
[dir="rtl"] .md-search__icon[for="__search"] {
|
844
|
-
right: 1rem;
|
845
|
-
left: initial; }
|
846
|
-
.md-search__icon[for="__search"]::before {
|
847
|
-
content: "\E8B6"; }
|
848
|
-
.md-search__icon[type="reset"] {
|
849
|
-
top: 0.6rem;
|
850
|
-
right: 1rem;
|
851
|
-
-webkit-transform: scale(0.125);
|
852
|
-
transform: scale(0.125);
|
853
|
-
transition: opacity 0.15s, -webkit-transform 0.15s cubic-bezier(0.1, 0.7, 0.1, 1);
|
854
|
-
transition: transform 0.15s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s;
|
855
|
-
transition: transform 0.15s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s, -webkit-transform 0.15s cubic-bezier(0.1, 0.7, 0.1, 1);
|
856
|
-
opacity: 0; }
|
857
|
-
[dir="rtl"] .md-search__icon[type="reset"] {
|
858
|
-
right: initial;
|
859
|
-
left: 1rem; }
|
860
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input:valid ~ .md-search__icon[type="reset"] {
|
861
|
-
-webkit-transform: scale(1);
|
862
|
-
transform: scale(1);
|
863
|
-
opacity: 1; }
|
864
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input:valid ~ .md-search__icon[type="reset"]:hover {
|
865
|
-
opacity: 0.7; }
|
866
|
-
|
867
|
-
.md-search__output {
|
868
|
-
position: absolute;
|
869
|
-
width: 100%;
|
870
|
-
border-radius: 0 0 0.2rem 0.2rem;
|
871
|
-
overflow: hidden;
|
872
|
-
z-index: 1; }
|
873
|
-
|
874
|
-
.md-search__scrollwrap {
|
875
|
-
height: 100%;
|
876
|
-
background-color: white;
|
877
|
-
box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.07) inset;
|
878
|
-
overflow-y: auto;
|
879
|
-
-webkit-overflow-scrolling: touch; }
|
880
|
-
|
881
|
-
.md-search-result {
|
882
|
-
color: rgba(0, 0, 0, 0.87);
|
883
|
-
word-break: break-word; }
|
884
|
-
.md-search-result__meta {
|
885
|
-
padding: 0 1.6rem;
|
886
|
-
background-color: rgba(0, 0, 0, 0.07);
|
887
|
-
color: rgba(0, 0, 0, 0.54);
|
888
|
-
font-size: 1.28rem;
|
889
|
-
line-height: 3.6rem; }
|
890
|
-
.md-search-result__list {
|
891
|
-
margin: 0;
|
892
|
-
padding: 0;
|
893
|
-
border-top: 0.1rem solid rgba(0, 0, 0, 0.07);
|
894
|
-
list-style: none; }
|
895
|
-
.md-search-result__item {
|
896
|
-
box-shadow: 0 -0.1rem 0 rgba(0, 0, 0, 0.07); }
|
897
|
-
.md-search-result__link {
|
898
|
-
display: block;
|
899
|
-
transition: background 0.25s;
|
900
|
-
outline: 0;
|
901
|
-
overflow: hidden; }
|
902
|
-
.md-search-result__link[data-md-state="active"], .md-search-result__link:hover {
|
903
|
-
background-color: rgba(83, 109, 254, 0.1); }
|
904
|
-
.md-search-result__link[data-md-state="active"] .md-search-result__article::before, .md-search-result__link:hover .md-search-result__article::before {
|
905
|
-
opacity: 0.7; }
|
906
|
-
.md-search-result__link:last-child .md-search-result__teaser {
|
907
|
-
margin-bottom: 1.2rem; }
|
908
|
-
.md-search-result__article {
|
909
|
-
position: relative;
|
910
|
-
padding: 0 1.6rem;
|
911
|
-
overflow: auto; }
|
912
|
-
.md-search-result__article--document::before {
|
913
|
-
position: absolute;
|
914
|
-
left: 0;
|
915
|
-
margin: 0.2rem;
|
916
|
-
transition: opacity 0.25s;
|
917
|
-
color: rgba(0, 0, 0, 0.54);
|
918
|
-
content: "\E880"; }
|
919
|
-
[dir="rtl"] .md-search-result__article--document::before {
|
920
|
-
right: 0;
|
921
|
-
left: initial; }
|
922
|
-
.md-search-result__article--document .md-search-result__title {
|
923
|
-
margin: 1.1rem 0;
|
924
|
-
font-size: 1.6rem;
|
925
|
-
font-weight: 400;
|
926
|
-
line-height: 1.4; }
|
927
|
-
.md-search-result__title {
|
928
|
-
margin: 0.5em 0;
|
929
|
-
font-size: 1.28rem;
|
930
|
-
font-weight: 700;
|
931
|
-
line-height: 1.4; }
|
932
|
-
.md-search-result__teaser {
|
933
|
-
display: -webkit-box;
|
934
|
-
max-height: 3.3rem;
|
935
|
-
margin: 0.5em 0;
|
936
|
-
color: rgba(0, 0, 0, 0.54);
|
937
|
-
font-size: 1.28rem;
|
938
|
-
line-height: 1.4;
|
939
|
-
text-overflow: ellipsis;
|
940
|
-
overflow: hidden;
|
941
|
-
-webkit-line-clamp: 2; }
|
942
|
-
.md-search-result em {
|
943
|
-
font-style: normal;
|
944
|
-
font-weight: 700;
|
945
|
-
text-decoration: underline; }
|
946
|
-
|
947
|
-
.md-sidebar {
|
948
|
-
position: absolute;
|
949
|
-
width: 24.2rem;
|
950
|
-
padding: 2.4rem 0;
|
951
|
-
overflow: hidden; }
|
952
|
-
.md-sidebar[data-md-state="lock"] {
|
953
|
-
position: fixed;
|
954
|
-
top: 4.8rem; }
|
955
|
-
.md-sidebar--secondary {
|
956
|
-
display: none; }
|
957
|
-
.md-sidebar__scrollwrap {
|
958
|
-
max-height: 100%;
|
959
|
-
margin: 0 0.4rem;
|
960
|
-
overflow-y: auto;
|
961
|
-
-webkit-backface-visibility: hidden;
|
962
|
-
backface-visibility: hidden; }
|
963
|
-
.md-sidebar__scrollwrap::-webkit-scrollbar {
|
964
|
-
width: 0.4rem;
|
965
|
-
height: 0.4rem; }
|
966
|
-
.md-sidebar__scrollwrap::-webkit-scrollbar-thumb {
|
967
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
968
|
-
.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover {
|
969
|
-
background-color: #536dfe; }
|
970
|
-
|
971
|
-
@-webkit-keyframes md-source__facts--done {
|
972
|
-
0% {
|
973
|
-
height: 0; }
|
974
|
-
100% {
|
975
|
-
height: 1.3rem; } }
|
976
|
-
|
977
|
-
@keyframes md-source__facts--done {
|
978
|
-
0% {
|
979
|
-
height: 0; }
|
980
|
-
100% {
|
981
|
-
height: 1.3rem; } }
|
982
|
-
|
983
|
-
@-webkit-keyframes md-source__fact--done {
|
984
|
-
0% {
|
985
|
-
-webkit-transform: translateY(100%);
|
986
|
-
transform: translateY(100%);
|
987
|
-
opacity: 0; }
|
988
|
-
50% {
|
989
|
-
opacity: 0; }
|
990
|
-
100% {
|
991
|
-
-webkit-transform: translateY(0%);
|
992
|
-
transform: translateY(0%);
|
993
|
-
opacity: 1; } }
|
994
|
-
|
995
|
-
@keyframes md-source__fact--done {
|
996
|
-
0% {
|
997
|
-
-webkit-transform: translateY(100%);
|
998
|
-
transform: translateY(100%);
|
999
|
-
opacity: 0; }
|
1000
|
-
50% {
|
1001
|
-
opacity: 0; }
|
1002
|
-
100% {
|
1003
|
-
-webkit-transform: translateY(0%);
|
1004
|
-
transform: translateY(0%);
|
1005
|
-
opacity: 1; } }
|
1006
|
-
|
1007
|
-
.md-source {
|
1008
|
-
display: block;
|
1009
|
-
padding-right: 1.2rem;
|
1010
|
-
transition: opacity 0.25s;
|
1011
|
-
font-size: 1.3rem;
|
1012
|
-
line-height: 1.2;
|
1013
|
-
white-space: nowrap; }
|
1014
|
-
[dir="rtl"] .md-source {
|
1015
|
-
padding-right: initial;
|
1016
|
-
padding-left: 1.2rem; }
|
1017
|
-
.md-source:hover {
|
1018
|
-
opacity: 0.7; }
|
1019
|
-
.md-source::after {
|
1020
|
-
display: inline-block;
|
1021
|
-
height: 4.8rem;
|
1022
|
-
content: "";
|
1023
|
-
vertical-align: middle; }
|
1024
|
-
.md-source__icon {
|
1025
|
-
display: inline-block;
|
1026
|
-
width: 4.8rem;
|
1027
|
-
height: 4.8rem;
|
1028
|
-
content: "";
|
1029
|
-
vertical-align: middle; }
|
1030
|
-
.md-source__icon svg {
|
1031
|
-
width: 2.4rem;
|
1032
|
-
height: 2.4rem;
|
1033
|
-
margin-top: 1.2rem;
|
1034
|
-
margin-left: 1.2rem; }
|
1035
|
-
[dir="rtl"] .md-source__icon svg {
|
1036
|
-
margin-right: 1.2rem;
|
1037
|
-
margin-left: initial; }
|
1038
|
-
.md-source__icon + .md-source__repository {
|
1039
|
-
margin-left: -4.4rem;
|
1040
|
-
padding-left: 4rem; }
|
1041
|
-
[dir="rtl"] .md-source__icon + .md-source__repository {
|
1042
|
-
margin-right: -4.4rem;
|
1043
|
-
margin-left: initial;
|
1044
|
-
padding-right: 4rem;
|
1045
|
-
padding-left: initial; }
|
1046
|
-
.md-source__repository {
|
1047
|
-
display: inline-block;
|
1048
|
-
max-width: 100%;
|
1049
|
-
margin-left: 1.2rem;
|
1050
|
-
font-weight: 700;
|
1051
|
-
text-overflow: ellipsis;
|
1052
|
-
overflow: hidden;
|
1053
|
-
vertical-align: middle; }
|
1054
|
-
.md-source__facts {
|
1055
|
-
margin: 0;
|
1056
|
-
padding: 0;
|
1057
|
-
font-size: 1.1rem;
|
1058
|
-
font-weight: 700;
|
1059
|
-
list-style-type: none;
|
1060
|
-
opacity: 0.75;
|
1061
|
-
overflow: hidden; }
|
1062
|
-
[data-md-state="done"] .md-source__facts {
|
1063
|
-
-webkit-animation: md-source__facts--done 0.25s ease-in;
|
1064
|
-
animation: md-source__facts--done 0.25s ease-in; }
|
1065
|
-
.md-source__fact {
|
1066
|
-
float: left; }
|
1067
|
-
[dir="rtl"] .md-source__fact {
|
1068
|
-
float: right; }
|
1069
|
-
[data-md-state="done"] .md-source__fact {
|
1070
|
-
-webkit-animation: md-source__fact--done 0.4s ease-out;
|
1071
|
-
animation: md-source__fact--done 0.4s ease-out; }
|
1072
|
-
.md-source__fact::before {
|
1073
|
-
margin: 0 0.2rem;
|
1074
|
-
content: "\B7"; }
|
1075
|
-
.md-source__fact:first-child::before {
|
1076
|
-
display: none; }
|
1077
|
-
|
1078
|
-
.md-source-file {
|
1079
|
-
display: inline-block;
|
1080
|
-
margin: 1em 0.5em 1em 0;
|
1081
|
-
padding-right: 0.5rem;
|
1082
|
-
border-radius: 0.2rem;
|
1083
|
-
background-color: rgba(0, 0, 0, 0.07);
|
1084
|
-
font-size: 1.28rem;
|
1085
|
-
list-style-type: none;
|
1086
|
-
cursor: pointer;
|
1087
|
-
overflow: hidden; }
|
1088
|
-
.md-source-file::before {
|
1089
|
-
display: inline-block;
|
1090
|
-
margin-right: 0.5rem;
|
1091
|
-
padding: 0.5rem;
|
1092
|
-
background-color: rgba(0, 0, 0, 0.26);
|
1093
|
-
color: white;
|
1094
|
-
font-size: 1.6rem;
|
1095
|
-
content: "\E86F";
|
1096
|
-
vertical-align: middle; }
|
1097
|
-
html .md-source-file {
|
1098
|
-
transition: background 0.4s, color 0.4s, box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
|
1099
|
-
html .md-source-file::before {
|
1100
|
-
transition: inherit; }
|
1101
|
-
html body .md-typeset .md-source-file {
|
1102
|
-
color: rgba(0, 0, 0, 0.54); }
|
1103
|
-
.md-source-file:hover {
|
1104
|
-
box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36); }
|
1105
|
-
.md-source-file:hover::before {
|
1106
|
-
background-color: #536dfe; }
|
1107
|
-
|
1108
|
-
.md-tabs {
|
1109
|
-
width: 100%;
|
1110
|
-
transition: background 0.25s;
|
1111
|
-
background-color: #3f51b5;
|
1112
|
-
color: white;
|
1113
|
-
overflow: auto; }
|
1114
|
-
.md-tabs__list {
|
1115
|
-
margin: 0;
|
1116
|
-
margin-left: 0.4rem;
|
1117
|
-
padding: 0;
|
1118
|
-
list-style: none;
|
1119
|
-
white-space: nowrap; }
|
1120
|
-
.md-tabs__item {
|
1121
|
-
display: inline-block;
|
1122
|
-
height: 4.8rem;
|
1123
|
-
padding-right: 1.2rem;
|
1124
|
-
padding-left: 1.2rem; }
|
1125
|
-
.md-tabs__link {
|
1126
|
-
display: block;
|
1127
|
-
margin-top: 1.6rem;
|
1128
|
-
transition: opacity 0.25s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
1129
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.25s;
|
1130
|
-
transition: transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.25s, -webkit-transform 0.4s cubic-bezier(0.1, 0.7, 0.1, 1);
|
1131
|
-
font-size: 1.4rem;
|
1132
|
-
opacity: 0.7; }
|
1133
|
-
.md-tabs__link--active, .md-tabs__link:hover {
|
1134
|
-
color: inherit;
|
1135
|
-
opacity: 1; }
|
1136
|
-
.md-tabs__item:nth-child(2) .md-tabs__link {
|
1137
|
-
transition-delay: 0.02s; }
|
1138
|
-
.md-tabs__item:nth-child(3) .md-tabs__link {
|
1139
|
-
transition-delay: 0.04s; }
|
1140
|
-
.md-tabs__item:nth-child(4) .md-tabs__link {
|
1141
|
-
transition-delay: 0.06s; }
|
1142
|
-
.md-tabs__item:nth-child(5) .md-tabs__link {
|
1143
|
-
transition-delay: 0.08s; }
|
1144
|
-
.md-tabs__item:nth-child(6) .md-tabs__link {
|
1145
|
-
transition-delay: 0.1s; }
|
1146
|
-
.md-tabs__item:nth-child(7) .md-tabs__link {
|
1147
|
-
transition-delay: 0.12s; }
|
1148
|
-
.md-tabs__item:nth-child(8) .md-tabs__link {
|
1149
|
-
transition-delay: 0.14s; }
|
1150
|
-
.md-tabs__item:nth-child(9) .md-tabs__link {
|
1151
|
-
transition-delay: 0.16s; }
|
1152
|
-
.md-tabs__item:nth-child(10) .md-tabs__link {
|
1153
|
-
transition-delay: 0.18s; }
|
1154
|
-
.md-tabs__item:nth-child(11) .md-tabs__link {
|
1155
|
-
transition-delay: 0.2s; }
|
1156
|
-
.md-tabs__item:nth-child(12) .md-tabs__link {
|
1157
|
-
transition-delay: 0.22s; }
|
1158
|
-
.md-tabs__item:nth-child(13) .md-tabs__link {
|
1159
|
-
transition-delay: 0.24s; }
|
1160
|
-
.md-tabs__item:nth-child(14) .md-tabs__link {
|
1161
|
-
transition-delay: 0.26s; }
|
1162
|
-
.md-tabs__item:nth-child(15) .md-tabs__link {
|
1163
|
-
transition-delay: 0.28s; }
|
1164
|
-
.md-tabs__item:nth-child(16) .md-tabs__link {
|
1165
|
-
transition-delay: 0.3s; }
|
1166
|
-
.md-tabs[data-md-state="hidden"] {
|
1167
|
-
pointer-events: none; }
|
1168
|
-
.md-tabs[data-md-state="hidden"] .md-tabs__link {
|
1169
|
-
-webkit-transform: translateY(50%);
|
1170
|
-
transform: translateY(50%);
|
1171
|
-
transition: color 0.25s, opacity 0.1s, -webkit-transform 0s 0.4s;
|
1172
|
-
transition: color 0.25s, transform 0s 0.4s, opacity 0.1s;
|
1173
|
-
transition: color 0.25s, transform 0s 0.4s, opacity 0.1s, -webkit-transform 0s 0.4s;
|
1174
|
-
opacity: 0; }
|
1175
|
-
|
1176
|
-
.md-typeset .admonition, .md-typeset details {
|
1177
|
-
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
1178
|
-
position: relative;
|
1179
|
-
margin: 1.5625em 0;
|
1180
|
-
padding: 0 1.2rem;
|
1181
|
-
border-left: 0.4rem solid #448aff;
|
1182
|
-
border-radius: 0.2rem;
|
1183
|
-
font-size: 1.28rem;
|
1184
|
-
overflow: auto; }
|
1185
|
-
[dir="rtl"] .md-typeset .admonition, [dir="rtl"] .md-typeset details {
|
1186
|
-
border-right: 0.4rem solid #448aff;
|
1187
|
-
border-left: none; }
|
1188
|
-
html .md-typeset .admonition > :last-child, html .md-typeset details > :last-child {
|
1189
|
-
margin-bottom: 1.2rem; }
|
1190
|
-
.md-typeset .admonition .admonition, .md-typeset details .admonition, .md-typeset .admonition details, .md-typeset details details {
|
1191
|
-
margin: 1em 0; }
|
1192
|
-
.md-typeset .admonition > .admonition-title, .md-typeset details > .admonition-title, .md-typeset .admonition > summary, .md-typeset details > summary {
|
1193
|
-
margin: 0 -1.2rem;
|
1194
|
-
padding: 0.8rem 1.2rem 0.8rem 4rem;
|
1195
|
-
border-bottom: 0.1rem solid rgba(68, 138, 255, 0.1);
|
1196
|
-
background-color: rgba(68, 138, 255, 0.1);
|
1197
|
-
font-weight: 700; }
|
1198
|
-
[dir="rtl"] .md-typeset .admonition > .admonition-title, [dir="rtl"] .md-typeset details > .admonition-title, [dir="rtl"] .md-typeset .admonition > summary, [dir="rtl"] .md-typeset details > summary {
|
1199
|
-
padding: 0.8rem 4rem 0.8rem 1.2rem; }
|
1200
|
-
.md-typeset .admonition > .admonition-title:last-child, .md-typeset details > .admonition-title:last-child, .md-typeset .admonition > summary:last-child, .md-typeset details > summary:last-child {
|
1201
|
-
margin-bottom: 0; }
|
1202
|
-
.md-typeset .admonition > .admonition-title::before, .md-typeset details > .admonition-title::before, .md-typeset .admonition > summary::before, .md-typeset details > summary::before {
|
1203
|
-
position: absolute;
|
1204
|
-
left: 1.2rem;
|
1205
|
-
color: #448aff;
|
1206
|
-
font-size: 2rem;
|
1207
|
-
content: "\E3C9"; }
|
1208
|
-
[dir="rtl"] .md-typeset .admonition > .admonition-title::before, [dir="rtl"] .md-typeset details > .admonition-title::before, [dir="rtl"] .md-typeset .admonition > summary::before, [dir="rtl"] .md-typeset details > summary::before {
|
1209
|
-
right: 1.2rem;
|
1210
|
-
left: initial; }
|
1211
|
-
.md-typeset .admonition.summary, .md-typeset details.summary, .md-typeset .admonition.tldr, .md-typeset details.tldr, .md-typeset .admonition.abstract, .md-typeset details.abstract {
|
1212
|
-
border-left-color: #00b0ff; }
|
1213
|
-
[dir="rtl"] .md-typeset .admonition.summary, [dir="rtl"] .md-typeset details.summary, [dir="rtl"] .md-typeset .admonition.tldr, [dir="rtl"] .md-typeset details.tldr, [dir="rtl"] .md-typeset .admonition.abstract, [dir="rtl"] .md-typeset details.abstract {
|
1214
|
-
border-right-color: #00b0ff; }
|
1215
|
-
.md-typeset .admonition.summary > .admonition-title, .md-typeset details.summary > .admonition-title, .md-typeset .admonition.tldr > .admonition-title, .md-typeset details.tldr > .admonition-title, .md-typeset .admonition.summary > summary, .md-typeset details.summary > summary, .md-typeset .admonition.tldr > summary, .md-typeset details.tldr > summary, .md-typeset .admonition.abstract > .admonition-title, .md-typeset details.abstract > .admonition-title, .md-typeset .admonition.abstract > summary, .md-typeset details.abstract > summary {
|
1216
|
-
border-bottom-color: 0.1rem solid rgba(0, 176, 255, 0.1);
|
1217
|
-
background-color: rgba(0, 176, 255, 0.1); }
|
1218
|
-
.md-typeset .admonition.summary > .admonition-title::before, .md-typeset details.summary > .admonition-title::before, .md-typeset .admonition.tldr > .admonition-title::before, .md-typeset details.tldr > .admonition-title::before, .md-typeset .admonition.summary > summary::before, .md-typeset details.summary > summary::before, .md-typeset .admonition.tldr > summary::before, .md-typeset details.tldr > summary::before, .md-typeset .admonition.abstract > .admonition-title::before, .md-typeset details.abstract > .admonition-title::before, .md-typeset .admonition.abstract > summary::before, .md-typeset details.abstract > summary::before {
|
1219
|
-
color: #00b0ff;
|
1220
|
-
content: "\E8D2"; }
|
1221
|
-
.md-typeset .admonition.todo, .md-typeset details.todo, .md-typeset .admonition.info, .md-typeset details.info {
|
1222
|
-
border-left-color: #00b8d4; }
|
1223
|
-
[dir="rtl"] .md-typeset .admonition.todo, [dir="rtl"] .md-typeset details.todo, [dir="rtl"] .md-typeset .admonition.info, [dir="rtl"] .md-typeset details.info {
|
1224
|
-
border-right-color: #00b8d4; }
|
1225
|
-
.md-typeset .admonition.todo > .admonition-title, .md-typeset details.todo > .admonition-title, .md-typeset .admonition.todo > summary, .md-typeset details.todo > summary, .md-typeset .admonition.info > .admonition-title, .md-typeset details.info > .admonition-title, .md-typeset .admonition.info > summary, .md-typeset details.info > summary {
|
1226
|
-
border-bottom-color: 0.1rem solid rgba(0, 184, 212, 0.1);
|
1227
|
-
background-color: rgba(0, 184, 212, 0.1); }
|
1228
|
-
.md-typeset .admonition.todo > .admonition-title::before, .md-typeset details.todo > .admonition-title::before, .md-typeset .admonition.todo > summary::before, .md-typeset details.todo > summary::before, .md-typeset .admonition.info > .admonition-title::before, .md-typeset details.info > .admonition-title::before, .md-typeset .admonition.info > summary::before, .md-typeset details.info > summary::before {
|
1229
|
-
color: #00b8d4;
|
1230
|
-
content: "\E88E"; }
|
1231
|
-
.md-typeset .admonition.hint, .md-typeset details.hint, .md-typeset .admonition.important, .md-typeset details.important, .md-typeset .admonition.tip, .md-typeset details.tip {
|
1232
|
-
border-left-color: #00bfa5; }
|
1233
|
-
[dir="rtl"] .md-typeset .admonition.hint, [dir="rtl"] .md-typeset details.hint, [dir="rtl"] .md-typeset .admonition.important, [dir="rtl"] .md-typeset details.important, [dir="rtl"] .md-typeset .admonition.tip, [dir="rtl"] .md-typeset details.tip {
|
1234
|
-
border-right-color: #00bfa5; }
|
1235
|
-
.md-typeset .admonition.hint > .admonition-title, .md-typeset details.hint > .admonition-title, .md-typeset .admonition.important > .admonition-title, .md-typeset details.important > .admonition-title, .md-typeset .admonition.hint > summary, .md-typeset details.hint > summary, .md-typeset .admonition.important > summary, .md-typeset details.important > summary, .md-typeset .admonition.tip > .admonition-title, .md-typeset details.tip > .admonition-title, .md-typeset .admonition.tip > summary, .md-typeset details.tip > summary {
|
1236
|
-
border-bottom-color: 0.1rem solid rgba(0, 191, 165, 0.1);
|
1237
|
-
background-color: rgba(0, 191, 165, 0.1); }
|
1238
|
-
.md-typeset .admonition.hint > .admonition-title::before, .md-typeset details.hint > .admonition-title::before, .md-typeset .admonition.important > .admonition-title::before, .md-typeset details.important > .admonition-title::before, .md-typeset .admonition.hint > summary::before, .md-typeset details.hint > summary::before, .md-typeset .admonition.important > summary::before, .md-typeset details.important > summary::before, .md-typeset .admonition.tip > .admonition-title::before, .md-typeset details.tip > .admonition-title::before, .md-typeset .admonition.tip > summary::before, .md-typeset details.tip > summary::before {
|
1239
|
-
color: #00bfa5;
|
1240
|
-
content: "\E80E"; }
|
1241
|
-
.md-typeset .admonition.check, .md-typeset details.check, .md-typeset .admonition.done, .md-typeset details.done, .md-typeset .admonition.success, .md-typeset details.success {
|
1242
|
-
border-left-color: #00c853; }
|
1243
|
-
[dir="rtl"] .md-typeset .admonition.check, [dir="rtl"] .md-typeset details.check, [dir="rtl"] .md-typeset .admonition.done, [dir="rtl"] .md-typeset details.done, [dir="rtl"] .md-typeset .admonition.success, [dir="rtl"] .md-typeset details.success {
|
1244
|
-
border-right-color: #00c853; }
|
1245
|
-
.md-typeset .admonition.check > .admonition-title, .md-typeset details.check > .admonition-title, .md-typeset .admonition.done > .admonition-title, .md-typeset details.done > .admonition-title, .md-typeset .admonition.check > summary, .md-typeset details.check > summary, .md-typeset .admonition.done > summary, .md-typeset details.done > summary, .md-typeset .admonition.success > .admonition-title, .md-typeset details.success > .admonition-title, .md-typeset .admonition.success > summary, .md-typeset details.success > summary {
|
1246
|
-
border-bottom-color: 0.1rem solid rgba(0, 200, 83, 0.1);
|
1247
|
-
background-color: rgba(0, 200, 83, 0.1); }
|
1248
|
-
.md-typeset .admonition.check > .admonition-title::before, .md-typeset details.check > .admonition-title::before, .md-typeset .admonition.done > .admonition-title::before, .md-typeset details.done > .admonition-title::before, .md-typeset .admonition.check > summary::before, .md-typeset details.check > summary::before, .md-typeset .admonition.done > summary::before, .md-typeset details.done > summary::before, .md-typeset .admonition.success > .admonition-title::before, .md-typeset details.success > .admonition-title::before, .md-typeset .admonition.success > summary::before, .md-typeset details.success > summary::before {
|
1249
|
-
color: #00c853;
|
1250
|
-
content: "\E876"; }
|
1251
|
-
.md-typeset .admonition.help, .md-typeset details.help, .md-typeset .admonition.faq, .md-typeset details.faq, .md-typeset .admonition.question, .md-typeset details.question {
|
1252
|
-
border-left-color: #64dd17; }
|
1253
|
-
[dir="rtl"] .md-typeset .admonition.help, [dir="rtl"] .md-typeset details.help, [dir="rtl"] .md-typeset .admonition.faq, [dir="rtl"] .md-typeset details.faq, [dir="rtl"] .md-typeset .admonition.question, [dir="rtl"] .md-typeset details.question {
|
1254
|
-
border-right-color: #64dd17; }
|
1255
|
-
.md-typeset .admonition.help > .admonition-title, .md-typeset details.help > .admonition-title, .md-typeset .admonition.faq > .admonition-title, .md-typeset details.faq > .admonition-title, .md-typeset .admonition.help > summary, .md-typeset details.help > summary, .md-typeset .admonition.faq > summary, .md-typeset details.faq > summary, .md-typeset .admonition.question > .admonition-title, .md-typeset details.question > .admonition-title, .md-typeset .admonition.question > summary, .md-typeset details.question > summary {
|
1256
|
-
border-bottom-color: 0.1rem solid rgba(100, 221, 23, 0.1);
|
1257
|
-
background-color: rgba(100, 221, 23, 0.1); }
|
1258
|
-
.md-typeset .admonition.help > .admonition-title::before, .md-typeset details.help > .admonition-title::before, .md-typeset .admonition.faq > .admonition-title::before, .md-typeset details.faq > .admonition-title::before, .md-typeset .admonition.help > summary::before, .md-typeset details.help > summary::before, .md-typeset .admonition.faq > summary::before, .md-typeset details.faq > summary::before, .md-typeset .admonition.question > .admonition-title::before, .md-typeset details.question > .admonition-title::before, .md-typeset .admonition.question > summary::before, .md-typeset details.question > summary::before {
|
1259
|
-
color: #64dd17;
|
1260
|
-
content: "\E887"; }
|
1261
|
-
.md-typeset .admonition.caution, .md-typeset details.caution, .md-typeset .admonition.attention, .md-typeset details.attention, .md-typeset .admonition.warning, .md-typeset details.warning {
|
1262
|
-
border-left-color: #ff9100; }
|
1263
|
-
[dir="rtl"] .md-typeset .admonition.caution, [dir="rtl"] .md-typeset details.caution, [dir="rtl"] .md-typeset .admonition.attention, [dir="rtl"] .md-typeset details.attention, [dir="rtl"] .md-typeset .admonition.warning, [dir="rtl"] .md-typeset details.warning {
|
1264
|
-
border-right-color: #ff9100; }
|
1265
|
-
.md-typeset .admonition.caution > .admonition-title, .md-typeset details.caution > .admonition-title, .md-typeset .admonition.attention > .admonition-title, .md-typeset details.attention > .admonition-title, .md-typeset .admonition.caution > summary, .md-typeset details.caution > summary, .md-typeset .admonition.attention > summary, .md-typeset details.attention > summary, .md-typeset .admonition.warning > .admonition-title, .md-typeset details.warning > .admonition-title, .md-typeset .admonition.warning > summary, .md-typeset details.warning > summary {
|
1266
|
-
border-bottom-color: 0.1rem solid rgba(255, 145, 0, 0.1);
|
1267
|
-
background-color: rgba(255, 145, 0, 0.1); }
|
1268
|
-
.md-typeset .admonition.caution > .admonition-title::before, .md-typeset details.caution > .admonition-title::before, .md-typeset .admonition.attention > .admonition-title::before, .md-typeset details.attention > .admonition-title::before, .md-typeset .admonition.caution > summary::before, .md-typeset details.caution > summary::before, .md-typeset .admonition.attention > summary::before, .md-typeset details.attention > summary::before, .md-typeset .admonition.warning > .admonition-title::before, .md-typeset details.warning > .admonition-title::before, .md-typeset .admonition.warning > summary::before, .md-typeset details.warning > summary::before {
|
1269
|
-
color: #ff9100;
|
1270
|
-
content: "\E002"; }
|
1271
|
-
.md-typeset .admonition.fail, .md-typeset details.fail, .md-typeset .admonition.missing, .md-typeset details.missing, .md-typeset .admonition.failure, .md-typeset details.failure {
|
1272
|
-
border-left-color: #ff5252; }
|
1273
|
-
[dir="rtl"] .md-typeset .admonition.fail, [dir="rtl"] .md-typeset details.fail, [dir="rtl"] .md-typeset .admonition.missing, [dir="rtl"] .md-typeset details.missing, [dir="rtl"] .md-typeset .admonition.failure, [dir="rtl"] .md-typeset details.failure {
|
1274
|
-
border-right-color: #ff5252; }
|
1275
|
-
.md-typeset .admonition.fail > .admonition-title, .md-typeset details.fail > .admonition-title, .md-typeset .admonition.missing > .admonition-title, .md-typeset details.missing > .admonition-title, .md-typeset .admonition.fail > summary, .md-typeset details.fail > summary, .md-typeset .admonition.missing > summary, .md-typeset details.missing > summary, .md-typeset .admonition.failure > .admonition-title, .md-typeset details.failure > .admonition-title, .md-typeset .admonition.failure > summary, .md-typeset details.failure > summary {
|
1276
|
-
border-bottom-color: 0.1rem solid rgba(255, 82, 82, 0.1);
|
1277
|
-
background-color: rgba(255, 82, 82, 0.1); }
|
1278
|
-
.md-typeset .admonition.fail > .admonition-title::before, .md-typeset details.fail > .admonition-title::before, .md-typeset .admonition.missing > .admonition-title::before, .md-typeset details.missing > .admonition-title::before, .md-typeset .admonition.fail > summary::before, .md-typeset details.fail > summary::before, .md-typeset .admonition.missing > summary::before, .md-typeset details.missing > summary::before, .md-typeset .admonition.failure > .admonition-title::before, .md-typeset details.failure > .admonition-title::before, .md-typeset .admonition.failure > summary::before, .md-typeset details.failure > summary::before {
|
1279
|
-
color: #ff5252;
|
1280
|
-
content: "\E14C"; }
|
1281
|
-
.md-typeset .admonition.error, .md-typeset details.error, .md-typeset .admonition.danger, .md-typeset details.danger {
|
1282
|
-
border-left-color: #ff1744; }
|
1283
|
-
[dir="rtl"] .md-typeset .admonition.error, [dir="rtl"] .md-typeset details.error, [dir="rtl"] .md-typeset .admonition.danger, [dir="rtl"] .md-typeset details.danger {
|
1284
|
-
border-right-color: #ff1744; }
|
1285
|
-
.md-typeset .admonition.error > .admonition-title, .md-typeset details.error > .admonition-title, .md-typeset .admonition.error > summary, .md-typeset details.error > summary, .md-typeset .admonition.danger > .admonition-title, .md-typeset details.danger > .admonition-title, .md-typeset .admonition.danger > summary, .md-typeset details.danger > summary {
|
1286
|
-
border-bottom-color: 0.1rem solid rgba(255, 23, 68, 0.1);
|
1287
|
-
background-color: rgba(255, 23, 68, 0.1); }
|
1288
|
-
.md-typeset .admonition.error > .admonition-title::before, .md-typeset details.error > .admonition-title::before, .md-typeset .admonition.error > summary::before, .md-typeset details.error > summary::before, .md-typeset .admonition.danger > .admonition-title::before, .md-typeset details.danger > .admonition-title::before, .md-typeset .admonition.danger > summary::before, .md-typeset details.danger > summary::before {
|
1289
|
-
color: #ff1744;
|
1290
|
-
content: "\E3E7"; }
|
1291
|
-
.md-typeset .admonition.bug, .md-typeset details.bug {
|
1292
|
-
border-left-color: #f50057; }
|
1293
|
-
[dir="rtl"] .md-typeset .admonition.bug, [dir="rtl"] .md-typeset details.bug {
|
1294
|
-
border-right-color: #f50057; }
|
1295
|
-
.md-typeset .admonition.bug > .admonition-title, .md-typeset details.bug > .admonition-title, .md-typeset .admonition.bug > summary, .md-typeset details.bug > summary {
|
1296
|
-
border-bottom-color: 0.1rem solid rgba(245, 0, 87, 0.1);
|
1297
|
-
background-color: rgba(245, 0, 87, 0.1); }
|
1298
|
-
.md-typeset .admonition.bug > .admonition-title::before, .md-typeset details.bug > .admonition-title::before, .md-typeset .admonition.bug > summary::before, .md-typeset details.bug > summary::before {
|
1299
|
-
color: #f50057;
|
1300
|
-
content: "\E868"; }
|
1301
|
-
.md-typeset .admonition.example, .md-typeset details.example {
|
1302
|
-
border-left-color: #651fff; }
|
1303
|
-
[dir="rtl"] .md-typeset .admonition.example, [dir="rtl"] .md-typeset details.example {
|
1304
|
-
border-right-color: #651fff; }
|
1305
|
-
.md-typeset .admonition.example > .admonition-title, .md-typeset details.example > .admonition-title, .md-typeset .admonition.example > summary, .md-typeset details.example > summary {
|
1306
|
-
border-bottom-color: 0.1rem solid rgba(101, 31, 255, 0.1);
|
1307
|
-
background-color: rgba(101, 31, 255, 0.1); }
|
1308
|
-
.md-typeset .admonition.example > .admonition-title::before, .md-typeset details.example > .admonition-title::before, .md-typeset .admonition.example > summary::before, .md-typeset details.example > summary::before {
|
1309
|
-
color: #651fff;
|
1310
|
-
content: "\E242"; }
|
1311
|
-
.md-typeset .admonition.cite, .md-typeset details.cite, .md-typeset .admonition.quote, .md-typeset details.quote {
|
1312
|
-
border-left-color: #9e9e9e; }
|
1313
|
-
[dir="rtl"] .md-typeset .admonition.cite, [dir="rtl"] .md-typeset details.cite, [dir="rtl"] .md-typeset .admonition.quote, [dir="rtl"] .md-typeset details.quote {
|
1314
|
-
border-right-color: #9e9e9e; }
|
1315
|
-
.md-typeset .admonition.cite > .admonition-title, .md-typeset details.cite > .admonition-title, .md-typeset .admonition.cite > summary, .md-typeset details.cite > summary, .md-typeset .admonition.quote > .admonition-title, .md-typeset details.quote > .admonition-title, .md-typeset .admonition.quote > summary, .md-typeset details.quote > summary {
|
1316
|
-
border-bottom-color: 0.1rem solid rgba(158, 158, 158, 0.1);
|
1317
|
-
background-color: rgba(158, 158, 158, 0.1); }
|
1318
|
-
.md-typeset .admonition.cite > .admonition-title::before, .md-typeset details.cite > .admonition-title::before, .md-typeset .admonition.cite > summary::before, .md-typeset details.cite > summary::before, .md-typeset .admonition.quote > .admonition-title::before, .md-typeset details.quote > .admonition-title::before, .md-typeset .admonition.quote > summary::before, .md-typeset details.quote > summary::before {
|
1319
|
-
color: #9e9e9e;
|
1320
|
-
content: "\E244"; }
|
1321
|
-
|
1322
|
-
.codehilite .o, .md-typeset .highlight .o {
|
1323
|
-
color: inherit; }
|
1324
|
-
|
1325
|
-
.codehilite .ow, .md-typeset .highlight .ow {
|
1326
|
-
color: inherit; }
|
1327
|
-
|
1328
|
-
.codehilite .ge, .md-typeset .highlight .ge {
|
1329
|
-
color: #000000; }
|
1330
|
-
|
1331
|
-
.codehilite .gr, .md-typeset .highlight .gr {
|
1332
|
-
color: #AA0000; }
|
1333
|
-
|
1334
|
-
.codehilite .gh, .md-typeset .highlight .gh {
|
1335
|
-
color: #999999; }
|
1336
|
-
|
1337
|
-
.codehilite .go, .md-typeset .highlight .go {
|
1338
|
-
color: #888888; }
|
1339
|
-
|
1340
|
-
.codehilite .gp, .md-typeset .highlight .gp {
|
1341
|
-
color: #555555; }
|
1342
|
-
|
1343
|
-
.codehilite .gs, .md-typeset .highlight .gs {
|
1344
|
-
color: inherit; }
|
1345
|
-
|
1346
|
-
.codehilite .gu, .md-typeset .highlight .gu {
|
1347
|
-
color: #AAAAAA; }
|
1348
|
-
|
1349
|
-
.codehilite .gt, .md-typeset .highlight .gt {
|
1350
|
-
color: #AA0000; }
|
1351
|
-
|
1352
|
-
.codehilite .gd, .md-typeset .highlight .gd {
|
1353
|
-
background-color: #FFDDDD; }
|
1354
|
-
|
1355
|
-
.codehilite .gi, .md-typeset .highlight .gi {
|
1356
|
-
background-color: #DDFFDD; }
|
1357
|
-
|
1358
|
-
.codehilite .k, .md-typeset .highlight .k {
|
1359
|
-
color: #3B78E7; }
|
1360
|
-
|
1361
|
-
.codehilite .kc, .md-typeset .highlight .kc {
|
1362
|
-
color: #A71D5D; }
|
1363
|
-
|
1364
|
-
.codehilite .kd, .md-typeset .highlight .kd {
|
1365
|
-
color: #3B78E7; }
|
1366
|
-
|
1367
|
-
.codehilite .kn, .md-typeset .highlight .kn {
|
1368
|
-
color: #3B78E7; }
|
1369
|
-
|
1370
|
-
.codehilite .kp, .md-typeset .highlight .kp {
|
1371
|
-
color: #A71D5D; }
|
1372
|
-
|
1373
|
-
.codehilite .kr, .md-typeset .highlight .kr {
|
1374
|
-
color: #3E61A2; }
|
1375
|
-
|
1376
|
-
.codehilite .kt, .md-typeset .highlight .kt {
|
1377
|
-
color: #3E61A2; }
|
1378
|
-
|
1379
|
-
.codehilite .c, .md-typeset .highlight .c {
|
1380
|
-
color: #999999; }
|
1381
|
-
|
1382
|
-
.codehilite .cm, .md-typeset .highlight .cm {
|
1383
|
-
color: #999999; }
|
1384
|
-
|
1385
|
-
.codehilite .cp, .md-typeset .highlight .cp {
|
1386
|
-
color: #666666; }
|
1387
|
-
|
1388
|
-
.codehilite .c1, .md-typeset .highlight .c1 {
|
1389
|
-
color: #999999; }
|
1390
|
-
|
1391
|
-
.codehilite .ch, .md-typeset .highlight .ch {
|
1392
|
-
color: #999999; }
|
1393
|
-
|
1394
|
-
.codehilite .cs, .md-typeset .highlight .cs {
|
1395
|
-
color: #999999; }
|
1396
|
-
|
1397
|
-
.codehilite .na, .md-typeset .highlight .na {
|
1398
|
-
color: #C2185B; }
|
1399
|
-
|
1400
|
-
.codehilite .nb, .md-typeset .highlight .nb {
|
1401
|
-
color: #C2185B; }
|
1402
|
-
|
1403
|
-
.codehilite .bp, .md-typeset .highlight .bp {
|
1404
|
-
color: #3E61A2; }
|
1405
|
-
|
1406
|
-
.codehilite .nc, .md-typeset .highlight .nc {
|
1407
|
-
color: #C2185B; }
|
1408
|
-
|
1409
|
-
.codehilite .no, .md-typeset .highlight .no {
|
1410
|
-
color: #3E61A2; }
|
1411
|
-
|
1412
|
-
.codehilite .nd, .md-typeset .highlight .nd {
|
1413
|
-
color: #666666; }
|
1414
|
-
|
1415
|
-
.codehilite .ni, .md-typeset .highlight .ni {
|
1416
|
-
color: #666666; }
|
1417
|
-
|
1418
|
-
.codehilite .ne, .md-typeset .highlight .ne {
|
1419
|
-
color: #C2185B; }
|
1420
|
-
|
1421
|
-
.codehilite .nf, .md-typeset .highlight .nf {
|
1422
|
-
color: #C2185B; }
|
1423
|
-
|
1424
|
-
.codehilite .nl, .md-typeset .highlight .nl {
|
1425
|
-
color: #3B5179; }
|
1426
|
-
|
1427
|
-
.codehilite .nn, .md-typeset .highlight .nn {
|
1428
|
-
color: #EC407A; }
|
1429
|
-
|
1430
|
-
.codehilite .nt, .md-typeset .highlight .nt {
|
1431
|
-
color: #3B78E7; }
|
1432
|
-
|
1433
|
-
.codehilite .nv, .md-typeset .highlight .nv {
|
1434
|
-
color: #3E61A2; }
|
1435
|
-
|
1436
|
-
.codehilite .vc, .md-typeset .highlight .vc {
|
1437
|
-
color: #3E61A2; }
|
1438
|
-
|
1439
|
-
.codehilite .vg, .md-typeset .highlight .vg {
|
1440
|
-
color: #3E61A2; }
|
1441
|
-
|
1442
|
-
.codehilite .vi, .md-typeset .highlight .vi {
|
1443
|
-
color: #3E61A2; }
|
1444
|
-
|
1445
|
-
.codehilite .nx, .md-typeset .highlight .nx {
|
1446
|
-
color: #EC407A; }
|
1447
|
-
|
1448
|
-
.codehilite .m, .md-typeset .highlight .m {
|
1449
|
-
color: #E74C3C; }
|
1450
|
-
|
1451
|
-
.codehilite .mf, .md-typeset .highlight .mf {
|
1452
|
-
color: #E74C3C; }
|
1453
|
-
|
1454
|
-
.codehilite .mh, .md-typeset .highlight .mh {
|
1455
|
-
color: #E74C3C; }
|
1456
|
-
|
1457
|
-
.codehilite .mi, .md-typeset .highlight .mi {
|
1458
|
-
color: #E74C3C; }
|
1459
|
-
|
1460
|
-
.codehilite .il, .md-typeset .highlight .il {
|
1461
|
-
color: #E74C3C; }
|
1462
|
-
|
1463
|
-
.codehilite .mo, .md-typeset .highlight .mo {
|
1464
|
-
color: #E74C3C; }
|
1465
|
-
|
1466
|
-
.codehilite .s, .md-typeset .highlight .s {
|
1467
|
-
color: #0D904F; }
|
1468
|
-
|
1469
|
-
.codehilite .sb, .md-typeset .highlight .sb {
|
1470
|
-
color: #0D904F; }
|
1471
|
-
|
1472
|
-
.codehilite .sc, .md-typeset .highlight .sc {
|
1473
|
-
color: #0D904F; }
|
1474
|
-
|
1475
|
-
.codehilite .sd, .md-typeset .highlight .sd {
|
1476
|
-
color: #999999; }
|
1477
|
-
|
1478
|
-
.codehilite .s2, .md-typeset .highlight .s2 {
|
1479
|
-
color: #0D904F; }
|
1480
|
-
|
1481
|
-
.codehilite .se, .md-typeset .highlight .se {
|
1482
|
-
color: #183691; }
|
1483
|
-
|
1484
|
-
.codehilite .sh, .md-typeset .highlight .sh {
|
1485
|
-
color: #183691; }
|
1486
|
-
|
1487
|
-
.codehilite .si, .md-typeset .highlight .si {
|
1488
|
-
color: #183691; }
|
1489
|
-
|
1490
|
-
.codehilite .sx, .md-typeset .highlight .sx {
|
1491
|
-
color: #183691; }
|
1492
|
-
|
1493
|
-
.codehilite .sr, .md-typeset .highlight .sr {
|
1494
|
-
color: #009926; }
|
1495
|
-
|
1496
|
-
.codehilite .s1, .md-typeset .highlight .s1 {
|
1497
|
-
color: #0D904F; }
|
1498
|
-
|
1499
|
-
.codehilite .ss, .md-typeset .highlight .ss {
|
1500
|
-
color: #0D904F; }
|
1501
|
-
|
1502
|
-
.codehilite .err, .md-typeset .highlight .err {
|
1503
|
-
color: #A61717; }
|
1504
|
-
|
1505
|
-
.codehilite .w, .md-typeset .highlight .w {
|
1506
|
-
color: transparent; }
|
1507
|
-
|
1508
|
-
.codehilite .hll, .md-typeset .highlight .hll {
|
1509
|
-
display: block;
|
1510
|
-
margin: 0 -1.2rem;
|
1511
|
-
padding: 0 1.2rem;
|
1512
|
-
background-color: rgba(255, 235, 59, 0.5); }
|
1513
|
-
|
1514
|
-
.md-typeset .codehilite, .md-typeset .highlight {
|
1515
|
-
position: relative;
|
1516
|
-
margin: 1em 0;
|
1517
|
-
padding: 0;
|
1518
|
-
border-radius: 0.2rem;
|
1519
|
-
background-color: rgba(236, 236, 236, 0.5);
|
1520
|
-
color: #37474F;
|
1521
|
-
line-height: 1.4;
|
1522
|
-
-webkit-overflow-scrolling: touch; }
|
1523
|
-
.md-typeset .codehilite pre, .md-typeset .highlight pre,
|
1524
|
-
.md-typeset .codehilite code, .md-typeset .highlight code {
|
1525
|
-
display: block;
|
1526
|
-
margin: 0;
|
1527
|
-
padding: 1.05rem 1.2rem;
|
1528
|
-
background-color: transparent;
|
1529
|
-
overflow: auto;
|
1530
|
-
vertical-align: top; }
|
1531
|
-
.md-typeset .codehilite pre::-webkit-scrollbar, .md-typeset .highlight pre::-webkit-scrollbar,
|
1532
|
-
.md-typeset .codehilite code::-webkit-scrollbar, .md-typeset .highlight code::-webkit-scrollbar {
|
1533
|
-
width: 0.4rem;
|
1534
|
-
height: 0.4rem; }
|
1535
|
-
.md-typeset .codehilite pre::-webkit-scrollbar-thumb, .md-typeset .highlight pre::-webkit-scrollbar-thumb,
|
1536
|
-
.md-typeset .codehilite code::-webkit-scrollbar-thumb, .md-typeset .highlight code::-webkit-scrollbar-thumb {
|
1537
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
1538
|
-
.md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover, .md-typeset .highlight pre::-webkit-scrollbar-thumb:hover,
|
1539
|
-
.md-typeset .codehilite code::-webkit-scrollbar-thumb:hover, .md-typeset .highlight code::-webkit-scrollbar-thumb:hover {
|
1540
|
-
background-color: #536dfe; }
|
1541
|
-
|
1542
|
-
.md-typeset pre.codehilite, .md-typeset pre.highlight {
|
1543
|
-
overflow: visible; }
|
1544
|
-
.md-typeset pre.codehilite code, .md-typeset pre.highlight code {
|
1545
|
-
display: block;
|
1546
|
-
padding: 1.05rem 1.2rem;
|
1547
|
-
overflow: auto; }
|
1548
|
-
|
1549
|
-
.md-typeset .codehilitetable, .md-typeset .highlighttable {
|
1550
|
-
display: block;
|
1551
|
-
margin: 1em 0;
|
1552
|
-
border-radius: 0.2em;
|
1553
|
-
font-size: 1.6rem;
|
1554
|
-
overflow: hidden; }
|
1555
|
-
.md-typeset .codehilitetable tbody, .md-typeset .highlighttable tbody,
|
1556
|
-
.md-typeset .codehilitetable td, .md-typeset .highlighttable td {
|
1557
|
-
display: block;
|
1558
|
-
padding: 0; }
|
1559
|
-
.md-typeset .codehilitetable tr, .md-typeset .highlighttable tr {
|
1560
|
-
display: flex; }
|
1561
|
-
.md-typeset .codehilitetable .codehilite, .md-typeset .highlighttable .codehilite, .md-typeset .codehilitetable .highlight, .md-typeset .highlighttable .highlight,
|
1562
|
-
.md-typeset .codehilitetable .linenodiv, .md-typeset .highlighttable .linenodiv {
|
1563
|
-
margin: 0;
|
1564
|
-
border-radius: 0; }
|
1565
|
-
.md-typeset .codehilitetable .linenodiv, .md-typeset .highlighttable .linenodiv {
|
1566
|
-
padding: 1.05rem 1.2rem; }
|
1567
|
-
.md-typeset .codehilitetable .linenos, .md-typeset .highlighttable .linenos {
|
1568
|
-
background-color: rgba(0, 0, 0, 0.07);
|
1569
|
-
color: rgba(0, 0, 0, 0.26);
|
1570
|
-
-webkit-user-select: none;
|
1571
|
-
-moz-user-select: none;
|
1572
|
-
-ms-user-select: none;
|
1573
|
-
user-select: none; }
|
1574
|
-
.md-typeset .codehilitetable .linenos pre, .md-typeset .highlighttable .linenos pre {
|
1575
|
-
margin: 0;
|
1576
|
-
padding: 0;
|
1577
|
-
background-color: transparent;
|
1578
|
-
color: inherit;
|
1579
|
-
text-align: right; }
|
1580
|
-
.md-typeset .codehilitetable .code, .md-typeset .highlighttable .code {
|
1581
|
-
flex: 1;
|
1582
|
-
overflow: hidden; }
|
1583
|
-
|
1584
|
-
.md-typeset > .codehilitetable, .md-typeset > .highlighttable {
|
1585
|
-
box-shadow: none; }
|
1586
|
-
|
1587
|
-
.md-typeset [id^="fnref:"] {
|
1588
|
-
display: inline-block; }
|
1589
|
-
.md-typeset [id^="fnref:"]:target {
|
1590
|
-
margin-top: -7.6rem;
|
1591
|
-
padding-top: 7.6rem;
|
1592
|
-
pointer-events: none; }
|
1593
|
-
|
1594
|
-
.md-typeset [id^="fn:"]::before {
|
1595
|
-
display: none;
|
1596
|
-
height: 0;
|
1597
|
-
content: ""; }
|
1598
|
-
|
1599
|
-
.md-typeset [id^="fn:"]:target::before {
|
1600
|
-
display: block;
|
1601
|
-
margin-top: -7rem;
|
1602
|
-
padding-top: 7rem;
|
1603
|
-
pointer-events: none; }
|
1604
|
-
|
1605
|
-
.md-typeset .footnote {
|
1606
|
-
color: rgba(0, 0, 0, 0.54);
|
1607
|
-
font-size: 1.28rem; }
|
1608
|
-
.md-typeset .footnote ol {
|
1609
|
-
margin-left: 0; }
|
1610
|
-
.md-typeset .footnote li {
|
1611
|
-
transition: color 0.25s; }
|
1612
|
-
.md-typeset .footnote li:target {
|
1613
|
-
color: rgba(0, 0, 0, 0.87); }
|
1614
|
-
.md-typeset .footnote li :first-child {
|
1615
|
-
margin-top: 0; }
|
1616
|
-
.md-typeset .footnote li:hover .footnote-backref,
|
1617
|
-
.md-typeset .footnote li:target .footnote-backref {
|
1618
|
-
-webkit-transform: translateX(0);
|
1619
|
-
transform: translateX(0);
|
1620
|
-
opacity: 1; }
|
1621
|
-
.md-typeset .footnote li:hover .footnote-backref:hover,
|
1622
|
-
.md-typeset .footnote li:target .footnote-backref {
|
1623
|
-
color: #536dfe; }
|
1624
|
-
|
1625
|
-
.md-typeset .footnote-ref {
|
1626
|
-
display: inline-block;
|
1627
|
-
pointer-events: initial; }
|
1628
|
-
.md-typeset .footnote-ref::before {
|
1629
|
-
display: inline;
|
1630
|
-
margin: 0 0.2em;
|
1631
|
-
border-left: 0.1rem solid rgba(0, 0, 0, 0.26);
|
1632
|
-
font-size: 1.25em;
|
1633
|
-
content: "";
|
1634
|
-
vertical-align: -0.5rem; }
|
1635
|
-
|
1636
|
-
.md-typeset .footnote-backref {
|
1637
|
-
display: inline-block;
|
1638
|
-
-webkit-transform: translateX(0.5rem);
|
1639
|
-
transform: translateX(0.5rem);
|
1640
|
-
transition: color 0.25s, opacity 0.125s 0.125s, -webkit-transform 0.25s 0.125s;
|
1641
|
-
transition: transform 0.25s 0.125s, color 0.25s, opacity 0.125s 0.125s;
|
1642
|
-
transition: transform 0.25s 0.125s, color 0.25s, opacity 0.125s 0.125s, -webkit-transform 0.25s 0.125s;
|
1643
|
-
color: rgba(0, 0, 0, 0.26);
|
1644
|
-
font-size: 0;
|
1645
|
-
opacity: 0;
|
1646
|
-
vertical-align: text-bottom; }
|
1647
|
-
[dir="rtl"] .md-typeset .footnote-backref {
|
1648
|
-
-webkit-transform: translateX(-0.5rem);
|
1649
|
-
transform: translateX(-0.5rem); }
|
1650
|
-
.md-typeset .footnote-backref::before {
|
1651
|
-
display: inline-block;
|
1652
|
-
font-size: 1.6rem;
|
1653
|
-
content: "\E31B"; }
|
1654
|
-
[dir="rtl"] .md-typeset .footnote-backref::before {
|
1655
|
-
-webkit-transform: scaleX(-1);
|
1656
|
-
transform: scaleX(-1); }
|
1657
|
-
|
1658
|
-
.md-typeset .headerlink {
|
1659
|
-
display: inline-block;
|
1660
|
-
margin-left: 1rem;
|
1661
|
-
-webkit-transform: translate(0, 0.5rem);
|
1662
|
-
transform: translate(0, 0.5rem);
|
1663
|
-
transition: color 0.25s, opacity 0.125s 0.25s, -webkit-transform 0.25s 0.25s;
|
1664
|
-
transition: transform 0.25s 0.25s, color 0.25s, opacity 0.125s 0.25s;
|
1665
|
-
transition: transform 0.25s 0.25s, color 0.25s, opacity 0.125s 0.25s, -webkit-transform 0.25s 0.25s;
|
1666
|
-
opacity: 0; }
|
1667
|
-
[dir="rtl"] .md-typeset .headerlink {
|
1668
|
-
margin-right: 1rem;
|
1669
|
-
margin-left: initial; }
|
1670
|
-
html body .md-typeset .headerlink {
|
1671
|
-
color: rgba(0, 0, 0, 0.26); }
|
1672
|
-
|
1673
|
-
.md-typeset h1[id]::before {
|
1674
|
-
display: block;
|
1675
|
-
margin-top: -0.9rem;
|
1676
|
-
padding-top: 0.9rem;
|
1677
|
-
content: ""; }
|
1678
|
-
|
1679
|
-
.md-typeset h1[id]:target::before {
|
1680
|
-
margin-top: -6.9rem;
|
1681
|
-
padding-top: 6.9rem; }
|
1682
|
-
|
1683
|
-
.md-typeset h1[id]:hover .headerlink,
|
1684
|
-
.md-typeset h1[id]:target .headerlink,
|
1685
|
-
.md-typeset h1[id] .headerlink:focus {
|
1686
|
-
-webkit-transform: translate(0, 0);
|
1687
|
-
transform: translate(0, 0);
|
1688
|
-
opacity: 1; }
|
1689
|
-
|
1690
|
-
.md-typeset h1[id]:hover .headerlink:hover,
|
1691
|
-
.md-typeset h1[id]:target .headerlink,
|
1692
|
-
.md-typeset h1[id] .headerlink:focus {
|
1693
|
-
color: #536dfe; }
|
1694
|
-
|
1695
|
-
.md-typeset h2[id]::before {
|
1696
|
-
display: block;
|
1697
|
-
margin-top: -0.8rem;
|
1698
|
-
padding-top: 0.8rem;
|
1699
|
-
content: ""; }
|
1700
|
-
|
1701
|
-
.md-typeset h2[id]:target::before {
|
1702
|
-
margin-top: -6.8rem;
|
1703
|
-
padding-top: 6.8rem; }
|
1704
|
-
|
1705
|
-
.md-typeset h2[id]:hover .headerlink,
|
1706
|
-
.md-typeset h2[id]:target .headerlink,
|
1707
|
-
.md-typeset h2[id] .headerlink:focus {
|
1708
|
-
-webkit-transform: translate(0, 0);
|
1709
|
-
transform: translate(0, 0);
|
1710
|
-
opacity: 1; }
|
1711
|
-
|
1712
|
-
.md-typeset h2[id]:hover .headerlink:hover,
|
1713
|
-
.md-typeset h2[id]:target .headerlink,
|
1714
|
-
.md-typeset h2[id] .headerlink:focus {
|
1715
|
-
color: #536dfe; }
|
1716
|
-
|
1717
|
-
.md-typeset h3[id]::before {
|
1718
|
-
display: block;
|
1719
|
-
margin-top: -0.9rem;
|
1720
|
-
padding-top: 0.9rem;
|
1721
|
-
content: ""; }
|
1722
|
-
|
1723
|
-
.md-typeset h3[id]:target::before {
|
1724
|
-
margin-top: -6.9rem;
|
1725
|
-
padding-top: 6.9rem; }
|
1726
|
-
|
1727
|
-
.md-typeset h3[id]:hover .headerlink,
|
1728
|
-
.md-typeset h3[id]:target .headerlink,
|
1729
|
-
.md-typeset h3[id] .headerlink:focus {
|
1730
|
-
-webkit-transform: translate(0, 0);
|
1731
|
-
transform: translate(0, 0);
|
1732
|
-
opacity: 1; }
|
1733
|
-
|
1734
|
-
.md-typeset h3[id]:hover .headerlink:hover,
|
1735
|
-
.md-typeset h3[id]:target .headerlink,
|
1736
|
-
.md-typeset h3[id] .headerlink:focus {
|
1737
|
-
color: #536dfe; }
|
1738
|
-
|
1739
|
-
.md-typeset h4[id]::before {
|
1740
|
-
display: block;
|
1741
|
-
margin-top: -0.9rem;
|
1742
|
-
padding-top: 0.9rem;
|
1743
|
-
content: ""; }
|
1744
|
-
|
1745
|
-
.md-typeset h4[id]:target::before {
|
1746
|
-
margin-top: -6.9rem;
|
1747
|
-
padding-top: 6.9rem; }
|
1748
|
-
|
1749
|
-
.md-typeset h4[id]:hover .headerlink,
|
1750
|
-
.md-typeset h4[id]:target .headerlink,
|
1751
|
-
.md-typeset h4[id] .headerlink:focus {
|
1752
|
-
-webkit-transform: translate(0, 0);
|
1753
|
-
transform: translate(0, 0);
|
1754
|
-
opacity: 1; }
|
1755
|
-
|
1756
|
-
.md-typeset h4[id]:hover .headerlink:hover,
|
1757
|
-
.md-typeset h4[id]:target .headerlink,
|
1758
|
-
.md-typeset h4[id] .headerlink:focus {
|
1759
|
-
color: #536dfe; }
|
1760
|
-
|
1761
|
-
.md-typeset h5[id]::before {
|
1762
|
-
display: block;
|
1763
|
-
margin-top: -1.1rem;
|
1764
|
-
padding-top: 1.1rem;
|
1765
|
-
content: ""; }
|
1766
|
-
|
1767
|
-
.md-typeset h5[id]:target::before {
|
1768
|
-
margin-top: -7.1rem;
|
1769
|
-
padding-top: 7.1rem; }
|
1770
|
-
|
1771
|
-
.md-typeset h5[id]:hover .headerlink,
|
1772
|
-
.md-typeset h5[id]:target .headerlink,
|
1773
|
-
.md-typeset h5[id] .headerlink:focus {
|
1774
|
-
-webkit-transform: translate(0, 0);
|
1775
|
-
transform: translate(0, 0);
|
1776
|
-
opacity: 1; }
|
1777
|
-
|
1778
|
-
.md-typeset h5[id]:hover .headerlink:hover,
|
1779
|
-
.md-typeset h5[id]:target .headerlink,
|
1780
|
-
.md-typeset h5[id] .headerlink:focus {
|
1781
|
-
color: #536dfe; }
|
1782
|
-
|
1783
|
-
.md-typeset h6[id]::before {
|
1784
|
-
display: block;
|
1785
|
-
margin-top: -1.1rem;
|
1786
|
-
padding-top: 1.1rem;
|
1787
|
-
content: ""; }
|
1788
|
-
|
1789
|
-
.md-typeset h6[id]:target::before {
|
1790
|
-
margin-top: -7.1rem;
|
1791
|
-
padding-top: 7.1rem; }
|
1792
|
-
|
1793
|
-
.md-typeset h6[id]:hover .headerlink,
|
1794
|
-
.md-typeset h6[id]:target .headerlink,
|
1795
|
-
.md-typeset h6[id] .headerlink:focus {
|
1796
|
-
-webkit-transform: translate(0, 0);
|
1797
|
-
transform: translate(0, 0);
|
1798
|
-
opacity: 1; }
|
1799
|
-
|
1800
|
-
.md-typeset h6[id]:hover .headerlink:hover,
|
1801
|
-
.md-typeset h6[id]:target .headerlink,
|
1802
|
-
.md-typeset h6[id] .headerlink:focus {
|
1803
|
-
color: #536dfe; }
|
1804
|
-
|
1805
|
-
.md-typeset .MJXc-display {
|
1806
|
-
margin: 0.75em 0;
|
1807
|
-
padding: 0.75em 0;
|
1808
|
-
overflow: auto;
|
1809
|
-
-webkit-overflow-scrolling: touch; }
|
1810
|
-
|
1811
|
-
.md-typeset .MathJax_CHTML {
|
1812
|
-
outline: 0; }
|
1813
|
-
|
1814
|
-
.md-typeset del.critic,
|
1815
|
-
.md-typeset ins.critic,
|
1816
|
-
.md-typeset .critic.comment {
|
1817
|
-
margin: 0 0.25em;
|
1818
|
-
padding: 0.0625em 0;
|
1819
|
-
border-radius: 0.2rem;
|
1820
|
-
-webkit-box-decoration-break: clone;
|
1821
|
-
box-decoration-break: clone; }
|
1822
|
-
|
1823
|
-
.md-typeset del.critic {
|
1824
|
-
background-color: #FFDDDD;
|
1825
|
-
box-shadow: 0.25em 0 0 #FFDDDD, -0.25em 0 0 #FFDDDD; }
|
1826
|
-
|
1827
|
-
.md-typeset ins.critic {
|
1828
|
-
background-color: #DDFFDD;
|
1829
|
-
box-shadow: 0.25em 0 0 #DDFFDD, -0.25em 0 0 #DDFFDD; }
|
1830
|
-
|
1831
|
-
.md-typeset .critic.comment {
|
1832
|
-
background-color: rgba(236, 236, 236, 0.5);
|
1833
|
-
color: #37474F;
|
1834
|
-
box-shadow: 0.25em 0 0 rgba(236, 236, 236, 0.5), -0.25em 0 0 rgba(236, 236, 236, 0.5); }
|
1835
|
-
.md-typeset .critic.comment::before {
|
1836
|
-
padding-right: 0.125em;
|
1837
|
-
color: rgba(0, 0, 0, 0.26);
|
1838
|
-
content: "\E0B7";
|
1839
|
-
vertical-align: -0.125em; }
|
1840
|
-
|
1841
|
-
.md-typeset .critic.block {
|
1842
|
-
display: block;
|
1843
|
-
margin: 1em 0;
|
1844
|
-
padding-right: 1.6rem;
|
1845
|
-
padding-left: 1.6rem;
|
1846
|
-
box-shadow: none; }
|
1847
|
-
.md-typeset .critic.block :first-child {
|
1848
|
-
margin-top: 0.5em; }
|
1849
|
-
.md-typeset .critic.block :last-child {
|
1850
|
-
margin-bottom: 0.5em; }
|
1851
|
-
|
1852
|
-
.md-typeset details {
|
1853
|
-
display: block;
|
1854
|
-
padding-top: 0; }
|
1855
|
-
.md-typeset details[open] > summary::after {
|
1856
|
-
-webkit-transform: rotate(180deg);
|
1857
|
-
transform: rotate(180deg); }
|
1858
|
-
.md-typeset details:not([open]) {
|
1859
|
-
padding-bottom: 0; }
|
1860
|
-
.md-typeset details:not([open]) > summary {
|
1861
|
-
border-bottom: none; }
|
1862
|
-
.md-typeset details summary {
|
1863
|
-
padding-right: 4rem; }
|
1864
|
-
[dir="rtl"] .md-typeset details summary {
|
1865
|
-
padding-left: 4rem; }
|
1866
|
-
.no-details .md-typeset details:not([open]) > * {
|
1867
|
-
display: none; }
|
1868
|
-
.no-details .md-typeset details:not([open]) summary {
|
1869
|
-
display: block; }
|
1870
|
-
|
1871
|
-
.md-typeset summary {
|
1872
|
-
display: block;
|
1873
|
-
outline: none;
|
1874
|
-
cursor: pointer; }
|
1875
|
-
.md-typeset summary::-webkit-details-marker {
|
1876
|
-
display: none; }
|
1877
|
-
.md-typeset summary::after {
|
1878
|
-
position: absolute;
|
1879
|
-
top: 0.8rem;
|
1880
|
-
right: 1.2rem;
|
1881
|
-
color: rgba(0, 0, 0, 0.26);
|
1882
|
-
font-size: 2rem;
|
1883
|
-
content: "\E313"; }
|
1884
|
-
[dir="rtl"] .md-typeset summary::after {
|
1885
|
-
right: initial;
|
1886
|
-
left: 1.2rem; }
|
1887
|
-
|
1888
|
-
.md-typeset .emojione {
|
1889
|
-
width: 2rem;
|
1890
|
-
vertical-align: text-top; }
|
1891
|
-
|
1892
|
-
.md-typeset code.codehilite, .md-typeset code.highlight {
|
1893
|
-
margin: 0 0.29412em;
|
1894
|
-
padding: 0.07353em 0; }
|
1895
|
-
|
1896
|
-
.md-typeset .superfences-content {
|
1897
|
-
display: none;
|
1898
|
-
order: 99;
|
1899
|
-
width: 100%;
|
1900
|
-
background-color: white; }
|
1901
|
-
.md-typeset .superfences-content > * {
|
1902
|
-
margin: 0;
|
1903
|
-
border-radius: 0; }
|
1904
|
-
|
1905
|
-
.md-typeset .superfences-tabs {
|
1906
|
-
display: flex;
|
1907
|
-
position: relative;
|
1908
|
-
flex-wrap: wrap;
|
1909
|
-
margin: 1em 0;
|
1910
|
-
border: 0.1rem solid rgba(0, 0, 0, 0.07);
|
1911
|
-
border-radius: 0.2em; }
|
1912
|
-
.md-typeset .superfences-tabs > input {
|
1913
|
-
display: none; }
|
1914
|
-
.md-typeset .superfences-tabs > input:checked + label {
|
1915
|
-
font-weight: 700; }
|
1916
|
-
.md-typeset .superfences-tabs > input:checked + label + .superfences-content {
|
1917
|
-
display: block; }
|
1918
|
-
.md-typeset .superfences-tabs > label {
|
1919
|
-
width: auto;
|
1920
|
-
padding: 1.2rem 1.2rem;
|
1921
|
-
transition: color 0.125s;
|
1922
|
-
font-size: 1.28rem;
|
1923
|
-
cursor: pointer; }
|
1924
|
-
html .md-typeset .superfences-tabs > label:hover {
|
1925
|
-
color: #536dfe; }
|
1926
|
-
|
1927
|
-
.md-typeset .task-list-item {
|
1928
|
-
position: relative;
|
1929
|
-
list-style-type: none; }
|
1930
|
-
.md-typeset .task-list-item [type="checkbox"] {
|
1931
|
-
position: absolute;
|
1932
|
-
top: 0.45em;
|
1933
|
-
left: -2em; }
|
1934
|
-
[dir="rtl"] .md-typeset .task-list-item [type="checkbox"] {
|
1935
|
-
right: -2em;
|
1936
|
-
left: initial; }
|
1937
|
-
|
1938
|
-
.md-typeset .task-list-control .task-list-indicator::before {
|
1939
|
-
position: absolute;
|
1940
|
-
top: 0.15em;
|
1941
|
-
left: -1.25em;
|
1942
|
-
color: rgba(0, 0, 0, 0.26);
|
1943
|
-
font-size: 1.25em;
|
1944
|
-
content: "\E835";
|
1945
|
-
vertical-align: -0.25em; }
|
1946
|
-
[dir="rtl"] .md-typeset .task-list-control .task-list-indicator::before {
|
1947
|
-
right: -1.25em;
|
1948
|
-
left: initial; }
|
1949
|
-
|
1950
|
-
.md-typeset .task-list-control [type="checkbox"]:checked + .task-list-indicator::before {
|
1951
|
-
content: "\E834"; }
|
1952
|
-
|
1953
|
-
.md-typeset .task-list-control [type="checkbox"] {
|
1954
|
-
opacity: 0;
|
1955
|
-
z-index: -1; }
|
1956
|
-
|
1957
|
-
@media print {
|
1958
|
-
.md-typeset a::after {
|
1959
|
-
color: rgba(0, 0, 0, 0.54);
|
1960
|
-
content: " [" attr(href) "]"; }
|
1961
|
-
.md-typeset code,
|
1962
|
-
.md-typeset pre {
|
1963
|
-
white-space: pre-wrap; }
|
1964
|
-
.md-typeset code {
|
1965
|
-
box-shadow: none;
|
1966
|
-
-webkit-box-decoration-break: initial;
|
1967
|
-
box-decoration-break: initial; }
|
1968
|
-
.md-clipboard {
|
1969
|
-
display: none; }
|
1970
|
-
.md-content__icon {
|
1971
|
-
display: none; }
|
1972
|
-
.md-header {
|
1973
|
-
display: none; }
|
1974
|
-
.md-footer {
|
1975
|
-
display: none; }
|
1976
|
-
.md-sidebar {
|
1977
|
-
display: none; }
|
1978
|
-
.md-tabs {
|
1979
|
-
display: none; }
|
1980
|
-
.md-typeset .headerlink {
|
1981
|
-
display: none; } }
|
1982
|
-
|
1983
|
-
@media only screen and (max-width: 44.9375em) {
|
1984
|
-
.md-typeset pre {
|
1985
|
-
margin: 1em -1.6rem;
|
1986
|
-
border-radius: 0; }
|
1987
|
-
.md-typeset pre > code {
|
1988
|
-
padding: 1.05rem 1.6rem; }
|
1989
|
-
.md-footer-nav__link--prev .md-footer-nav__title {
|
1990
|
-
display: none; }
|
1991
|
-
.md-search-result__teaser {
|
1992
|
-
max-height: 5rem;
|
1993
|
-
-webkit-line-clamp: 3; }
|
1994
|
-
.codehilite .hll, .md-typeset .highlight .hll {
|
1995
|
-
margin: 0 -1.6rem;
|
1996
|
-
padding: 0 1.6rem; }
|
1997
|
-
.md-typeset > .codehilite, .md-typeset > .highlight {
|
1998
|
-
margin: 1em -1.6rem;
|
1999
|
-
border-radius: 0; }
|
2000
|
-
.md-typeset > .codehilite pre, .md-typeset > .highlight pre,
|
2001
|
-
.md-typeset > .codehilite code,
|
2002
|
-
.md-typeset > .highlight code {
|
2003
|
-
padding: 1.05rem 1.6rem; }
|
2004
|
-
.md-typeset > .codehilitetable, .md-typeset > .highlighttable {
|
2005
|
-
margin: 1em -1.6rem;
|
2006
|
-
border-radius: 0; }
|
2007
|
-
.md-typeset > .codehilitetable .codehilite > pre, .md-typeset > .highlighttable .codehilite > pre, .md-typeset > .codehilitetable .highlight > pre, .md-typeset > .highlighttable .highlight > pre,
|
2008
|
-
.md-typeset > .codehilitetable .codehilite > code,
|
2009
|
-
.md-typeset > .highlighttable .codehilite > code, .md-typeset > .codehilitetable .highlight > code, .md-typeset > .highlighttable .highlight > code,
|
2010
|
-
.md-typeset > .codehilitetable .linenodiv,
|
2011
|
-
.md-typeset > .highlighttable .linenodiv {
|
2012
|
-
padding: 1rem 1.6rem; }
|
2013
|
-
.md-typeset > p > .MJXc-display {
|
2014
|
-
margin: 0.75em -1.6rem;
|
2015
|
-
padding: 0.25em 1.6rem; }
|
2016
|
-
.md-typeset > .superfences-tabs {
|
2017
|
-
margin: 1em -1.6rem;
|
2018
|
-
border: 0;
|
2019
|
-
border-top: 0.1rem solid rgba(0, 0, 0, 0.07);
|
2020
|
-
border-radius: 0; }
|
2021
|
-
.md-typeset > .superfences-tabs pre,
|
2022
|
-
.md-typeset > .superfences-tabs code {
|
2023
|
-
padding: 1.05rem 1.6rem; } }
|
2024
|
-
|
2025
|
-
@media only screen and (min-width: 100em) {
|
2026
|
-
html {
|
2027
|
-
font-size: 68.75%; } }
|
2028
|
-
|
2029
|
-
@media only screen and (min-width: 125em) {
|
2030
|
-
html {
|
2031
|
-
font-size: 75%; } }
|
2032
|
-
|
2033
|
-
@media only screen and (max-width: 59.9375em) {
|
2034
|
-
body[data-md-state="lock"] {
|
2035
|
-
overflow: hidden; }
|
2036
|
-
.ios body[data-md-state="lock"] .md-container {
|
2037
|
-
display: none; }
|
2038
|
-
html .md-nav__link[for="__toc"] {
|
2039
|
-
display: block;
|
2040
|
-
padding-right: 4.8rem; }
|
2041
|
-
html .md-nav__link[for="__toc"]::after {
|
2042
|
-
color: inherit;
|
2043
|
-
content: "\E8DE"; }
|
2044
|
-
html .md-nav__link[for="__toc"] + .md-nav__link {
|
2045
|
-
display: none; }
|
2046
|
-
html .md-nav__link[for="__toc"] ~ .md-nav {
|
2047
|
-
display: flex; }
|
2048
|
-
html [dir="rtl"] .md-nav__link {
|
2049
|
-
padding-right: 1.6rem;
|
2050
|
-
padding-left: 4.8rem; }
|
2051
|
-
.md-nav__source {
|
2052
|
-
display: block;
|
2053
|
-
padding: 0 0.4rem;
|
2054
|
-
background-color: rgba(50, 64, 144, 0.9675);
|
2055
|
-
color: white; }
|
2056
|
-
.md-search__overlay {
|
2057
|
-
position: absolute;
|
2058
|
-
top: 0.4rem;
|
2059
|
-
left: 0.4rem;
|
2060
|
-
width: 3.6rem;
|
2061
|
-
height: 3.6rem;
|
2062
|
-
-webkit-transform-origin: center;
|
2063
|
-
transform-origin: center;
|
2064
|
-
transition: opacity 0.2s 0.2s, -webkit-transform 0.3s 0.1s;
|
2065
|
-
transition: transform 0.3s 0.1s, opacity 0.2s 0.2s;
|
2066
|
-
transition: transform 0.3s 0.1s, opacity 0.2s 0.2s, -webkit-transform 0.3s 0.1s;
|
2067
|
-
border-radius: 2rem;
|
2068
|
-
background-color: white;
|
2069
|
-
overflow: hidden;
|
2070
|
-
pointer-events: none; }
|
2071
|
-
[dir="rtl"] .md-search__overlay {
|
2072
|
-
right: 0.4rem;
|
2073
|
-
left: initial; }
|
2074
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__overlay {
|
2075
|
-
transition: opacity 0.1s, -webkit-transform 0.4s;
|
2076
|
-
transition: transform 0.4s, opacity 0.1s;
|
2077
|
-
transition: transform 0.4s, opacity 0.1s, -webkit-transform 0.4s;
|
2078
|
-
opacity: 1; }
|
2079
|
-
.md-search__inner {
|
2080
|
-
position: fixed;
|
2081
|
-
top: 0;
|
2082
|
-
left: 100%;
|
2083
|
-
width: 100%;
|
2084
|
-
height: 100%;
|
2085
|
-
-webkit-transform: translateX(5%);
|
2086
|
-
transform: translateX(5%);
|
2087
|
-
transition: right 0s 0.3s, left 0s 0.3s, opacity 0.15s 0.15s, -webkit-transform 0.15s 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
2088
|
-
transition: right 0s 0.3s, left 0s 0.3s, transform 0.15s 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s 0.15s;
|
2089
|
-
transition: right 0s 0.3s, left 0s 0.3s, transform 0.15s 0.15s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s 0.15s, -webkit-transform 0.15s 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
2090
|
-
opacity: 0;
|
2091
|
-
z-index: 2; }
|
2092
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__inner {
|
2093
|
-
left: 0;
|
2094
|
-
-webkit-transform: translateX(0);
|
2095
|
-
transform: translateX(0);
|
2096
|
-
transition: right 0s 0s, left 0s 0s, opacity 0.15s 0.15s, -webkit-transform 0.15s 0.15s cubic-bezier(0.1, 0.7, 0.1, 1);
|
2097
|
-
transition: right 0s 0s, left 0s 0s, transform 0.15s 0.15s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s 0.15s;
|
2098
|
-
transition: right 0s 0s, left 0s 0s, transform 0.15s 0.15s cubic-bezier(0.1, 0.7, 0.1, 1), opacity 0.15s 0.15s, -webkit-transform 0.15s 0.15s cubic-bezier(0.1, 0.7, 0.1, 1);
|
2099
|
-
opacity: 1; }
|
2100
|
-
[dir="rtl"] [data-md-toggle="search"]:checked ~ .md-header .md-search__inner {
|
2101
|
-
right: 0;
|
2102
|
-
left: initial; }
|
2103
|
-
html [dir="rtl"] .md-search__inner {
|
2104
|
-
right: 100%;
|
2105
|
-
left: initial;
|
2106
|
-
-webkit-transform: translateX(-5%);
|
2107
|
-
transform: translateX(-5%); }
|
2108
|
-
.md-search__input {
|
2109
|
-
width: 100%;
|
2110
|
-
height: 4.8rem;
|
2111
|
-
font-size: 1.8rem; }
|
2112
|
-
.md-search__icon[for="__search"] {
|
2113
|
-
top: 1.2rem;
|
2114
|
-
left: 1.6rem; }
|
2115
|
-
.md-search__icon[for="__search"][for="__search"]::before {
|
2116
|
-
content: "\E5C4"; }
|
2117
|
-
[dir="rtl"] .md-search__icon[for="__search"][for="__search"]::before {
|
2118
|
-
content: "\E5C8"; }
|
2119
|
-
.md-search__icon[type="reset"] {
|
2120
|
-
top: 1.2rem;
|
2121
|
-
right: 1.6rem; }
|
2122
|
-
.md-search__output {
|
2123
|
-
top: 4.8rem;
|
2124
|
-
bottom: 0; }
|
2125
|
-
.md-search-result__article--document::before {
|
2126
|
-
display: none; } }
|
2127
|
-
|
2128
|
-
@media only screen and (max-width: 76.1875em) {
|
2129
|
-
[data-md-toggle="drawer"]:checked ~ .md-overlay {
|
2130
|
-
width: 100%;
|
2131
|
-
height: 100%;
|
2132
|
-
transition: width 0s, height 0s, opacity 0.25s;
|
2133
|
-
opacity: 1; }
|
2134
|
-
.md-header-nav__button.md-icon--home, .md-header-nav__button.md-logo {
|
2135
|
-
display: none; }
|
2136
|
-
.md-hero__inner {
|
2137
|
-
margin-top: 4.8rem;
|
2138
|
-
margin-bottom: 2.4rem; }
|
2139
|
-
.md-nav {
|
2140
|
-
background-color: white; }
|
2141
|
-
.md-nav--primary,
|
2142
|
-
.md-nav--primary .md-nav {
|
2143
|
-
display: flex;
|
2144
|
-
position: absolute;
|
2145
|
-
top: 0;
|
2146
|
-
right: 0;
|
2147
|
-
left: 0;
|
2148
|
-
flex-direction: column;
|
2149
|
-
height: 100%;
|
2150
|
-
z-index: 1; }
|
2151
|
-
.md-nav--primary .md-nav__title,
|
2152
|
-
.md-nav--primary .md-nav__item {
|
2153
|
-
font-size: 1.6rem;
|
2154
|
-
line-height: 1.5; }
|
2155
|
-
html .md-nav--primary .md-nav__title {
|
2156
|
-
position: relative;
|
2157
|
-
height: 11.2rem;
|
2158
|
-
padding: 6rem 1.6rem 0.4rem;
|
2159
|
-
background-color: rgba(0, 0, 0, 0.07);
|
2160
|
-
color: rgba(0, 0, 0, 0.54);
|
2161
|
-
font-weight: 400;
|
2162
|
-
line-height: 4.8rem;
|
2163
|
-
white-space: nowrap;
|
2164
|
-
cursor: pointer; }
|
2165
|
-
html .md-nav--primary .md-nav__title::before {
|
2166
|
-
display: block;
|
2167
|
-
position: absolute;
|
2168
|
-
top: 0.4rem;
|
2169
|
-
left: 0.4rem;
|
2170
|
-
width: 4rem;
|
2171
|
-
height: 4rem;
|
2172
|
-
color: rgba(0, 0, 0, 0.54); }
|
2173
|
-
html .md-nav--primary .md-nav__title ~ .md-nav__list {
|
2174
|
-
background-color: white;
|
2175
|
-
box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.07) inset; }
|
2176
|
-
html .md-nav--primary .md-nav__title ~ .md-nav__list > .md-nav__item:first-child {
|
2177
|
-
border-top: 0; }
|
2178
|
-
html .md-nav--primary .md-nav__title--site {
|
2179
|
-
position: relative;
|
2180
|
-
background-color: #3f51b5;
|
2181
|
-
color: white; }
|
2182
|
-
html .md-nav--primary .md-nav__title--site .md-nav__button {
|
2183
|
-
display: block;
|
2184
|
-
position: absolute;
|
2185
|
-
top: 0.4rem;
|
2186
|
-
left: 0.4rem;
|
2187
|
-
width: 6.4rem;
|
2188
|
-
height: 6.4rem;
|
2189
|
-
font-size: 4.8rem; }
|
2190
|
-
html .md-nav--primary .md-nav__title--site::before {
|
2191
|
-
display: none; }
|
2192
|
-
html [dir="rtl"] .md-nav--primary .md-nav__title::before {
|
2193
|
-
right: 0.4rem;
|
2194
|
-
left: initial; }
|
2195
|
-
html [dir="rtl"] .md-nav--primary .md-nav__title--site .md-nav__button {
|
2196
|
-
right: 0.4rem;
|
2197
|
-
left: initial; }
|
2198
|
-
.md-nav--primary .md-nav__list {
|
2199
|
-
flex: 1;
|
2200
|
-
overflow-y: auto; }
|
2201
|
-
.md-nav--primary .md-nav__item {
|
2202
|
-
padding: 0;
|
2203
|
-
border-top: 0.1rem solid rgba(0, 0, 0, 0.07); }
|
2204
|
-
[dir="rtl"] .md-nav--primary .md-nav__item {
|
2205
|
-
padding: 0; }
|
2206
|
-
.md-nav--primary .md-nav__item--nested > .md-nav__link {
|
2207
|
-
padding-right: 4.8rem; }
|
2208
|
-
[dir="rtl"] .md-nav--primary .md-nav__item--nested > .md-nav__link {
|
2209
|
-
padding-right: 1.6rem;
|
2210
|
-
padding-left: 4.8rem; }
|
2211
|
-
.md-nav--primary .md-nav__item--nested > .md-nav__link::after {
|
2212
|
-
content: "\E315"; }
|
2213
|
-
[dir="rtl"] .md-nav--primary .md-nav__item--nested > .md-nav__link::after {
|
2214
|
-
content: "\E314"; }
|
2215
|
-
.md-nav--primary .md-nav__link {
|
2216
|
-
position: relative;
|
2217
|
-
margin-top: 0;
|
2218
|
-
padding: 1.2rem 1.6rem; }
|
2219
|
-
.md-nav--primary .md-nav__link::after {
|
2220
|
-
position: absolute;
|
2221
|
-
top: 50%;
|
2222
|
-
right: 1.2rem;
|
2223
|
-
margin-top: -1.2rem;
|
2224
|
-
color: inherit;
|
2225
|
-
font-size: 2.4rem; }
|
2226
|
-
[dir="rtl"] .md-nav--primary .md-nav__link::after {
|
2227
|
-
right: initial;
|
2228
|
-
left: 1.2rem; }
|
2229
|
-
.md-nav--primary .md-nav--secondary .md-nav__link {
|
2230
|
-
position: static; }
|
2231
|
-
.md-nav--primary .md-nav--secondary .md-nav {
|
2232
|
-
position: static;
|
2233
|
-
background-color: transparent; }
|
2234
|
-
.md-nav--primary .md-nav--secondary .md-nav .md-nav__link {
|
2235
|
-
padding-left: 2.8rem; }
|
2236
|
-
[dir="rtl"] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link {
|
2237
|
-
padding-right: 2.8rem;
|
2238
|
-
padding-left: initial; }
|
2239
|
-
.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link {
|
2240
|
-
padding-left: 4rem; }
|
2241
|
-
[dir="rtl"] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link {
|
2242
|
-
padding-right: 4rem;
|
2243
|
-
padding-left: initial; }
|
2244
|
-
.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link {
|
2245
|
-
padding-left: 5.2rem; }
|
2246
|
-
[dir="rtl"] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link {
|
2247
|
-
padding-right: 5.2rem;
|
2248
|
-
padding-left: initial; }
|
2249
|
-
.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link {
|
2250
|
-
padding-left: 6.4rem; }
|
2251
|
-
[dir="rtl"] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link {
|
2252
|
-
padding-right: 6.4rem;
|
2253
|
-
padding-left: initial; }
|
2254
|
-
.md-nav__toggle ~ .md-nav {
|
2255
|
-
display: flex;
|
2256
|
-
-webkit-transform: translateX(100%);
|
2257
|
-
transform: translateX(100%);
|
2258
|
-
transition: opacity 0.125s 0.05s, -webkit-transform 0.25s cubic-bezier(0.8, 0, 0.6, 1);
|
2259
|
-
transition: transform 0.25s cubic-bezier(0.8, 0, 0.6, 1), opacity 0.125s 0.05s;
|
2260
|
-
transition: transform 0.25s cubic-bezier(0.8, 0, 0.6, 1), opacity 0.125s 0.05s, -webkit-transform 0.25s cubic-bezier(0.8, 0, 0.6, 1);
|
2261
|
-
opacity: 0; }
|
2262
|
-
[dir="rtl"] .md-nav__toggle ~ .md-nav {
|
2263
|
-
-webkit-transform: translateX(-100%);
|
2264
|
-
transform: translateX(-100%); }
|
2265
|
-
.no-csstransforms3d .md-nav__toggle ~ .md-nav {
|
2266
|
-
display: none; }
|
2267
|
-
.md-nav__toggle:checked ~ .md-nav {
|
2268
|
-
-webkit-transform: translateX(0);
|
2269
|
-
transform: translateX(0);
|
2270
|
-
transition: opacity 0.125s 0.125s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
2271
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.125s 0.125s;
|
2272
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.125s 0.125s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
2273
|
-
opacity: 1; }
|
2274
|
-
.no-csstransforms3d .md-nav__toggle:checked ~ .md-nav {
|
2275
|
-
display: flex; }
|
2276
|
-
.md-sidebar--primary {
|
2277
|
-
position: fixed;
|
2278
|
-
top: 0;
|
2279
|
-
left: -24.2rem;
|
2280
|
-
width: 24.2rem;
|
2281
|
-
height: 100%;
|
2282
|
-
-webkit-transform: translateX(0);
|
2283
|
-
transform: translateX(0);
|
2284
|
-
transition: box-shadow 0.25s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
2285
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
|
2286
|
-
transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
|
2287
|
-
background-color: white;
|
2288
|
-
z-index: 3; }
|
2289
|
-
[dir="rtl"] .md-sidebar--primary {
|
2290
|
-
right: -24.2rem;
|
2291
|
-
left: initial; }
|
2292
|
-
.no-csstransforms3d .md-sidebar--primary {
|
2293
|
-
display: none; }
|
2294
|
-
[data-md-toggle="drawer"]:checked ~ .md-container .md-sidebar--primary {
|
2295
|
-
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
|
2296
|
-
-webkit-transform: translateX(24.2rem);
|
2297
|
-
transform: translateX(24.2rem); }
|
2298
|
-
[dir="rtl"] [data-md-toggle="drawer"]:checked ~ .md-container .md-sidebar--primary {
|
2299
|
-
-webkit-transform: translateX(-24.2rem);
|
2300
|
-
transform: translateX(-24.2rem); }
|
2301
|
-
.no-csstransforms3d [data-md-toggle="drawer"]:checked ~ .md-container .md-sidebar--primary {
|
2302
|
-
display: block; }
|
2303
|
-
.md-sidebar--primary .md-sidebar__scrollwrap {
|
2304
|
-
overflow: hidden; }
|
2305
|
-
.md-sidebar--primary .md-sidebar__scrollwrap {
|
2306
|
-
position: absolute;
|
2307
|
-
top: 0;
|
2308
|
-
right: 0;
|
2309
|
-
bottom: 0;
|
2310
|
-
left: 0;
|
2311
|
-
margin: 0; }
|
2312
|
-
.md-tabs {
|
2313
|
-
display: none; } }
|
2314
|
-
|
2315
|
-
@media only screen and (min-width: 60em) {
|
2316
|
-
.md-content {
|
2317
|
-
margin-right: 24.2rem; }
|
2318
|
-
[dir="rtl"] .md-content {
|
2319
|
-
margin-right: initial;
|
2320
|
-
margin-left: 24.2rem; }
|
2321
|
-
.md-header-nav__button.md-icon--search {
|
2322
|
-
display: none; }
|
2323
|
-
.md-header-nav__source {
|
2324
|
-
display: block;
|
2325
|
-
width: 23rem;
|
2326
|
-
max-width: 23rem;
|
2327
|
-
margin-left: 2.8rem;
|
2328
|
-
padding-right: 1.2rem; }
|
2329
|
-
[dir="rtl"] .md-header-nav__source {
|
2330
|
-
margin-right: 2.8rem;
|
2331
|
-
margin-left: initial;
|
2332
|
-
padding-right: initial;
|
2333
|
-
padding-left: 1.2rem; }
|
2334
|
-
.md-search {
|
2335
|
-
padding: 0.4rem; }
|
2336
|
-
.md-search__overlay {
|
2337
|
-
position: fixed;
|
2338
|
-
top: 0;
|
2339
|
-
left: 0;
|
2340
|
-
width: 0;
|
2341
|
-
height: 0;
|
2342
|
-
transition: width 0s 0.25s, height 0s 0.25s, opacity 0.25s;
|
2343
|
-
background-color: rgba(0, 0, 0, 0.54);
|
2344
|
-
cursor: pointer; }
|
2345
|
-
[dir="rtl"] .md-search__overlay {
|
2346
|
-
right: 0;
|
2347
|
-
left: initial; }
|
2348
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__overlay {
|
2349
|
-
width: 100%;
|
2350
|
-
height: 100%;
|
2351
|
-
transition: width 0s, height 0s, opacity 0.25s;
|
2352
|
-
opacity: 1; }
|
2353
|
-
.md-search__inner {
|
2354
|
-
position: relative;
|
2355
|
-
width: 23rem;
|
2356
|
-
padding: 0.2rem 0;
|
2357
|
-
float: right;
|
2358
|
-
transition: width 0.25s cubic-bezier(0.1, 0.7, 0.1, 1); }
|
2359
|
-
[dir="rtl"] .md-search__inner {
|
2360
|
-
float: left; }
|
2361
|
-
.md-search__form {
|
2362
|
-
border-radius: 0.2rem; }
|
2363
|
-
.md-search__input {
|
2364
|
-
width: 100%;
|
2365
|
-
height: 3.6rem;
|
2366
|
-
padding-left: 4.4rem;
|
2367
|
-
transition: background-color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1), color 0.25s cubic-bezier(0.1, 0.7, 0.1, 1);
|
2368
|
-
border-radius: 0.2rem;
|
2369
|
-
background-color: rgba(0, 0, 0, 0.26);
|
2370
|
-
color: inherit;
|
2371
|
-
font-size: 1.6rem; }
|
2372
|
-
[dir="rtl"] .md-search__input {
|
2373
|
-
padding-right: 4.4rem; }
|
2374
|
-
.md-search__input + .md-search__icon {
|
2375
|
-
color: inherit; }
|
2376
|
-
.md-search__input::-webkit-input-placeholder {
|
2377
|
-
color: rgba(255, 255, 255, 0.7); }
|
2378
|
-
.md-search__input:-ms-input-placeholder {
|
2379
|
-
color: rgba(255, 255, 255, 0.7); }
|
2380
|
-
.md-search__input::-ms-input-placeholder {
|
2381
|
-
color: rgba(255, 255, 255, 0.7); }
|
2382
|
-
.md-search__input::placeholder {
|
2383
|
-
color: rgba(255, 255, 255, 0.7); }
|
2384
|
-
.md-search__input:hover {
|
2385
|
-
background-color: rgba(255, 255, 255, 0.12); }
|
2386
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input {
|
2387
|
-
border-radius: 0.2rem 0.2rem 0 0;
|
2388
|
-
background-color: white;
|
2389
|
-
color: rgba(0, 0, 0, 0.87);
|
2390
|
-
text-overflow: none; }
|
2391
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input + .md-search__icon, [data-md-toggle="search"]:checked ~ .md-header .md-search__input::-webkit-input-placeholder {
|
2392
|
-
color: rgba(0, 0, 0, 0.54); }
|
2393
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input + .md-search__icon, [data-md-toggle="search"]:checked ~ .md-header .md-search__input:-ms-input-placeholder {
|
2394
|
-
color: rgba(0, 0, 0, 0.54); }
|
2395
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input + .md-search__icon, [data-md-toggle="search"]:checked ~ .md-header .md-search__input::-ms-input-placeholder {
|
2396
|
-
color: rgba(0, 0, 0, 0.54); }
|
2397
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__input + .md-search__icon, [data-md-toggle="search"]:checked ~ .md-header .md-search__input::placeholder {
|
2398
|
-
color: rgba(0, 0, 0, 0.54); }
|
2399
|
-
.md-search__output {
|
2400
|
-
top: 3.8rem;
|
2401
|
-
transition: opacity 0.4s;
|
2402
|
-
opacity: 0; }
|
2403
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__output {
|
2404
|
-
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
|
2405
|
-
opacity: 1; }
|
2406
|
-
.md-search__scrollwrap {
|
2407
|
-
max-height: 0; }
|
2408
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__scrollwrap {
|
2409
|
-
max-height: 75vh; }
|
2410
|
-
.md-search__scrollwrap::-webkit-scrollbar {
|
2411
|
-
width: 0.4rem;
|
2412
|
-
height: 0.4rem; }
|
2413
|
-
.md-search__scrollwrap::-webkit-scrollbar-thumb {
|
2414
|
-
background-color: rgba(0, 0, 0, 0.26); }
|
2415
|
-
.md-search__scrollwrap::-webkit-scrollbar-thumb:hover {
|
2416
|
-
background-color: #536dfe; }
|
2417
|
-
.md-search-result__meta {
|
2418
|
-
padding-left: 4.4rem; }
|
2419
|
-
[dir="rtl"] .md-search-result__meta {
|
2420
|
-
padding-right: 4.4rem;
|
2421
|
-
padding-left: initial; }
|
2422
|
-
.md-search-result__article {
|
2423
|
-
padding-left: 4.4rem; }
|
2424
|
-
[dir="rtl"] .md-search-result__article {
|
2425
|
-
padding-right: 4.4rem;
|
2426
|
-
padding-left: 1.6rem; }
|
2427
|
-
.md-sidebar--secondary {
|
2428
|
-
display: block;
|
2429
|
-
margin-left: 100%;
|
2430
|
-
-webkit-transform: translate(-100%, 0);
|
2431
|
-
transform: translate(-100%, 0); }
|
2432
|
-
[dir="rtl"] .md-sidebar--secondary {
|
2433
|
-
margin-right: 100%;
|
2434
|
-
margin-left: initial;
|
2435
|
-
-webkit-transform: translate(100%, 0);
|
2436
|
-
transform: translate(100%, 0); } }
|
2437
|
-
|
2438
|
-
@media only screen and (min-width: 76.25em) {
|
2439
|
-
.md-content {
|
2440
|
-
margin-left: 24.2rem; }
|
2441
|
-
[dir="rtl"] .md-content {
|
2442
|
-
margin-right: 24.2rem; }
|
2443
|
-
.md-content__inner {
|
2444
|
-
margin-right: 2.4rem;
|
2445
|
-
margin-left: 2.4rem; }
|
2446
|
-
.md-header-nav__button.md-icon--menu {
|
2447
|
-
display: none; }
|
2448
|
-
.md-nav[data-md-state="animate"] {
|
2449
|
-
transition: max-height 0.25s cubic-bezier(0.86, 0, 0.07, 1); }
|
2450
|
-
.md-nav__toggle ~ .md-nav {
|
2451
|
-
max-height: 0;
|
2452
|
-
overflow: hidden; }
|
2453
|
-
.no-js .md-nav__toggle ~ .md-nav {
|
2454
|
-
display: none; }
|
2455
|
-
.md-nav__toggle:checked ~ .md-nav, .md-nav[data-md-state="expand"] {
|
2456
|
-
max-height: 100%; }
|
2457
|
-
.no-js .md-nav__toggle:checked ~ .md-nav, .no-js .md-nav[data-md-state="expand"] {
|
2458
|
-
display: block; }
|
2459
|
-
.md-nav__item--nested > .md-nav > .md-nav__title {
|
2460
|
-
display: none; }
|
2461
|
-
.md-nav__item--nested > .md-nav__link::after {
|
2462
|
-
display: inline-block;
|
2463
|
-
-webkit-transform-origin: 0.45em 0.45em;
|
2464
|
-
transform-origin: 0.45em 0.45em;
|
2465
|
-
-webkit-transform-style: preserve-3d;
|
2466
|
-
transform-style: preserve-3d;
|
2467
|
-
vertical-align: -0.125em; }
|
2468
|
-
.js .md-nav__item--nested > .md-nav__link::after {
|
2469
|
-
transition: -webkit-transform 0.4s;
|
2470
|
-
transition: transform 0.4s;
|
2471
|
-
transition: transform 0.4s, -webkit-transform 0.4s; }
|
2472
|
-
.md-nav__item--nested .md-nav__toggle:checked ~ .md-nav__link::after {
|
2473
|
-
-webkit-transform: rotateX(180deg);
|
2474
|
-
transform: rotateX(180deg); }
|
2475
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__inner {
|
2476
|
-
width: 68.8rem; }
|
2477
|
-
.md-search__scrollwrap {
|
2478
|
-
width: 68.8rem; }
|
2479
|
-
.md-sidebar--secondary {
|
2480
|
-
margin-left: 122rem; }
|
2481
|
-
[dir="rtl"] .md-sidebar--secondary {
|
2482
|
-
margin-right: 122rem;
|
2483
|
-
margin-left: initial; }
|
2484
|
-
.md-tabs ~ .md-main .md-nav--primary > .md-nav__list > .md-nav__item--nested {
|
2485
|
-
font-size: 0;
|
2486
|
-
visibility: hidden; }
|
2487
|
-
.md-tabs--active ~ .md-main .md-nav--primary .md-nav__title {
|
2488
|
-
display: block;
|
2489
|
-
padding: 0; }
|
2490
|
-
.md-tabs--active ~ .md-main .md-nav--primary .md-nav__title--site {
|
2491
|
-
display: none; }
|
2492
|
-
.no-js .md-tabs--active ~ .md-main .md-nav--primary .md-nav {
|
2493
|
-
display: block; }
|
2494
|
-
.md-tabs--active ~ .md-main .md-nav--primary > .md-nav__list > .md-nav__item {
|
2495
|
-
font-size: 0;
|
2496
|
-
visibility: hidden; }
|
2497
|
-
.md-tabs--active ~ .md-main .md-nav--primary > .md-nav__list > .md-nav__item--nested {
|
2498
|
-
display: none;
|
2499
|
-
font-size: 1.4rem;
|
2500
|
-
overflow: auto;
|
2501
|
-
visibility: visible; }
|
2502
|
-
.md-tabs--active ~ .md-main .md-nav--primary > .md-nav__list > .md-nav__item--nested > .md-nav__link {
|
2503
|
-
display: none; }
|
2504
|
-
.md-tabs--active ~ .md-main .md-nav--primary > .md-nav__list > .md-nav__item--active {
|
2505
|
-
display: block; }
|
2506
|
-
.md-tabs--active ~ .md-main .md-nav[data-md-level="1"] {
|
2507
|
-
max-height: initial;
|
2508
|
-
overflow: visible; }
|
2509
|
-
.md-tabs--active ~ .md-main .md-nav[data-md-level="1"] > .md-nav__list > .md-nav__item {
|
2510
|
-
padding-left: 0; }
|
2511
|
-
.md-tabs--active ~ .md-main .md-nav[data-md-level="1"] .md-nav .md-nav__title {
|
2512
|
-
display: none; } }
|
2513
|
-
|
2514
|
-
@media only screen and (min-width: 45em) {
|
2515
|
-
.md-footer-nav__link {
|
2516
|
-
width: 50%; }
|
2517
|
-
.md-footer-copyright {
|
2518
|
-
max-width: 75%;
|
2519
|
-
float: left; }
|
2520
|
-
[dir="rtl"] .md-footer-copyright {
|
2521
|
-
float: right; }
|
2522
|
-
.md-footer-social {
|
2523
|
-
padding: 1.2rem 0;
|
2524
|
-
float: right; }
|
2525
|
-
[dir="rtl"] .md-footer-social {
|
2526
|
-
float: left; } }
|
2527
|
-
|
2528
|
-
@media only screen and (max-width: 29.9375em) {
|
2529
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__overlay {
|
2530
|
-
-webkit-transform: scale(45);
|
2531
|
-
transform: scale(45); } }
|
2532
|
-
|
2533
|
-
@media only screen and (min-width: 30em) and (max-width: 44.9375em) {
|
2534
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__overlay {
|
2535
|
-
-webkit-transform: scale(60);
|
2536
|
-
transform: scale(60); } }
|
2537
|
-
|
2538
|
-
@media only screen and (min-width: 45em) and (max-width: 59.9375em) {
|
2539
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__overlay {
|
2540
|
-
-webkit-transform: scale(75);
|
2541
|
-
transform: scale(75); } }
|
2542
|
-
|
2543
|
-
@media only screen and (min-width: 60em) and (max-width: 76.1875em) {
|
2544
|
-
[data-md-toggle="search"]:checked ~ .md-header .md-search__inner {
|
2545
|
-
width: 46.8rem; }
|
2546
|
-
.md-search__scrollwrap {
|
2547
|
-
width: 46.8rem; }
|
2548
|
-
.md-search-result__teaser {
|
2549
|
-
max-height: 5rem;
|
2550
|
-
-webkit-line-clamp: 3; } }
|
2551
|
-
|
2552
|
-
/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJhc3NldHMvc3R5bGVzaGVldHMvYXBwbGljYXRpb24uNDUxZjgwZTUuY3NzIiwic291cmNlUm9vdCI6IiJ9*/
|