diff --git a/css/style.css b/css/style.css index 73226e1..f51b486 100644 --- a/css/style.css +++ b/css/style.css @@ -34,6 +34,9 @@ body.dark-mode .main h3 a { body.dark-mode .main h3 a:before, body.dark-mode .main h3 a:after { background: rgba(255, 255, 255, 0.2); } +body.dark-mode .main h3 a.among { + color: inherit; +} body.dark-mode .main a.contact-method p { color: #fff; font-size: 1rem; diff --git a/css/style.scss b/css/style.scss index dd8ecd9..5a13aee 100644 --- a/css/style.scss +++ b/css/style.scss @@ -39,6 +39,10 @@ body.dark-mode { &:before, &:after { background: rgba(#fff, 0.2); } + + &.among { + color: inherit; + } } a.contact-method p {