diff options
author | r <r@freesoftwareextremist.com> | 2020-10-19 06:06:41 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-10-19 06:06:41 +0000 |
commit | ef41ff32e2cb16a3757b952a33d29528482685b8 (patch) | |
tree | d1630426e38b591774bfcf5425a1651b5faaaf92 /static | |
parent | a23fd4afafe4d7609ae003b3d1e8598969871cb5 (diff) | |
download | bloat-ef41ff32e2cb16a3757b952a33d29528482685b8.tar.gz bloat-ef41ff32e2cb16a3757b952a33d29528482685b8.zip |
Add keyboard shortcuts
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 0349c29..9c05eff 100644 --- a/static/style.css +++ b/static/style.css @@ -505,6 +505,22 @@ img.emoji { margin: 8px 0 16px 0; } +.keyboard-shortcuts { + margin-top: 12px; +} + +.keyboard-shortcuts td { + padding: 2px 4px; +} + +kbd { + border-radius: 3px; + padding: 1px 4px; + border: 1px solid #444444; + background-color: #eeeeee; + font-size: 10pt; +} + .dark { background-color: #222222; background-image: none; @@ -548,3 +564,9 @@ img.emoji { background-color: #222222; border-color: #444444; } + +.dark kbd { + background-color: #333333; + border-color: #444444; + color: #eaeaea; +} |