1
Fork 0

Adjust default a:hover style.

This commit is contained in:
Bauke 2022-03-28 14:37:26 +02:00
parent 10305c021a
commit c8fa1c5d76
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 7 additions and 8 deletions

View File

@ -15,15 +15,8 @@
}
a {
border: 2px solid;
color: var(--foreground-1);
border: 2px solid var(--foreground-1);
padding: 1rem;
&:hover {
background-color: var(--foreground-1);
border-color: var(--foreground-1);
color: var(--background-1);
}
}
}
}

View File

@ -12,12 +12,18 @@ body {
color: var(--foreground-1);
font-family: sans-serif;
font-size: 2rem;
padding: 1rem;
}
a {
color: var(--foreground-1);
font-weight: bold;
text-decoration: 1px dotted underline;
&:hover {
background-color: var(--foreground-1);
color: var(--background-1);
}
}
button {