diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2019-05-03 11:14:27 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2019-05-03 11:17:20 -0400 |
| commit | eb7bc1a835811fb5c7a2ca14bb900b2210cbd919 (patch) | |
| tree | e8abe4a6affda50ce4ed1dea934bf785977c07ca /static | |
| parent | 052e78cf7ea76243a96e60502726ce6ed4cf6c65 (diff) | |
consistent link colors
Diffstat (limited to 'static')
| -rw-r--r-- | static/grapheneos.css | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/static/grapheneos.css b/static/grapheneos.css index 3dee9eea..aa0e03b5 100644 --- a/static/grapheneos.css +++ b/static/grapheneos.css @@ -10,6 +10,19 @@ body { overflow-y: scroll; } +a { + color: #0000ee; + text-decoration: none; +} + +a:visited { + color: #551a8b; +} + +a:hover { + text-decoration: underline; +} + pre { overflow-x: auto; } @@ -46,16 +59,12 @@ nav ul li a { padding: 1em; } -nav ul li.active a { - color: #64B5F6; /* blue300 */ -} - -a { - text-decoration: none; +nav ul li a:visited { + color: #fff; /* 100% white */ } -a:hover { - text-decoration: underline; +nav ul li.active a { + color: #64B5F6; /* blue300 */ } #content { |
