Change link color #839
Unanswered
kyrathasoft
asked this question in
Writing in ink
Replies: 1 comment
-
|
This is 3 years later but for anyone that finds this question, the tutorial hints at it slightly. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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