hyperlinks

This commit is contained in:
Jordan Scales 2020-04-18 08:56:01 -04:00
parent 9739c7689e
commit b082d62415
2 changed files with 18 additions and 1 deletions

View file

@ -7,6 +7,7 @@
--window-frame: #0a0a0a;
--dialog-blue: #000080;
--dialog-blue-light: #1084d0;
--link-blue: #0000ff;
/* Spacing */
--element-spacing: 8px;
@ -330,3 +331,11 @@ textarea:focus {
select:active {
background-image: url("./dropdown-button-active.svg");
}
a {
color: var(--link-blue);
}
a:focus {
outline: 1px dotted var(--link-blue);
}