UNPKG

infima

Version:

A UI framework for content-centric websites.

1,903 lines (1,573 loc) 78.2 kB
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /* Common */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ :root { --ifm-color-scheme: light; /* Colors. */ --ifm-dark-value: 10%; --ifm-darker-value: 15%; --ifm-darkest-value: 30%; --ifm-light-value: 15%; --ifm-lighter-value: 30%; --ifm-lightest-value: 50%; /* This seems like a lot, but we want to ensure enough contrast. Goal is to have a min score of 3 on https://www.myndex.com/APCA/fullmatrix For fontWeight 400 + score 3, the cell must show a value < 16px (fontsize we use in places like alerts) See also https://github.com/facebookincubator/infima/issues/55#issuecomment-884023075 */ --ifm-contrast-background-value: 90%; --ifm-contrast-foreground-value: 70%; /* Using slightly different values for dark mode */ --ifm-contrast-background-dark-value: 70%; --ifm-contrast-foreground-dark-value: 90%; --ifm-color-primary: #3578e5; --ifm-color-secondary: #ebedf0; --ifm-color-success: #00a400; --ifm-color-info: #54c7ec; --ifm-color-warning: #ffba00; --ifm-color-danger: #fa383e; --ifm-color-primary-dark: rgb(48, 108, 206); --ifm-color-primary-darker: rgb(45, 102, 195); --ifm-color-primary-darkest: rgb(37, 84, 160); --ifm-color-primary-light: rgb(83, 140, 233); --ifm-color-primary-lighter: rgb(114, 161, 237); --ifm-color-primary-lightest: rgb(154, 188, 242); --ifm-color-primary-contrast-background: rgb(235, 242, 252); --ifm-color-primary-contrast-foreground: rgb(16, 36, 69); --ifm-color-secondary-dark: rgb(212, 213, 216); --ifm-color-secondary-darker: rgb(200, 201, 204); --ifm-color-secondary-darkest: rgb(164, 166, 168); --ifm-color-secondary-light: rgb(238, 240, 242); --ifm-color-secondary-lighter: rgb(241, 242, 245); --ifm-color-secondary-lightest: rgb(245, 246, 248); --ifm-color-secondary-contrast-background: rgb(253, 253, 254); --ifm-color-secondary-contrast-foreground: rgb(71, 71, 72); --ifm-color-success-dark: rgb(0, 148, 0); --ifm-color-success-darker: rgb(0, 139, 0); --ifm-color-success-darkest: rgb(0, 115, 0); --ifm-color-success-light: rgb(38, 178, 38); --ifm-color-success-lighter: rgb(77, 191, 77); --ifm-color-success-lightest: rgb(128, 210, 128); --ifm-color-success-contrast-background: rgb(230, 246, 230); --ifm-color-success-contrast-foreground: rgb(0, 49, 0); --ifm-color-info-dark: rgb(76, 179, 212); --ifm-color-info-darker: rgb(71, 169, 201); --ifm-color-info-darkest: rgb(59, 139, 165); --ifm-color-info-light: rgb(110, 207, 239); --ifm-color-info-lighter: rgb(135, 216, 242); --ifm-color-info-lightest: rgb(170, 227, 246); --ifm-color-info-contrast-background: rgb(238, 249, 253); --ifm-color-info-contrast-foreground: rgb(25, 60, 71); --ifm-color-warning-dark: rgb(230, 167, 0); --ifm-color-warning-darker: rgb(217, 158, 0); --ifm-color-warning-darkest: rgb(179, 130, 0); --ifm-color-warning-light: rgb(255, 196, 38); --ifm-color-warning-lighter: rgb(255, 207, 77); --ifm-color-warning-lightest: rgb(255, 221, 128); --ifm-color-warning-contrast-background: rgb(255, 248, 230); --ifm-color-warning-contrast-foreground: rgb(77, 56, 0); --ifm-color-danger-dark: rgb(225, 50, 56); --ifm-color-danger-darker: rgb(213, 48, 53); --ifm-color-danger-darkest: rgb(175, 39, 43); --ifm-color-danger-light: rgb(251, 86, 91); --ifm-color-danger-lighter: rgb(251, 116, 120); --ifm-color-danger-lightest: rgb(253, 156, 159); --ifm-color-danger-contrast-background: rgb(255, 235, 236); --ifm-color-danger-contrast-foreground: rgb(75, 17, 19); --ifm-color-white: #fff; --ifm-color-black: #000; --ifm-color-gray-0: var(--ifm-color-white); --ifm-color-gray-100: #f5f6f7; --ifm-color-gray-200: #ebedf0; --ifm-color-gray-300: #dadde1; --ifm-color-gray-400: #ccd0d5; --ifm-color-gray-500: #bec3c9; --ifm-color-gray-600: #8d949e; --ifm-color-gray-700: #606770; --ifm-color-gray-800: #444950; --ifm-color-gray-900: #1c1e21; --ifm-color-gray-1000: var(--ifm-color-black); --ifm-color-emphasis-0: var(--ifm-color-gray-0); --ifm-color-emphasis-100: var(--ifm-color-gray-100); --ifm-color-emphasis-200: var(--ifm-color-gray-200); --ifm-color-emphasis-300: var(--ifm-color-gray-300); --ifm-color-emphasis-400: var(--ifm-color-gray-400); --ifm-color-emphasis-500: var(--ifm-color-gray-500); --ifm-color-emphasis-600: var(--ifm-color-gray-600); --ifm-color-emphasis-700: var(--ifm-color-gray-700); --ifm-color-emphasis-800: var(--ifm-color-gray-800); --ifm-color-emphasis-900: var(--ifm-color-gray-900); --ifm-color-emphasis-1000: var(--ifm-color-gray-1000); /* Base. */ --ifm-color-content: var(--ifm-color-emphasis-900); --ifm-color-content-inverse: var(--ifm-color-emphasis-0); --ifm-color-content-secondary: #525860; --ifm-background-color: transparent; /* Body's background. */ --ifm-background-surface-color: var(--ifm-color-content-inverse); --ifm-global-border-width: 1px; --ifm-global-radius: 0.4rem; --ifm-hover-overlay: rgba(0, 0, 0, 0.05); /* Typography. */ --ifm-font-color-base: var(--ifm-color-content); --ifm-font-color-base-inverse: var(--ifm-color-content-inverse); --ifm-font-color-secondary: var(--ifm-color-content-secondary); --ifm-font-family-base: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; --ifm-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace; --ifm-font-size-base: 100%; --ifm-font-weight-light: 300; --ifm-font-weight-normal: 400; --ifm-font-weight-semibold: 500; --ifm-font-weight-bold: 700; --ifm-font-weight-base: var(--ifm-font-weight-normal); --ifm-line-height-base: 1.65; /* Spacing. */ --ifm-global-spacing: 1rem; --ifm-spacing-vertical: var(--ifm-global-spacing); --ifm-spacing-horizontal: var(--ifm-global-spacing); /* Transitions. */ --ifm-transition-fast: 200ms; --ifm-transition-slow: 400ms; --ifm-transition-timing-default: cubic-bezier(0.08, 0.52, 0.52, 1); /* Shadows. */ --ifm-global-shadow-lw: 0 1px 2px 0 rgba(0, 0, 0, 0.1); --ifm-global-shadow-md: 0 5px 40px rgba(0, 0, 0, 0.2); --ifm-global-shadow-tl: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1); /* Z-index. */ --ifm-z-index-dropdown: 100; --ifm-z-index-fixed: 200; --ifm-z-index-overlay: 400; --ifm-container-width: 1140px; --ifm-container-width-xl: 1320px; --ifm-code-background: rgb(246, 247, 248); --ifm-code-border-radius: var(--ifm-global-radius); --ifm-code-font-size: 90%; --ifm-code-padding-horizontal: 0.1rem; --ifm-code-padding-vertical: 0.1rem; --ifm-pre-background: var(--ifm-code-background); --ifm-pre-border-radius: var(--ifm-code-border-radius); --ifm-pre-color: inherit; --ifm-pre-line-height: 1.45; --ifm-pre-padding: 1rem; --ifm-heading-color: inherit; --ifm-heading-margin-top: 0; --ifm-heading-margin-bottom: var(--ifm-spacing-vertical); --ifm-heading-font-family: var(--ifm-font-family-base); --ifm-heading-font-weight: var(--ifm-font-weight-bold); --ifm-heading-line-height: 1.25; --ifm-h1-font-size: 2rem; --ifm-h2-font-size: 1.5rem; --ifm-h3-font-size: 1.25rem; --ifm-h4-font-size: 1rem; --ifm-h5-font-size: 0.875rem; --ifm-h6-font-size: 0.85rem; --ifm-image-alignment-padding: 1.25rem; /* Leading is the distance between two baselines */ /* TODO: add appropriate mobile leading */ --ifm-leading-desktop: 1.25; --ifm-leading: calc(var(--ifm-leading-desktop) * 1rem); --ifm-list-left-padding: 2rem; --ifm-list-margin: 1rem; --ifm-list-item-margin: 0.25rem; --ifm-list-paragraph-margin: 1rem; --ifm-table-cell-padding: 0.75rem; --ifm-table-background: transparent; --ifm-table-stripe-background: rgba(0, 0, 0, 0.03); --ifm-table-border-width: 1px; --ifm-table-border-color: var(--ifm-color-emphasis-300); --ifm-table-head-background: inherit; --ifm-table-head-color: inherit; --ifm-table-head-font-weight: var(--ifm-font-weight-bold); --ifm-table-cell-color: inherit; /* Links. */ --ifm-link-color: var(--ifm-color-primary); --ifm-link-decoration: none; --ifm-link-hover-color: var(--ifm-link-color); --ifm-link-hover-decoration: underline; /* Paragraphs. */ --ifm-paragraph-margin-bottom: var(--ifm-leading); /* Blockquotes. */ --ifm-blockquote-font-size: var(--ifm-font-size-base); --ifm-blockquote-border-left-width: 2px; --ifm-blockquote-padding-horizontal: var(--ifm-spacing-horizontal); --ifm-blockquote-padding-vertical: 0; --ifm-blockquote-shadow: none; --ifm-blockquote-color: var(--ifm-color-emphasis-800); --ifm-blockquote-border-color: var(--ifm-color-emphasis-300); /* Horizontal Rules. */ --ifm-hr-background-color: var(--ifm-color-emphasis-500); --ifm-hr-height: 1px; --ifm-hr-margin-vertical: 1.5rem; --ifm-scrollbar-size: 7px; --ifm-scrollbar-track-background-color: #f1f1f1; --ifm-scrollbar-thumb-background-color: #c0c0c0; --ifm-scrollbar-thumb-hover-background-color: #a7a7a7; --ifm-alert-background-color: inherit; /* Set a default which will be overridden later. */ --ifm-alert-border-color: inherit; /* Set a default which will be overridden later. */ --ifm-alert-border-radius: var(--ifm-global-radius); --ifm-alert-border-width: 0px; /* For users that want to easily add a border */ --ifm-alert-border-left-width: 5px; --ifm-alert-color: var(--ifm-font-color-base); --ifm-alert-padding-horizontal: var(--ifm-spacing-horizontal); --ifm-alert-padding-vertical: var(--ifm-spacing-vertical); --ifm-alert-shadow: var(--ifm-global-shadow-lw); --ifm-avatar-intro-margin: 1rem; --ifm-avatar-intro-alignment: inherit; --ifm-avatar-photo-size: 3rem; --ifm-badge-background-color: inherit; /* Set a default which will be overridden later. */ --ifm-badge-border-color: inherit; /* Set a default which will be overridden later. */ --ifm-badge-border-radius: var(--ifm-global-radius); --ifm-badge-border-width: var(--ifm-global-border-width); --ifm-badge-color: var(--ifm-color-white); --ifm-badge-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 0.5); --ifm-badge-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25); --ifm-breadcrumb-border-radius: 1.5rem; --ifm-breadcrumb-spacing: 0.5rem; --ifm-breadcrumb-color-active: var(--ifm-color-primary); --ifm-breadcrumb-item-background-active: var(--ifm-hover-overlay); --ifm-breadcrumb-padding-horizontal: 0.8rem; --ifm-breadcrumb-padding-vertical: 0.4rem; --ifm-breadcrumb-size-multiplier: 1; --ifm-breadcrumb-separator: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 256 256"><g><g><polygon points="79.093,0 48.907,30.187 146.72,128 48.907,225.813 79.093,256 207.093,128"/></g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g><g></g></svg>'); --ifm-breadcrumb-separator-filter: none; --ifm-breadcrumb-separator-size: 0.5rem; --ifm-breadcrumb-separator-size-multiplier: 1.25; --ifm-button-background-color: inherit; --ifm-button-border-color: var(--ifm-button-background-color); --ifm-button-border-width: var(--ifm-global-border-width); --ifm-button-color: var(--ifm-font-color-base-inverse); --ifm-button-font-weight: var(--ifm-font-weight-bold); --ifm-button-padding-horizontal: 1.5rem; --ifm-button-padding-vertical: 0.375rem; --ifm-button-size-multiplier: 1; --ifm-button-transition-duration: var(--ifm-transition-fast); --ifm-button-border-radius: calc( var(--ifm-global-radius) * var(--ifm-button-size-multiplier) ); --ifm-button-group-spacing: 2px; --ifm-card-background-color: var(--ifm-background-surface-color); --ifm-card-border-radius: calc(var(--ifm-global-radius) * 2); --ifm-card-horizontal-spacing: var(--ifm-global-spacing); --ifm-card-vertical-spacing: var(--ifm-global-spacing); --ifm-toc-border-color: var(--ifm-color-emphasis-300); --ifm-toc-link-color: var(--ifm-color-content-secondary); --ifm-toc-padding-vertical: 0.5rem; --ifm-toc-padding-horizontal: 0.5rem; --ifm-dropdown-background-color: var(--ifm-background-surface-color); --ifm-dropdown-font-weight: var(--ifm-font-weight-semibold); --ifm-dropdown-link-color: var(--ifm-font-color-base); --ifm-dropdown-hover-background-color: var(--ifm-hover-overlay); --ifm-footer-background-color: var(--ifm-color-emphasis-100); --ifm-footer-color: inherit; --ifm-footer-link-color: var(--ifm-color-emphasis-700); --ifm-footer-link-hover-color: var(--ifm-color-primary); --ifm-footer-link-horizontal-spacing: 0.5rem; --ifm-footer-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 2); --ifm-footer-padding-vertical: calc(var(--ifm-spacing-vertical) * 2); --ifm-footer-title-color: inherit; --ifm-footer-logo-max-width: min(30rem, 90vw); --ifm-hero-background-color: var(--ifm-background-surface-color); --ifm-hero-text-color: var(--ifm-color-emphasis-800); --ifm-menu-color: var(--ifm-color-emphasis-700); --ifm-menu-color-active: var(--ifm-color-primary); --ifm-menu-color-background-active: var(--ifm-hover-overlay); --ifm-menu-color-background-hover: var(--ifm-hover-overlay); --ifm-menu-link-padding-horizontal: 0.75rem; --ifm-menu-link-padding-vertical: 0.375rem; --ifm-menu-link-sublist-icon: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16px" height="16px" viewBox="0 0 24 24"><path fill="rgba(0,0,0,0.5)" d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"></path></svg>'); --ifm-menu-link-sublist-icon-filter: none; --ifm-navbar-background-color: var(--ifm-background-surface-color); --ifm-navbar-height: 3.75rem; --ifm-navbar-item-padding-horizontal: 0.75rem; --ifm-navbar-item-padding-vertical: 0.25rem; --ifm-navbar-link-color: var(--ifm-font-color-base); --ifm-navbar-link-hover-color: var(--ifm-color-primary); --ifm-navbar-link-active-color: var(--ifm-link-color); --ifm-navbar-padding-horizontal: var(--ifm-spacing-horizontal); --ifm-navbar-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.5); --ifm-navbar-shadow: var(--ifm-global-shadow-lw); --ifm-navbar-search-input-background-color: var(--ifm-color-emphasis-200); --ifm-navbar-search-input-color: var(--ifm-color-emphasis-800); --ifm-navbar-search-input-placeholder-color: var(--ifm-color-emphasis-500); --ifm-navbar-search-input-icon: url('data:image/svg+xml;utf8,<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="16px" width="16px"><path d="M6.02945,10.20327a4.17382,4.17382,0,1,1,4.17382-4.17382A4.15609,4.15609,0,0,1,6.02945,10.20327Zm9.69195,4.2199L10.8989,9.59979A5.88021,5.88021,0,0,0,12.058,6.02856,6.00467,6.00467,0,1,0,9.59979,10.8989l4.82338,4.82338a.89729.89729,0,0,0,1.29912,0,.89749.89749,0,0,0-.00087-1.29909Z" /></svg>'); --ifm-navbar-sidebar-width: 83vw; --ifm-pagination-border-radius: var(--ifm-global-radius); --ifm-pagination-color-active: var(--ifm-color-primary); --ifm-pagination-font-size: 1rem; --ifm-pagination-item-active-background: var(--ifm-hover-overlay); --ifm-pagination-page-spacing: 0.2em; --ifm-pagination-padding-horizontal: calc(var(--ifm-spacing-horizontal) * 1); --ifm-pagination-padding-vertical: calc(var(--ifm-spacing-vertical) * 0.25); --ifm-pagination-nav-border-radius: var(--ifm-global-radius); --ifm-pagination-nav-color-hover: var(--ifm-color-primary); --ifm-pills-color-active: var(--ifm-color-primary); --ifm-pills-color-background-active: var(--ifm-hover-overlay); --ifm-pills-spacing: 0.125rem; --ifm-tabs-color: var(--ifm-font-color-secondary); --ifm-tabs-color-active: var(--ifm-color-primary); --ifm-tabs-color-active-border: var(--ifm-tabs-color-active); --ifm-tabs-padding-horizontal: 1rem; --ifm-tabs-padding-vertical: 1rem; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ * { box-sizing: border-box; } html { background-color: var(--ifm-background-color); color: var(--ifm-font-color-base); color-scheme: var(--ifm-color-scheme); font: var(--ifm-font-size-base) / var(--ifm-line-height-base) var(--ifm-font-family-base); -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; text-rendering: optimizelegibility; -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%; } body { margin: 0; word-wrap: break-word; } iframe { border: 0; color-scheme: auto; } /* Layout */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .container { margin: 0 auto; max-width: var(--ifm-container-width); padding: 0 var(--ifm-spacing-horizontal); width: 100%; } .container--fluid { max-width: inherit; } .row { display: flex; flex-wrap: wrap; margin: 0 calc(var(--ifm-spacing-horizontal) * -1); } .row--no-gutters { margin-right: 0; margin-left: 0; } .row--no-gutters > .col { padding-right: 0; padding-left: 0; } .row--align-top { align-items: flex-start; } .row--align-bottom { align-items: flex-end; } .row--align-center { align-items: center; } .row--align-stretch { align-items: stretch; } .row--align-baseline { align-items: baseline; } .col { --ifm-col-width: 100%; flex: 1 0; margin-right: 0; max-width: var(--ifm-col-width); padding: 0 var(--ifm-spacing-horizontal); width: 100%; } .col[class*='col--'] { flex: 0 0 var(--ifm-col-width); } .col--1 { --ifm-col-width: calc(1 / 12 * 100%); } .col--offset-1 { margin-right: calc(1 / 12 * 100%); } .col--2 { --ifm-col-width: calc(2 / 12 * 100%); } .col--offset-2 { margin-right: calc(2 / 12 * 100%); } .col--3 { --ifm-col-width: calc(3 / 12 * 100%); } .col--offset-3 { margin-right: calc(3 / 12 * 100%); } .col--4 { --ifm-col-width: calc(4 / 12 * 100%); } .col--offset-4 { margin-right: calc(4 / 12 * 100%); } .col--5 { --ifm-col-width: calc(5 / 12 * 100%); } .col--offset-5 { margin-right: calc(5 / 12 * 100%); } .col--6 { --ifm-col-width: calc(6 / 12 * 100%); } .col--offset-6 { margin-right: calc(6 / 12 * 100%); } .col--7 { --ifm-col-width: calc(7 / 12 * 100%); } .col--offset-7 { margin-right: calc(7 / 12 * 100%); } .col--8 { --ifm-col-width: calc(8 / 12 * 100%); } .col--offset-8 { margin-right: calc(8 / 12 * 100%); } .col--9 { --ifm-col-width: calc(9 / 12 * 100%); } .col--offset-9 { margin-right: calc(9 / 12 * 100%); } .col--10 { --ifm-col-width: calc(10 / 12 * 100%); } .col--offset-10 { margin-right: calc(10 / 12 * 100%); } .col--11 { --ifm-col-width: calc(11 / 12 * 100%); } .col--offset-11 { margin-right: calc(11 / 12 * 100%); } .col--12 { --ifm-col-width: calc(12 / 12 * 100%); } .col--offset-12 { margin-right: calc(12 / 12 * 100%); } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .margin--none { margin: 0 !important; } .margin-top--none { margin-top: 0 !important; } .margin-left--none { margin-right: 0 !important; } .margin-bottom--none { margin-bottom: 0 !important; } .margin-right--none { margin-left: 0 !important; } .margin-vert--none { margin-bottom: 0 !important; margin-top: 0 !important; } .margin-horiz--none { margin-right: 0 !important; margin-left: 0 !important; } .margin--xs { margin: 0.25rem !important; } .margin-top--xs { margin-top: 0.25rem !important; } .margin-left--xs { margin-right: 0.25rem !important; } .margin-bottom--xs { margin-bottom: 0.25rem !important; } .margin-right--xs { margin-left: 0.25rem !important; } .margin-vert--xs { margin-bottom: 0.25rem !important; margin-top: 0.25rem !important; } .margin-horiz--xs { margin-right: 0.25rem !important; margin-left: 0.25rem !important; } .margin--sm { margin: 0.5rem !important; } .margin-top--sm { margin-top: 0.5rem !important; } .margin-left--sm { margin-right: 0.5rem !important; } .margin-bottom--sm { margin-bottom: 0.5rem !important; } .margin-right--sm { margin-left: 0.5rem !important; } .margin-vert--sm { margin-bottom: 0.5rem !important; margin-top: 0.5rem !important; } .margin-horiz--sm { margin-right: 0.5rem !important; margin-left: 0.5rem !important; } .margin--md { margin: 1rem !important; } .margin-top--md { margin-top: 1rem !important; } .margin-left--md { margin-right: 1rem !important; } .margin-bottom--md { margin-bottom: 1rem !important; } .margin-right--md { margin-left: 1rem !important; } .margin-vert--md { margin-bottom: 1rem !important; margin-top: 1rem !important; } .margin-horiz--md { margin-right: 1rem !important; margin-left: 1rem !important; } .margin--lg { margin: 2rem !important; } .margin-top--lg { margin-top: 2rem !important; } .margin-left--lg { margin-right: 2rem !important; } .margin-bottom--lg { margin-bottom: 2rem !important; } .margin-right--lg { margin-left: 2rem !important; } .margin-vert--lg { margin-bottom: 2rem !important; margin-top: 2rem !important; } .margin-horiz--lg { margin-right: 2rem !important; margin-left: 2rem !important; } .margin--xl { margin: 5rem !important; } .margin-top--xl { margin-top: 5rem !important; } .margin-left--xl { margin-right: 5rem !important; } .margin-bottom--xl { margin-bottom: 5rem !important; } .margin-right--xl { margin-left: 5rem !important; } .margin-vert--xl { margin-bottom: 5rem !important; margin-top: 5rem !important; } .margin-horiz--xl { margin-right: 5rem !important; margin-left: 5rem !important; } .padding--none { padding: 0 !important; } .padding-top--none { padding-top: 0 !important; } .padding-left--none { padding-right: 0 !important; } .padding-bottom--none { padding-bottom: 0 !important; } .padding-right--none { padding-left: 0 !important; } .padding-vert--none { padding-bottom: 0 !important; padding-top: 0 !important; } .padding-horiz--none { padding-right: 0 !important; padding-left: 0 !important; } .padding--xs { padding: 0.25rem !important; } .padding-top--xs { padding-top: 0.25rem !important; } .padding-left--xs { padding-right: 0.25rem !important; } .padding-bottom--xs { padding-bottom: 0.25rem !important; } .padding-right--xs { padding-left: 0.25rem !important; } .padding-vert--xs { padding-bottom: 0.25rem !important; padding-top: 0.25rem !important; } .padding-horiz--xs { padding-right: 0.25rem !important; padding-left: 0.25rem !important; } .padding--sm { padding: 0.5rem !important; } .padding-top--sm { padding-top: 0.5rem !important; } .padding-left--sm { padding-right: 0.5rem !important; } .padding-bottom--sm { padding-bottom: 0.5rem !important; } .padding-right--sm { padding-left: 0.5rem !important; } .padding-vert--sm { padding-bottom: 0.5rem !important; padding-top: 0.5rem !important; } .padding-horiz--sm { padding-right: 0.5rem !important; padding-left: 0.5rem !important; } .padding--md { padding: 1rem !important; } .padding-top--md { padding-top: 1rem !important; } .padding-left--md { padding-right: 1rem !important; } .padding-bottom--md { padding-bottom: 1rem !important; } .padding-right--md { padding-left: 1rem !important; } .padding-vert--md { padding-bottom: 1rem !important; padding-top: 1rem !important; } .padding-horiz--md { padding-right: 1rem !important; padding-left: 1rem !important; } .padding--lg { padding: 2rem !important; } .padding-top--lg { padding-top: 2rem !important; } .padding-left--lg { padding-right: 2rem !important; } .padding-bottom--lg { padding-bottom: 2rem !important; } .padding-right--lg { padding-left: 2rem !important; } .padding-vert--lg { padding-bottom: 2rem !important; padding-top: 2rem !important; } .padding-horiz--lg { padding-right: 2rem !important; padding-left: 2rem !important; } .padding--xl { padding: 5rem !important; } .padding-top--xl { padding-top: 5rem !important; } .padding-left--xl { padding-right: 5rem !important; } .padding-bottom--xl { padding-bottom: 5rem !important; } .padding-right--xl { padding-left: 5rem !important; } .padding-vert--xl { padding-bottom: 5rem !important; padding-top: 5rem !important; } .padding-horiz--xl { padding-right: 5rem !important; padding-left: 5rem !important; } /* Content */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ code { background-color: var(--ifm-code-background); border: 0.1rem solid rgba(0, 0, 0, 0.1); border-radius: var(--ifm-code-border-radius); font-family: var(--ifm-font-family-monospace); font-size: var(--ifm-code-font-size); padding: var(--ifm-code-padding-vertical) var(--ifm-code-padding-horizontal); vertical-align: middle; } a code { color: inherit; } pre { background-color: var(--ifm-pre-background); border-radius: var(--ifm-pre-border-radius); color: var(--ifm-pre-color); font: var(--ifm-code-font-size) / var(--ifm-pre-line-height) var(--ifm-font-family-monospace); margin: 0 0 var(--ifm-spacing-vertical); overflow: auto; padding: var(--ifm-pre-padding); } pre code { background-color: transparent; border: none; font-size: 100%; line-height: inherit; padding: 0; } kbd { background-color: var(--ifm-color-emphasis-0); border: 1px solid var(--ifm-color-emphasis-400); border-radius: 0.2rem; box-shadow: inset 0 -1px 0 var(--ifm-color-emphasis-400); color: var(--ifm-color-emphasis-800); font: 80% var(--ifm-font-family-monospace); padding: 0.15rem 0.3rem; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ h1, h2, h3, h4, h5, h6 { color: var(--ifm-heading-color); font-family: var(--ifm-heading-font-family); font-weight: var(--ifm-heading-font-weight); line-height: var(--ifm-heading-line-height); margin: var(--ifm-heading-margin-top) 0 var(--ifm-heading-margin-bottom) 0; } h1 { font-size: var(--ifm-h1-font-size); } h2 { font-size: var(--ifm-h2-font-size); } h3 { font-size: var(--ifm-h3-font-size); } h4 { font-size: var(--ifm-h4-font-size); } h5 { font-size: var(--ifm-h5-font-size); } h6 { font-size: var(--ifm-h6-font-size); } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ img { max-width: 100%; } img[align='right'] { padding-right: var(--image-alignment-padding); } img[align='left'] { padding-left: var(--image-alignment-padding); } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .markdown { --ifm-h1-vertical-rhythm-top: 3; --ifm-h2-vertical-rhythm-top: 2; --ifm-h3-vertical-rhythm-top: 1.5; --ifm-heading-vertical-rhythm-top: 1.25; --ifm-h1-vertical-rhythm-bottom: 1.25; --ifm-heading-vertical-rhythm-bottom: 1; } .markdown:before { content: ''; display: table; } .markdown:after { clear: both; content: ''; display: table; } .markdown > *:last-child { margin-bottom: 0 !important; } .markdown h1:first-child { --ifm-h1-font-size: 3rem; margin-bottom: calc( var(--ifm-h1-vertical-rhythm-bottom) * var(--ifm-leading) ); } .markdown > h2 { --ifm-h2-font-size: 2rem; margin-bottom: calc( var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) ); margin-top: calc(var(--ifm-h2-vertical-rhythm-top) * var(--ifm-leading)); } .markdown > h3 { --ifm-h3-font-size: 1.5rem; margin-bottom: calc( var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) ); margin-top: calc(var(--ifm-h3-vertical-rhythm-top) * var(--ifm-leading)); } .markdown > h4, .markdown > h5, .markdown > h6 { margin-bottom: calc( var(--ifm-heading-vertical-rhythm-bottom) * var(--ifm-leading) ); margin-top: calc( var(--ifm-heading-vertical-rhythm-top) * var(--ifm-leading) ); } /* Consistent spacing between content paragraphs. */ .markdown > pre, .markdown > ul, .markdown > p { margin-bottom: var(--ifm-leading); } .markdown li { word-wrap: break-word; } .markdown li > p { margin-top: var(--ifm-list-paragraph-margin); } .markdown li + li { margin-top: var(--ifm-list-item-margin); } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /* Lists */ ul, ol { margin: 0 0 var(--ifm-list-margin); padding-right: var(--ifm-list-left-padding); } ol ol, ul ol { list-style-type: lower-roman; } ul ul, ul ol, ol ol, ol ul { margin: 0; } ul ul ol, ul ol ol, ol ul ol, ol ol ol { list-style-type: lower-alpha; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ table { border-collapse: collapse; display: block; margin-bottom: var(--ifm-spacing-vertical); overflow: auto; } table thead tr { border-bottom: 2px solid var(--ifm-table-border-color); } table thead { background-color: var(--ifm-table-stripe-background); } table tr { background-color: var(--ifm-table-background); border-top: var(--ifm-table-border-width) solid var(--ifm-table-border-color); } table tr:nth-child(2n) { background-color: var(--ifm-table-stripe-background); } table th, table td { border: var(--ifm-table-border-width) solid var(--ifm-table-border-color); padding: var(--ifm-table-cell-padding); } table th { background-color: var(--ifm-table-head-background); color: var(--ifm-table-head-color); font-weight: var(--ifm-table-head-font-weight); } table td { color: var(--ifm-table-cell-color); } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ strong { font-weight: var(--ifm-font-weight-bold); } /* Links */ a { color: var(--ifm-link-color); /* autoprefixer: ignore next */ text-decoration: var(--ifm-link-decoration); transition: color var(--ifm-transition-fast) var(--ifm-transition-timing-default); } a:hover { color: var(--ifm-link-hover-color); /* autoprefixer: ignore next */ text-decoration: var(--ifm-link-hover-decoration); } a:not([href]) { text-decoration: none; } /* Paragraphs */ p { margin: 0 0 var(--ifm-paragraph-margin-bottom); } /* Blockquotes */ blockquote { border-right: var(--ifm-blockquote-border-left-width) solid var(--ifm-blockquote-border-color); box-shadow: var(--ifm-blockquote-shadow); color: var(--ifm-blockquote-color); font-size: var(--ifm-blockquote-font-size); margin: 0 0 var(--ifm-spacing-vertical); padding: var(--ifm-blockquote-padding-vertical) var(--ifm-blockquote-padding-horizontal); } blockquote > :first-child { margin-top: 0; } blockquote > :last-child { margin-bottom: 0; } /* Horizontal Rules */ hr { background-color: var(--ifm-hr-background-color); border: 0; height: var(--ifm-hr-height); margin: var(--ifm-hr-margin-vertical) 0; } /* Utilities */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .shadow--lw { box-shadow: var(--ifm-global-shadow-lw) !important; } .shadow--md { box-shadow: var(--ifm-global-shadow-md) !important; } .shadow--tl { box-shadow: var(--ifm-global-shadow-tl) !important; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .text--primary { color: var(--ifm-color-primary); } .text--secondary { color: var(--ifm-color-secondary); } .text--success { color: var(--ifm-color-success); } .text--info { color: var(--ifm-color-info); } .text--warning { color: var(--ifm-color-warning); } .text--danger { color: var(--ifm-color-danger); } .text--center { text-align: center; } .text--left { text-align: right; } .text--justify { text-align: justify; } .text--right { text-align: left; } .text--capitalize { text-transform: capitalize; } .text--lowercase { text-transform: lowercase; } .text--uppercase { text-transform: uppercase; } .text--light { font-weight: var(--ifm-font-weight-light); } .text--normal { font-weight: var(--ifm-font-weight-normal); } .text--semibold { font-weight: var(--ifm-font-weight-semibold); } .text--bold { font-weight: var(--ifm-font-weight-bold); } .text--italic { font-style: italic; } .text--truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text--break { word-wrap: break-word !important; word-break: break-word !important; } .text--no-decoration, .text--no-decoration:hover { text-decoration: none; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .clean-btn { background: none; border: none; color: inherit; cursor: pointer; font-family: inherit; padding: 0; } .clean-list { list-style: none; padding-right: 0; } /* Components */ /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .alert--primary { --ifm-alert-background-color: var( --ifm-color-primary-contrast-background ); --ifm-alert-background-color-highlight: rgba(53, 120, 229, 0.15); --ifm-alert-foreground-color: var( --ifm-color-primary-contrast-foreground ); --ifm-alert-border-color: var(--ifm-color-primary-dark); } .alert--secondary { --ifm-alert-background-color: var( --ifm-color-secondary-contrast-background ); --ifm-alert-background-color-highlight: rgba(235, 237, 240, 0.15); --ifm-alert-foreground-color: var( --ifm-color-secondary-contrast-foreground ); --ifm-alert-border-color: var(--ifm-color-secondary-dark); } .alert--success { --ifm-alert-background-color: var( --ifm-color-success-contrast-background ); --ifm-alert-background-color-highlight: rgba(0, 164, 0, 0.15); --ifm-alert-foreground-color: var( --ifm-color-success-contrast-foreground ); --ifm-alert-border-color: var(--ifm-color-success-dark); } .alert--info { --ifm-alert-background-color: var( --ifm-color-info-contrast-background ); --ifm-alert-background-color-highlight: rgba(84, 199, 236, 0.15); --ifm-alert-foreground-color: var( --ifm-color-info-contrast-foreground ); --ifm-alert-border-color: var(--ifm-color-info-dark); } .alert--warning { --ifm-alert-background-color: var( --ifm-color-warning-contrast-background ); --ifm-alert-background-color-highlight: rgba(255, 186, 0, 0.15); --ifm-alert-foreground-color: var( --ifm-color-warning-contrast-foreground ); --ifm-alert-border-color: var(--ifm-color-warning-dark); } .alert--danger { --ifm-alert-background-color: var( --ifm-color-danger-contrast-background ); --ifm-alert-background-color-highlight: rgba(250, 56, 62, 0.15); --ifm-alert-foreground-color: var( --ifm-color-danger-contrast-foreground ); --ifm-alert-border-color: var(--ifm-color-danger-dark); } .alert { --ifm-code-background: var(--ifm-alert-background-color-highlight); --ifm-link-color: var(--ifm-alert-foreground-color); --ifm-link-hover-color: var(--ifm-alert-foreground-color); --ifm-link-decoration: underline; --ifm-tabs-color: var(--ifm-alert-foreground-color); --ifm-tabs-color-active: var(--ifm-alert-foreground-color); --ifm-tabs-color-active-border: var(--ifm-alert-border-color); background-color: var(--ifm-alert-background-color); border: var(--ifm-alert-border-width) solid var(--ifm-alert-border-color); border-right-width: var(--ifm-alert-border-left-width); border-radius: var(--ifm-alert-border-radius); box-shadow: var(--ifm-alert-shadow); color: var(--ifm-alert-foreground-color); padding: var(--ifm-alert-padding-vertical) var(--ifm-alert-padding-horizontal); } .alert__heading { align-items: center; display: flex; font: bold var(--ifm-h5-font-size) / var(--ifm-heading-line-height) var(--ifm-heading-font-family); margin-bottom: 0.5rem; text-transform: uppercase; } .alert__icon { display: inline-flex; margin-left: 0.4em; } .alert__icon svg { fill: var(--ifm-alert-foreground-color); stroke: var(--ifm-alert-foreground-color); stroke-width: 0; } .alert .close { color: var(--ifm-alert-foreground-color); margin: calc(var(--ifm-alert-padding-vertical) * -1) 0 0 calc(var(--ifm-alert-padding-horizontal) * -1); opacity: 0.75; } .alert .close:hover, .alert .close:focus { opacity: 1; } .alert a { text-decoration-color: var(--ifm-alert-border-color); } .alert a:hover { text-decoration-thickness: 2px; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .avatar { -moz-column-gap: var(--ifm-avatar-intro-margin); column-gap: var(--ifm-avatar-intro-margin); display: flex; } .avatar__photo { border-radius: 50%; display: block; height: var(--ifm-avatar-photo-size); overflow: hidden; width: var(--ifm-avatar-photo-size); } .avatar__photo--sm { --ifm-avatar-photo-size: 2rem; } .avatar__photo--lg { --ifm-avatar-photo-size: 4rem; } .avatar__photo--xl { --ifm-avatar-photo-size: 6rem; } .avatar__intro { display: flex; flex: 1 1; flex-direction: column; justify-content: center; text-align: var(--ifm-avatar-intro-alignment); } .avatar__name { font: bold var(--ifm-h4-font-size) / var(--ifm-heading-line-height) var(--ifm-font-family-base); } .avatar__subtitle { margin-top: 0.25rem; } .avatar--vertical { --ifm-avatar-intro-alignment: center; --ifm-avatar-intro-margin: 0.5rem; align-items: center; flex-direction: column; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .badge { background-color: var(--ifm-badge-background-color); border: var(--ifm-badge-border-width) solid var(--ifm-badge-border-color); border-radius: var(--ifm-badge-border-radius); color: var(--ifm-badge-color); display: inline-block; font-size: 75%; font-weight: var(--ifm-font-weight-bold); line-height: 1; padding: var(--ifm-badge-padding-vertical) var(--ifm-badge-padding-horizontal); } .badge--primary { --ifm-badge-background-color: var(--ifm-color-primary); --ifm-badge-border-color: var(--ifm-badge-background-color); } .badge--secondary { --ifm-badge-background-color: var(--ifm-color-secondary); --ifm-badge-border-color: var(--ifm-badge-background-color); color: var(--ifm-color-black); } .badge--success { --ifm-badge-background-color: var(--ifm-color-success); --ifm-badge-border-color: var(--ifm-badge-background-color); } .badge--info { --ifm-badge-background-color: var(--ifm-color-info); --ifm-badge-border-color: var(--ifm-badge-background-color); } .badge--warning { --ifm-badge-background-color: var(--ifm-color-warning); --ifm-badge-border-color: var(--ifm-badge-background-color); } .badge--danger { --ifm-badge-background-color: var(--ifm-color-danger); --ifm-badge-border-color: var(--ifm-badge-background-color); } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .breadcrumbs { margin-bottom: 0; padding-right: 0; } .breadcrumbs__item { display: inline-block; } .breadcrumbs__item:not(:last-child):after { background: var(--ifm-breadcrumb-separator) center; content: ' '; display: inline-block; filter: var(--ifm-breadcrumb-separator-filter); height: calc( var(--ifm-breadcrumb-separator-size) * var(--ifm-breadcrumb-size-multiplier) * var(--ifm-breadcrumb-separator-size-multiplier) ); margin: 0 var(--ifm-breadcrumb-spacing); opacity: 0.5; width: calc( var(--ifm-breadcrumb-separator-size) * var(--ifm-breadcrumb-size-multiplier) * var(--ifm-breadcrumb-separator-size-multiplier) ); transform: rotate(180deg); } .breadcrumbs__item--active .breadcrumbs__link { background: var(--ifm-breadcrumb-item-background-active); color: var(--ifm-breadcrumb-color-active); } .breadcrumbs__link { border-radius: var(--ifm-breadcrumb-border-radius); color: var(--ifm-font-color-base); display: inline-block; font-size: calc(1rem * var(--ifm-breadcrumb-size-multiplier)); padding: calc( var(--ifm-breadcrumb-padding-vertical) * var(--ifm-breadcrumb-size-multiplier) ) calc( var(--ifm-breadcrumb-padding-horizontal) * var(--ifm-breadcrumb-size-multiplier) ); transition-property: background, color; transition-duration: var(--ifm-transition-fast); transition-timing-function: var(--ifm-transition-timing-default); } .breadcrumbs__link:link:hover, .breadcrumbs__link:visited:hover, area[href].breadcrumbs__link:hover { background: var(--ifm-breadcrumb-item-background-active); text-decoration: none; } .breadcrumbs__link:-moz-any-link:hover { background: var(--ifm-breadcrumb-item-background-active); text-decoration: none; } .breadcrumbs__link:any-link:hover { background: var(--ifm-breadcrumb-item-background-active); text-decoration: none; } .breadcrumbs--sm { --ifm-breadcrumb-size-multiplier: 0.8; } .breadcrumbs--lg { --ifm-breadcrumb-size-multiplier: 1.2; } /** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ .button { background-color: var(--ifm-button-background-color); border: var(--ifm-button-border-width) solid var(--ifm-button-border-color); border-radius: var(--ifm-button-border-radius); color: var(--ifm-button-color); cursor: pointer; display: inline-block; font-size: calc(0.875rem * var(--ifm-button-size-multiplier)); font-weight: var(--ifm-button-font-weight); line-height: 1.5; padding: calc( var(--ifm-button-padding-vertical) * var(--ifm-button-size-multiplier) ) calc( var(--ifm-button-padding-horizontal) * var(--ifm-button-size-multiplier) ); text-align: center; -webkit-user-select: none; -moz-user-select: none; user-select: none; vertical-align: middle; white-space: nowrap; transition-property: color, background, border-color; transition-duration: var(--ifm-button-transition-duration); transition-timing-function: var(--ifm-transition-timing-default); } .button:hover { color: var(--ifm-button-color); /* Override for button links. */ text-decoration: none; } .button--outline { --ifm-button-background-color: transparent; --ifm-button-color: var(--ifm-button-border-color); } .button--outline:hover { --ifm-button-background-color: var(--ifm-button-border-color); } .button--outline:hover, .button--outline:active, .button--outline.button--active { --ifm-button-color: var(--ifm-font-color-base-inverse); } .button--link { --ifm-button-background-color: transparent; --ifm-button-border-color: transparent; color: var(--ifm-link-color); /* autoprefixer: ignore next */ text-decoration: var(--ifm-link-decoration); } .button--link:hover, .button--link:active, .button--link.button--active { color: var(--ifm-link-hover-color); /* autoprefixer: ignore next */ text-decoration: var(--ifm-link-hover-decoration); } .button.disabled, .button:disabled, .button[disabled] { opacity: 0.65; pointer-events: none; } .button--sm { --ifm-button-size-multiplier: 0.8; } .button--lg { --ifm-button-size-multiplier: 1.35; } .button--block { display: block; width: 100%; } .button.button--secondary { color: var(--ifm-color-gray-900); } .button.button--secondary.button--outline:not(.button--active):not(:hover) { color: var(--ifm-font-color-base); } :where(.button--primary) { --ifm-button-background-color: var(--ifm-color-primary); --ifm-button-border-color: var(--ifm-color-primary); } :where(.button--primary):not(.button--outline):hover { --ifm-button-background-color: var(--ifm-color-primary-dark); --ifm-button-border-color: var(--ifm-color-primary-dark); } .button--primary:active, .button--primary.button--active { --ifm-button-background-color: var(--ifm-color-primary-darker); --ifm-button-border-color: var(--ifm-color-primary-darker); } :where(.button--secondary) { --ifm-button-background-color: var(--ifm-color-secondary); --ifm-button-border-color: var(--ifm-color-secondary); } :where(.button--secondary):not(.button--outline):hover { --ifm-button-background-color: var(--ifm-color-secondary-dark); --ifm-button-border-color: var(--ifm-color-secondary-dark); } .button--secondary:active, .button--secondary.button--active { --ifm-button-background-color: var(--ifm-color-secondary-darker); --ifm-button-border-color: var(--ifm-color-secondary-darker); } :where(.button--success) { --ifm-button-background-color: var(--ifm-color-success); --ifm-button-border-color: var(--ifm-color-success); } :where(.button--success):not(.button--outline):hover { --ifm-button-background-color: var(--ifm-color-success-dark); --ifm-button-border-color: var(--ifm-color-success-dark); } .button--success:active, .button--success.button--active { --ifm-button-background-color: var(--ifm-color-success-darker); --ifm-button-border-color: var(--ifm-color-success-darker); } :where(.button--info) { --ifm-button-background-color: var(--ifm-color-info); --ifm-button-border-color: var(--ifm-color-info); } :where(.button--info):not(.button--outline):hover {