diff options
author | EuAndreh <eu@euandre.org> | 2022-01-22 13:02:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-22 13:02:51 -0300 |
commit | 41e79becf43d418d951f10c7a24009b3197531ca (patch) | |
tree | 45fbe36fd8b50ff19da9db04917015c48010d77b | |
parent | TODOs.md: Add #td-a5575802-ffe2-8ac5-f7c3-dea3a1e6f0c4 (diff) | |
download | git-permalink-41e79becf43d418d951f10c7a24009b3197531ca.tar.gz git-permalink-41e79becf43d418d951f10c7a24009b3197531ca.tar.xz |
aux/workflow/style.css: Add clearer marking of code blocks
-rw-r--r-- | aux/workflow/style.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css index 56e4712..c3496b5 100644 --- a/aux/workflow/style.css +++ b/aux/workflow/style.css @@ -59,4 +59,13 @@ .CANCELLED, .DONE, .WONTFIX { color: green; } + + pre > code { + display: block; + border: 1px solid #ccc; + border-radius: 10px; + padding: 10px; + overflow: auto; + white-space: pre; + } </style> |