Skip to content

Commit

Permalink
docs: update version number and docs css
Browse files Browse the repository at this point in the history
  • Loading branch information
codazoda committed Mar 26, 2024
1 parent e776e09 commit 783b34c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@
1.0.15
- Update font to system-ui

1.0.16
- Update active element to use a variable for color and adjust that color slightly
- Remove link outline on click and add subtle hover color

11 changes: 10 additions & 1 deletion docs/neat.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
--lesslight: #efefef;
--dark: #404040;
--moredark: #000;
--link: royalblue;
border-top: 5px solid var(--dark);
line-height: 1.5em;
font-family: system-ui, sans-serif;
Expand Down Expand Up @@ -50,6 +51,14 @@ body {
margin-right: auto;
}

a {
outline: none;
}

a:hover {
text-decoration-color: var(--link);
}

img {
max-width: 100%;
height: auto;
Expand Down Expand Up @@ -136,7 +145,7 @@ button + button, .button + .button, input[type=submit] + input[type=submit] {
/* This fixes an odd blue then white shadow on FF in dark mode */
*:focus {
outline: var(--light);
box-shadow: 0 0 0 .25em royalblue;
box-shadow: 0 0 0 .25em var(--link);
}
}

Expand Down
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@
1.0.13
1.0.14
1.0.15
1.0.16

0 comments on commit 783b34c

Please sign in to comment.