aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2021-04-06 12:30:59 -0700
committerFranck Cuny <franck@fcuny.net>2021-04-06 12:30:59 -0700
commita53be2f4e1bb79867b50bf5f8cd4158dcc15fe95 (patch)
treead3e347c8a2826773c464fa793d9ee1df538c7a6
parentcss: change the default font (diff)
downloadinfra-a53be2f4e1bb79867b50bf5f8cd4158dcc15fe95.tar.gz
css: set background color for code block
Indent properly the CSS for the `pre` tag.
-rw-r--r--users/fcuny/notes/static/css/custom.css14
1 files changed, 9 insertions, 5 deletions
diff --git a/users/fcuny/notes/static/css/custom.css b/users/fcuny/notes/static/css/custom.css
index c84a013..b3c3e2f 100644
--- a/users/fcuny/notes/static/css/custom.css
+++ b/users/fcuny/notes/static/css/custom.css
@@ -38,10 +38,14 @@ span.published, span.updated {
font-style: oblique;
}
+code {
+ background-color: #eeeeee;
+}
+
pre {
- padding: 1rem 2rem;
- margin: 0;
- font-size: 16px;
- font-family: "Roboto Mono", Monaco, "Lucida Console", monospace;
- overflow: scroll;
+ padding: 1rem 2rem;
+ margin: 0;
+ font-size: 16px;
+ font-family: "Roboto Mono", Monaco, "Lucida Console", monospace;
+ overflow: scroll;
}