Add styling to make links easier to theme and read
This commit is contained in:
parent
eef0529d4f
commit
555b995ac9
5 changed files with 16 additions and 0 deletions
|
|
@ -73,4 +73,7 @@
|
|||
|
||||
--icon-primary: var(--accent2);
|
||||
--icon-secondary: var(--accent1);
|
||||
|
||||
--link: #ffed00;
|
||||
--visited-link: #ffed00;
|
||||
}
|
||||
|
|
@ -73,4 +73,7 @@
|
|||
|
||||
--icon-primary: var(--accent2);
|
||||
--icon-secondary: var(--accent1);
|
||||
|
||||
--link: #00bfff;
|
||||
--visited-link: #c700c7;
|
||||
}
|
||||
|
|
@ -73,4 +73,7 @@
|
|||
|
||||
--icon-primary: var(--accent2);
|
||||
--icon-secondary: var(--accent1);
|
||||
|
||||
--link: #830083;
|
||||
--visited-link: #000000;
|
||||
}
|
||||
|
|
@ -73,4 +73,7 @@
|
|||
|
||||
--icon-primary: var(--accent2);
|
||||
--icon-secondary: var(--accent1);
|
||||
|
||||
--link: #000000;
|
||||
--visited-link: #000000;
|
||||
}
|
||||
|
|
@ -119,6 +119,10 @@ body {
|
|||
color: var(--background-text);
|
||||
}
|
||||
|
||||
/* Allows for better theming of the anchor text */
|
||||
a { color: var(--link); }
|
||||
a:visited { color: var(--visited-link); }
|
||||
|
||||
#theme-button {
|
||||
position: absolute;
|
||||
display: block;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue