d11 theme
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
899 B

/**
* @file
* Element-level defaults for the druid theme.
*
* Bare element selectors only (body, headings, links, lists, etc.). For
* discrete UI components, see css/components/. For page-level structure,
* see css/layout.css. Every rule lives in the `base` cascade layer so it
* loses cleanly to anything in layout / components / utilities.
*/
@layer base {
body {
background: var(--surface-1);
color: var(--text-1);
font-family: var(--font-sans);
line-height: 1.5;
}
/* Headings use the serif token (Adelle). Drupal core inserts <h1>–<h6>
in unpredictable places (admin toolbars, contextual links, system
blocks), so this targets bare heading elements — re-declare in a
component or utility if a specific UI surface needs the sans family. */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-serif);
}
a {
color: var(--brand);
}
}