Update link colors to orange and teal

This commit is contained in:
Maikel Linke
2020-03-16 16:14:01 +11:00
parent 9f5cec6d08
commit 25e309b8cc
2 changed files with 13 additions and 2 deletions

View File

@@ -141,16 +141,26 @@
font-size: 80%;
}
small a {
color: $teal-500;
&:hover, &:focus, &:active {
color: $teal-600;
text-decoration: underline;
}
}
h3 {
font-size: 1.5rem;
margin: 0;
}
h3 a {
color: #222;
color: $orange-500;
&:hover, &:focus, &:active {
color: $clr-brick;
color: $orange-600;
text-decoration: underline;
}
}
}

View File

@@ -56,6 +56,7 @@ $grey-800: #333;
$teal-300: #80d3df;
$teal-400: #4cb5c5;
$teal-500: #0096ad;
$teal-600: #007a9a;
$orange-400: #ff9466;
$orange-450: #f4704c;