Skip to content

Commit

Permalink
Merge pull request #265 from hlxsites/enhancement/link-color-change
Browse files Browse the repository at this point in the history
Updated the links color to blue
  • Loading branch information
pardeepgera23 authored Dec 14, 2023
2 parents bd63c54 + 9d0800a commit 6bc9d3f
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
4 changes: 4 additions & 0 deletions blocks/author/author.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
padding-top: 0
}

.author .author-info h4 a:hover{
color: var(--link-color);
}

.author #author-profile {
display: flex;
gap: 20px;
Expand Down
11 changes: 6 additions & 5 deletions styles/Typo.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
:root {
--primary-color: #ec8f2d; /* Default primary color */
--text-color: #fff;
--link-color: #005796;
}

html {
Expand Down Expand Up @@ -278,7 +279,7 @@ body {

a {
background: transparent;
color: var(--primary-color);
color: var(--link-color);
text-decoration: none;
}

Expand Down Expand Up @@ -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;
Expand All @@ -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;
}
Expand All @@ -662,15 +663,15 @@ 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;
}

.button.primary:hover {
border: none;
color: var(--primary-color);
color: var(--link-color)!important;
text-decoration: underline;
transition: all .3s ease-in-out;
}
Expand Down
4 changes: 2 additions & 2 deletions styles/styles_2020.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
8 changes: 5 additions & 3 deletions styles/template.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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
}

Expand Down

0 comments on commit 6bc9d3f

Please sign in to comment.