diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-03-22 18:02:52 -0600 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-03-22 18:02:52 -0600 |
commit | f5f542777febe6a2a4463bb8042e9a72e628e724 (patch) | |
tree | c7cb33a5bbb023f99e1c012af55e6819f26c5c93 /src/components/layout/layout.module.css | |
parent | 2bf70606fc62c989973f84f2961df2d42d7f9c04 (diff) |
Fonts
Diffstat (limited to 'src/components/layout/layout.module.css')
-rw-r--r-- | src/components/layout/layout.module.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/layout/layout.module.css b/src/components/layout/layout.module.css index abcf876..7a6a818 100644 --- a/src/components/layout/layout.module.css +++ b/src/components/layout/layout.module.css @@ -33,6 +33,16 @@ padding: var(--container-padding) 0; } +.layout header a#siteTitle { + color: inherit; + text-decoration: none; + font-family: var(--font-family-heading); + + &:hover { + text-decoration: initial; + } +} + .layout nav { grid-row: 2 / 3; grid-column: 1 / 2; @@ -49,6 +59,15 @@ background-clip: padding-box; } +.layout main h1, +.layout main h2, +.layout main h3, +.layout main h4, +.layout main h5, +.layout main h6 { + font-family: var(--font-family-heading); +} + .layout footer { grid-column: 2 / 3; grid-row: 3 / 4; |