2020-08-04 21:44:03 +00:00
|
|
|
:root {
|
|
|
|
/* Globals */
|
|
|
|
/* Font Family */
|
2020-08-10 18:02:22 +00:00
|
|
|
--global--font-primary: 'IBM Plex Mono', sans-serif;
|
|
|
|
--global--font-secondary: 'Libre Franklin', sans-serif;
|
|
|
|
--global--color-primary: #DB0042;
|
|
|
|
--global--color-primary-hover: #DB0042;
|
|
|
|
--global--color-secondary: #555555;
|
2020-08-04 21:44:03 +00:00
|
|
|
--global--color-secondary-hover: #333333;
|
|
|
|
--global--color-foreground: #000000;
|
|
|
|
--global--color-foreground-light: #333333;
|
2020-08-10 18:02:22 +00:00
|
|
|
--global--color-background: #fff;
|
2020-08-04 21:44:03 +00:00
|
|
|
--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;
|
2020-08-10 18:02:22 +00:00
|
|
|
--global--font-size-lg: 22px;
|
|
|
|
--global--font-size-xl: 48px;
|
|
|
|
/* Spacing */
|
|
|
|
--global--spacing-horizontal: 24px;
|
2020-08-04 21:44:03 +00:00
|
|
|
/* Line Height */
|
|
|
|
--global--line-height-base: 1;
|
|
|
|
--global--line-height-body: 1.7;
|
|
|
|
--global--line-height-heading: 1.3;
|
2020-08-10 18:02:22 +00:00
|
|
|
--heading--font-family: var(--global--font-secondary);
|
|
|
|
--heading--font-weight: bold;
|
2020-08-04 21:44:03 +00:00
|
|
|
--heading--font-size-h1: 48px;
|
2020-08-10 18:02:22 +00:00
|
|
|
--heading--font-size-h2: 22px;
|
|
|
|
--heading--font-size-h3: 18px;
|
|
|
|
--heading--font-size-h4: 16px;
|
|
|
|
--heading--font-size-h5: 14px;
|
|
|
|
--heading--font-size-h6: 12px;
|
2020-08-04 21:44:03 +00:00
|
|
|
--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;
|
2020-08-10 18:02:22 +00:00
|
|
|
|
2020-08-10 20:59:14 +00:00
|
|
|
--entry-header--font-size: var(--heading--font-size-h1);
|
2020-08-10 18:02:22 +00:00
|
|
|
--entry-header--color: var(--global--color-foreground);
|
2020-08-04 21:44:03 +00:00
|
|
|
|
|
|
|
--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;
|
2020-08-10 18:02:22 +00:00
|
|
|
--primary-nav--color-link: var(--global--color-secondary);
|
|
|
|
--primary-nav--padding: 0;
|
2020-08-04 21:44:03 +00:00
|
|
|
|
|
|
|
--social-nav--padding: calc( .67 * var(--global--spacing-unit) );
|
|
|
|
|
|
|
|
--pullquote--font-style: normal;
|
|
|
|
--pullquote--letter-spacing: 0;
|
|
|
|
--pullquote--line-height: 1.15;
|
|
|
|
|
2020-08-10 20:59:14 +00:00
|
|
|
/* --latest-posts--title-font-family: var(--global--font-secondary); */
|
|
|
|
--latest-posts--title-font-size: var(--global--font-size-lg);
|
2020-08-04 21:44:03 +00:00
|
|
|
|
|
|
|
--list--font-family: var(--global--font-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media ( min-width: 482px ){
|
|
|
|
:root {
|
|
|
|
/* Font Size */
|
2020-08-10 18:02:22 +00:00
|
|
|
/* --global--font-size-root: 20px;
|
2020-08-04 21:44:03 +00:00
|
|
|
--global--font-size-md: 20px;
|
|
|
|
--global--font-size-lg: 24px;
|
|
|
|
--global--font-size-xl: 36px;
|
2020-08-10 18:02:22 +00:00
|
|
|
--global--font-size-xxl: 48px; */
|
2020-08-04 21:44:03 +00:00
|
|
|
/* Line Height */
|
2020-08-10 18:02:22 +00:00
|
|
|
/* --heading--font-size-h1: 72px;
|
2020-08-04 21:44:03 +00:00
|
|
|
--heading--font-size-h2: 64px;
|
|
|
|
--heading--font-size-h3: 48px;
|
|
|
|
--heading--line-height-h1: 1.2;
|
|
|
|
--heading--line-height-h2: 1.2;
|
2020-08-10 18:02:22 +00:00
|
|
|
--heading--line-height-h3: 1.4; */
|
2020-08-04 21:44:03 +00:00
|
|
|
}
|
|
|
|
}
|