fix(static/css/poole): Contrast issues
Ensures that the contrast ratio is at least 4.5:1 (so that is complies with WCAG 2.0: https://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html).
This commit is contained in:
parent
b6a5534d1b
commit
a56b6f866f
|
@ -68,7 +68,7 @@ body {
|
||||||
|
|
||||||
/* No `:visited` state is required by default (browsers will use `a`) */
|
/* No `:visited` state is required by default (browsers will use `a`) */
|
||||||
a {
|
a {
|
||||||
color: #268bd2;
|
color: #227bb9;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
/* `:focus` is linked to `:hover` for basic accessibility */
|
/* `:focus` is linked to `:hover` for basic accessibility */
|
||||||
|
@ -153,7 +153,7 @@ pre {
|
||||||
code {
|
code {
|
||||||
padding: .25em .5em;
|
padding: .25em .5em;
|
||||||
font-size: 85%;
|
font-size: 85%;
|
||||||
color: #bf616a;
|
color: #b3555e;
|
||||||
background-color: #f9f9f9;
|
background-color: #f9f9f9;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
}
|
}
|
||||||
|
@ -323,7 +323,7 @@ tbody tr:nth-child(odd) th {
|
||||||
display: block;
|
display: block;
|
||||||
margin-top: -.5rem;
|
margin-top: -.5rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
color: #9a9a9a;
|
color: #757575;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Related posts */
|
/* Related posts */
|
||||||
|
@ -344,7 +344,7 @@ tbody tr:nth-child(odd) th {
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
.related-posts li a:hover {
|
.related-posts li a:hover {
|
||||||
color: #268bd2;
|
color: #227bb9;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
.related-posts li a:hover small {
|
.related-posts li a:hover small {
|
||||||
|
|
Loading…
Reference in New Issue