Merge pull request #139 from creative-commoners/pulls/2.0/link-colour

NEW Change link and code text colours for readability
This commit is contained in:
Robbie Averill 2017-08-28 11:37:44 +12:00 committed by GitHub
commit c1a418edfa
1 changed files with 12 additions and 10 deletions

View File

@ -13,7 +13,7 @@
/*! links */ /*! links */
a { a {
color: #808c8d; color: #0071c4;
text-decoration: none; text-decoration: none;
} }
@ -223,21 +223,23 @@ pre {
pre code { pre code {
/* reset block styles */ /* reset block styles */
font-size: 1em; font-size: 1em;
line-height: 1.5em; line-height: 1.5em;
} }
code { code {
/* inline styles, fit with non-code text */ /* inline styles, fit with non-code text */
font-size: 13px; font-size: 13px;
line-height: 15px; line-height: 15px;
font-family: Monaco, 'Bitstream Vera Sans Mono', Courier, monospace; font-family: Monaco, 'Bitstream Vera Sans Mono', Courier, monospace;
background: #f3f6f6; background: #f0f4f4;
padding: 2px; color: #ed135a;
} padding: 2px;
}
code a {
color: #4E5661; code a {
color: #ed135a;
text-decoration: underline;
} }
/*! quotes */ /*! quotes */