Double up :hover styles to also apply on :focus (particularly the
masthead button needs this, as otherwise it gives no visible indication
of being focused)
font-weight: 500;
color: $gray;
- &:hover {
+ &:hover,
+ &:focus {
color: $link-color;
}
}
color: $bd-yellow;
border-color: $bd-yellow;
- &:hover {
+ &:hover,
+ &:focus {
color: $bd-graphite;
background-color: $bd-yellow;
border-color: $bd-yellow;
color: #555;
}
- .team-member:hover {
+ .team-member:hover,
+ .team-member:focus {
color: #333;
+ }
+
+ .team-member:hover {
text-decoration: none;
}