Change link color #839
Unanswered
kyrathasoft
asked this question in
Writing in ink
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to learn how to use Ink. The link color is orange-ish (gag). The hover link color is black, which is fine. How to change orange-ish link color in the style.css or elsewhere?
I was thinking the following element, but changing its value (for instance, to #ffff00 or 'blue') doesn't seem to make a difference:
a {
font-weight: 700;
color: #b97c2c;
font-family: sans-serif;
transition: color 0.6s;
text-decoration: none;
}
a:hover {
color: black;
transition: color 0.1s;
}
Beta Was this translation helpful? Give feedback.
All reactions