Skip to content

Commit

Permalink
Make hyperlinks more obvious (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-baiborodine authored Jan 19, 2022
1 parent bb10b9d commit daa4186
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 13 deletions.
25 changes: 21 additions & 4 deletions assets/sass/_articles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ article {

a {
font-style: normal;
color: inherit;

&:hover {
color: $highlight-color;
text-decoration: none;
}
}
}

Expand Down Expand Up @@ -81,7 +87,13 @@ article {
margin-bottom: 4.5%;

a {
color: inherit;
font-style: normal;

&:hover {
color: $highlight-color;
text-decoration: underline;
}
}

span {
Expand All @@ -102,20 +114,24 @@ article {
}

a {
font-style: italic;
font-style: normal;
color: $highlight-color;

&:hover {
text-decoration: underline;
}
}

a.more {
display: block;
margin: 2.5rem 0;
margin-bottom: 1rem;
margin: 2.5rem 0 1rem;
color: $highlight-color;
font-size: 1.125em;
text-decoration: none;
font-style: normal;

&:hover {
color: $continue-reading-hover-color;
text-decoration: underline;
}
}

Expand Down Expand Up @@ -156,6 +172,7 @@ article {
&:hover {
left: 10px;
color: $base-color;
text-decoration: none;
}
}
}
Expand Down
Loading

0 comments on commit daa4186

Please sign in to comment.