diff options
Diffstat (limited to 'aux/workflow/style.css')
-rw-r--r-- | aux/workflow/style.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css index c3496b5..c212ddb 100644 --- a/aux/workflow/style.css +++ b/aux/workflow/style.css @@ -12,6 +12,10 @@ a:visited { color: hsl(242, 100%, 80%); } + + pre { + background-color: #333; + } } body { @@ -25,6 +29,7 @@ .header-anchor { opacity: 0.5; + display: inline-block; } .tag { @@ -60,11 +65,13 @@ color: green; } - pre > code { - display: block; - border: 1px solid #ccc; + pre { + background-color: #ccc; border-radius: 10px; padding: 10px; + } + + pre > code { overflow: auto; white-space: pre; } |