Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Stavrow <contact@angelostavrow.com>2020-07-19 15:11:42 +0300
committerAngelo Stavrow <contact@angelostavrow.com>2020-07-19 15:11:42 +0300
commitd8af5be86bad5df91b7c4b8e6393063d1ddd5983 (patch)
tree638acef23bafd90d17d61b194f59417db002d2d9
parent7cfe70c0014d6162b81e40358df67c566bbe0296 (diff)
Improve code block legibility in highlight shortcode
-rw-r--r--static/css/style.css7
1 files changed, 3 insertions, 4 deletions
diff --git a/static/css/style.css b/static/css/style.css
index db2c31e..162e1f8 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -229,19 +229,18 @@ blockquote {
}
code {
- background-color: #dee5e9;
- color: #00416a;
font-family: "Fira Code", "Courier New", Courier, monospace;
padding: 0.1em 0.2em 0.1em 0.2em;
}
pre {
- background-color: #dee5e9;
+ background-color: #00416a;
border: 1px solid #ccc;
border-radius: 5px;
+ color: #dee5e9;
font-size: 0.8em;
margin: 2em auto;
- overflow-x: scroll;
+ overflow-x: auto;
padding: 1em;
width: 100%;
}