HTML
We set some basic properties on the <html>
element; color
, font-family
and font-size
.
https://github.com/davidbrooksio/cwf-lite/blob/master/style/bases/html.css
Directorystyle
Directorybases
- html.css
@layer cwf-bases { html { color: var(--html-color); font-family: var(--html-font-family, system-ui); font-size: var(--html-font-size, 1rem); }}