fix color of links

This commit is contained in:
CodeSteak 2020-01-15 21:31:52 +01:00
parent 1c6d7c8032
commit a5817f144d

View File

@ -30,7 +30,7 @@
--c-base: var(--root-c-base);
--c-base-highlight: var(--root-c-base-highlight);
--c-primary:var(--root-c-primary);
--c-primary: var(--root-c-primary);
--c-primary-highlight: var(--root-c-primary-highlight);
--c-secondary: var(--c-secondary);
@ -123,6 +123,15 @@ h1, h2, h3, h4, h5 {
text-transform: uppercase;
}
a {
text-decoration: underline;
color: inherit;
}
a:visited {
color: inherit;
}
p {
padding-top: var(--u0);
padding-bottom: var(--u0);
@ -248,6 +257,7 @@ input[type="password"]::placeholder {
button, .button {
font-family: "Fira Mono";
font-weight: bold;
text-decoration: none;
background-color: var(--c-primary);
color: var(--c-base);