Adjust link color
This commit is contained in:
parent
1c8239f664
commit
47fd353201
6 changed files with 15 additions and 5 deletions
|
@ -314,6 +314,7 @@
|
|||
a {
|
||||
display: block;
|
||||
padding: 0.125em 0;
|
||||
color: inherit;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
|
|
|
@ -73,6 +73,14 @@
|
|||
}
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
dt {
|
||||
margin-top: 1em;
|
||||
font-family: $sans-serif;
|
||||
|
|
|
@ -62,7 +62,7 @@ audio:not([controls]) {
|
|||
}
|
||||
|
||||
a {
|
||||
color: $primary-color;
|
||||
color: $link-color;
|
||||
}
|
||||
|
||||
/* Apply focus state */
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
Loading…
Reference in a new issue