generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
correct 508 issues on site docs (#194)
## Description Making small CSS changes to account for 508 issues [axe](https://www.deque.com/axe/) flagged on the site docs. Note: this does not account for any issues on the API docs. ## Notes The syntax highlighting in the code blocks can cause readability issues due to poor contrast. One way to correct for this is to remove the syntax highlighting (just mark every code block as plaintext).
- Loading branch information
1 parent
09294ac
commit b2e692f
Showing
3 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* 508: Underline all hyperlinks */ | ||
a { | ||
text-decoration: underline; | ||
} | ||
/* 508: Change the color of footer text for contrast */ | ||
.md-copyright { | ||
color:var(--md-footer-fg-color); | ||
} |