diff --git a/blocks/author/author.css b/blocks/author/author.css index 56ada876..78356856 100644 --- a/blocks/author/author.css +++ b/blocks/author/author.css @@ -44,6 +44,10 @@ padding-top: 0 } +.author .author-info h4 a:hover{ + color: var(--link-color); +} + .author #author-profile { display: flex; gap: 20px; diff --git a/styles/Typo.css b/styles/Typo.css index 50c70eb5..1b734224 100644 --- a/styles/Typo.css +++ b/styles/Typo.css @@ -1,6 +1,7 @@ :root { --primary-color: #ec8f2d; /* Default primary color */ --text-color: #fff; + --link-color: #005796; } html { @@ -278,7 +279,7 @@ body { a { background: transparent; - color: var(--primary-color); + color: var(--link-color); text-decoration: none; } @@ -641,7 +642,7 @@ input[type="submit"] { background-color: transparent; padding: 0!important; border: none; - color: var(--primary-color); + color: var(--link-color); font-family: inherit; text-transform: none; font-size: 16px!important; @@ -651,7 +652,7 @@ input[type="submit"] { .button.secondary:hover { border: none; - color: var(--primary-color); + color: var(--link-color)!important; text-decoration: underline; transition: all .3s ease-in-out; } @@ -662,7 +663,7 @@ input[type="submit"] { border: none; font-size: 16px!important; font-family: inherit; - color: var(--primary-color); + color: var(--link-color); text-transform: none; font-style: normal; transition: all .3s ease-in-out; @@ -670,7 +671,7 @@ input[type="submit"] { .button.primary:hover { border: none; - color: var(--primary-color); + color: var(--link-color)!important; text-decoration: underline; transition: all .3s ease-in-out; } diff --git a/styles/styles_2020.css b/styles/styles_2020.css index 39ab6b84..2131d348 100644 --- a/styles/styles_2020.css +++ b/styles/styles_2020.css @@ -180,8 +180,8 @@ } .recent-posts .post .entry-title a { - color: inherit; - text-decoration: none + text-decoration: none; + color: var(--link-color); } .recent-posts .post .entry-title a:hover { diff --git a/styles/template.css b/styles/template.css index 5d70bd84..fb1f2247 100644 --- a/styles/template.css +++ b/styles/template.css @@ -954,7 +954,7 @@ body.purple .mmg-collapsible.open>.module-title,body.purple .mmg-collapsible>.mo } .post-title a:hover { - color: var(--primary-color) + color: var(--link-color); } .post-meta,.post-topics { @@ -1011,11 +1011,13 @@ body.purple .mmg-collapsible.open>.module-title,body.purple .mmg-collapsible>.mo display: inline-block; font-weight: 400; padding: 3px 8px; - text-decoration: none + text-decoration: none; + margin-bottom: 5px; + transition: 0.2s all ease-in-out; } .post-topics .topic-link:hover { - background: #dda307; + background: var(--link-color); color: #fff }