diff --git a/src/components/head/page-head-style.webc b/src/components/head/page-head-style.webc index 8742b9e..48ec6b1 100644 --- a/src/components/head/page-head-style.webc +++ b/src/components/head/page-head-style.webc @@ -29,6 +29,20 @@ font-family: var(--font-family-headings); } + a:not([class]) { + color: inherit; + text-decoration: underline; + text-underline-offset: 0.1875em; + text-decoration-thickness: 0.125em; + text-decoration-skip-ink: all; + text-decoration-color: var(--clr-link-underline); + transition: color 0.2s ease; + } + + a:not([class]):hover { + color: var(--clr-link); + } + ::selection { color: var(--clr-selection-text); background-color: var(--clr-selection); diff --git a/src/components/page-content.webc b/src/components/page-content.webc index 7b09544..9ee2f5b 100644 --- a/src/components/page-content.webc +++ b/src/components/page-content.webc @@ -51,18 +51,4 @@ :host p { text-align: justify; } - - :host article a { - color: inherit; - text-decoration: underline; - text-underline-offset: 0.1875em; - text-decoration-thickness: 0.125em; - text-decoration-skip-ink: all; - text-decoration-color: var(--clr-link-underline); - transition: color 0.2s ease; - } - - :host article a:hover { - color: var(--clr-link); - }