1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-28 16:14:09 +03:00

Change code background to lighter colour.

This changes the alpha value of the `code` and `pre` background from 0.1 to 0.04. The current background colour is pretty dark and is more distracting and less visually appealing imho.

Screenshots: https://imgur.com/a/hfUAdEY
This commit is contained in:
Matt Renaud 2018-10-27 16:50:06 -07:00 committed by GitHub
parent 5eebd34a28
commit 9324c061bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ blockquote p {
margin: 0.5em 0; }
code {
background: rgba(10, 10, 10, 0.1);
background: rgba(10, 10, 10, 0.04);
font-size: 95%;
padding: 2px 4px; }
@ -27,7 +27,7 @@ div.sourceCode {
overflow-x: unset; }
pre {
background: rgba(10, 10, 10, 0.1);
background: rgba(10, 10, 10, 0.04);
line-height: 150%;
padding: 0.5em 1em;
overflow-x: auto; }