1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /** Base Styles */
- :root {
- /**
- * Colors
- * --------------------------------------------------------------------- */
- --c-white: #ffffff;
- --c-white-dark: #f8f8f8;
- --c-black: #000000;
- --c-divider-light: rgba(60, 60, 67, 0.12);
- --c-divider-dark: rgba(84, 84, 88, 0.48);
- --c-text-light-1: #2c3e50;
- --c-text-light-2: #476582;
- --c-text-light-3: #90a4b7;
- --c-brand: #3eaf7c;
- --c-brand-light: #4abf8a;
- /**
- * Typography
- * --------------------------------------------------------------------- */
- --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
- Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
- sans-serif;
- --font-family-mono: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
- monospace;
- /**
- * Z Indexes
- *
- * Algolia SearchBox has a z-index of 200, so make sure not to go above
- * that value.
- * --------------------------------------------------------------------- */
- --z-index-navbar: 10;
- --z-index-sidebar: 6;
- /**
- * Shadows
- * --------------------------------------------------------------------- */
- --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
- --shadow-2: 0 3px 12px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.07);
- --shadow-3: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
- --shadow-4: 0 14px 44px rgba(0, 0, 0, 0.12), 0 3px 9px rgba(0, 0, 0, 0.12);
- --shadow-5: 0 18px 56px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.16);
- /**
- * Sizes
- * --------------------------------------------------------------------- */
- --header-height: 3.6rem;
- }
- /** Fallback Styles */
- :root {
- --c-divider: var(--c-divider-light);
- --c-text: var(--c-text-light-1);
- --c-text-light: var(--c-text-light-2);
- --c-text-lighter: var(--c-text-light-3);
- --c-bg: var(--c-white);
- --c-bg-accent: var(--c-white-dark);
- --code-line-height: 24px;
- --code-font-family: var(--font-family-mono);
- --code-font-size: 14px;
- --code-inline-bg-color: rgba(27, 31, 35, 0.05);
- --code-bg-color: #282c34;
- }
|