12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- :root {
- /* Globals */
- /* Font Family */
- --global--font-primary: 'Red Hat Display', sans-serif;
- --global--font-secondary: 'Red Hat Text', sans-serif;
- --global--color-primary: #000000;
- --global--color-primary-hover: #333333;
- --global--color-secondary: #000000;
- --global--color-secondary-hover: #333333;
- --global--color-foreground: #000000;
- --global--color-foreground-light: #333333;
- --global--color-background: #BFF5A5;
- --global--color-background-dark: #BFF5A5;
- --global--color-border: var(--global--color-secondary);
- /* Font Size */
- --global--font-size-xs: 14px;
- --global--font-size-sm: 16px;
- --global--font-size-root: 18px;
- --global--font-size-md: 18px;
- --global--font-size-lg: 20px;
- --global--font-size-xl: 24px;
- --global--font-size-xxl: 36px;
- /* Line Height */
- --global--line-height-base: 1;
- --global--line-height-body: 1.7;
- --global--line-height-heading: 1.3;
- --heading--font-family: var(--global--font-primary);
- --heading--font-size-h1: 48px;
- --heading--font-size-h2: 36px;
- --heading--font-size-h3: 30px;
- --heading--font-size-h4: 20px;
- --heading--font-size-h5: 16px;
- --heading--font-size-h6: 14px;
- --heading--line-height: 1.2;
- --heading--letter-spacing-h4: 0.1em;
- --heading--letter-spacing-h5: 0.1em;
- --heading--letter-spacing-h6: 0.1em;
- --heading--line-height-h1: 1.2;
- --heading--line-height-h2: 1.4;
- --heading--line-height-h3: 1.4;
- --entry-header--font-size: var(--heading--font-size-h1);
- --button--border-radius: 0px;
- --button--color-text: var(--global--color-background);
- --button--color-background: var(--global--color-primary);
- --button--font-weight: bold;
- --button--font-family: var(--global--font-secondary);
- --button--font-size: var(--global--font-size-sm);
- --cover--color-foreground: var(--global--color-background);
- --branding--title--font-size: var(--global--font-size-lg);
- --primary-nav--justify-content: space-between;
- --primary-nav--font-family: var(--global--font-primary);
- --primary-nav--font-weight: bold;
- --primary-nav--padding: 0 0 6px 0;
- --social-nav--padding: calc( .67 * var(--global--spacing-unit) );
- --pullquote--font-style: normal;
- --pullquote--letter-spacing: 0;
- --pullquote--line-height: 1.15;
- --latest-posts--title-font-family: var(--global--font-primary);
- --latest-posts--title-font-size: var(--global--font-size-md);
- --latest-posts--description-font-family: var(--global--font-secondary);
- --list--font-family: var(--global--font-secondary);
- }
- @media ( min-width: 482px ){
- :root {
- /* Font Size */
- --global--font-size-root: 20px;
- --global--font-size-md: 20px;
- --global--font-size-lg: 24px;
- --global--font-size-xl: 36px;
- --global--font-size-xxl: 48px;
- /* Line Height */
- --heading--font-size-h1: 72px;
- --heading--font-size-h2: 64px;
- --heading--font-size-h3: 48px;
- --heading--line-height-h1: 1.2;
- --heading--line-height-h2: 1.2;
- --heading--line-height-h3: 1.4;
- }
- }
|