diff options
-rw-r--r-- | static/style.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 089fbc1..1d79640 100644 --- a/static/style.css +++ b/static/style.css @@ -231,6 +231,20 @@ pre.chunk { } .file-header { font-family: monospace; + display: flex; + flex-direction: row; + align-items: center; +} +.file-header::after { + content: "\25b6"; + font-family: sans-serif; + margin-left: auto; + font-size: 1.75em; + line-height: 100%; + margin-right: 0.25em; +} +.file-toggle:checked + .file-header::after { + content: "\25bc"; } /* Form elements */ |