diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 1b68815..9a8068d 100644 --- a/static/style.css +++ b/static/style.css @@ -1,5 +1,33 @@ * { word-break: break-word; + scrollbar-color: #edc953 #e8d2c5; +} + +/* scrollbar */ +/*width */ +::-webkit-scrollbar { + position: fixed; + top: 0; + left: 0; + width: 20px; +} + +/* Track */ +::-webkit-scrollbar-track { + border: 4px solid #311f20; + padding: 4px; + background: #e8d2c5; +} + +/* Handle */ +::-webkit-scrollbar-thumb { + border: 4px solid #311f20; + background: #edc953; +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #ccad47; } .panel { |