diff options
author | Franck Cuny <franck@fcuny.net> | 2021-04-06 12:30:59 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-04-06 12:30:59 -0700 |
commit | a53be2f4e1bb79867b50bf5f8cd4158dcc15fe95 (patch) | |
tree | ad3e347c8a2826773c464fa793d9ee1df538c7a6 /users/fcuny | |
parent | css: change the default font (diff) | |
download | world-a53be2f4e1bb79867b50bf5f8cd4158dcc15fe95.tar.gz |
css: set background color for code block
Indent properly the CSS for the `pre` tag.
Diffstat (limited to '')
-rw-r--r-- | users/fcuny/notes/static/css/custom.css | 14 |
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; } |