Adjust link color

This commit is contained in:
Michael Rose 2016-04-05 21:37:16 -04:00
parent 1c8239f664
commit 47fd353201
6 changed files with 15 additions and 5 deletions

View file

@ -314,6 +314,7 @@
a {
display: block;
padding: 0.125em 0;
color: inherit;
&:hover {
text-decoration: underline;

View file

@ -73,6 +73,14 @@
}
}
a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
dt {
margin-top: 1em;
font-family: $sans-serif;

View file

@ -62,7 +62,7 @@ audio:not([controls]) {
}
a {
color: $primary-color;
color: $link-color;
}
/* Apply focus state */

View file

@ -210,6 +210,7 @@
padding-right: 5px;
padding-top: 2px;
padding-bottom: 2px;
color: inherit;
font-size: $type-size-5;
text-decoration: none;
white-space: nowrap;

View file

@ -90,11 +90,11 @@ $xing-color : #006567;
/* links */
$link-color : $primary-color;
$link-color : $info-color;
$link-color-hover : mix(#000, $link-color, 25%);
$link-color-visited : mix(#fff, $link-color, 25%);
$masthead-link-color : $link-color;
$masthead-link-color-hover : $link-color-hover;
$masthead-link-color : $primary-color;
$masthead-link-color-hover : mix(#000, $primary-color, 25%);
/*

File diff suppressed because one or more lines are too long