From be4c13aacdfffdb72b4a3a980c3be7957a19cf7d Mon Sep 17 00:00:00 2001
From: Egor Tensin <Egor.Tensin@gmail.com>
Date: Tue, 5 Apr 2022 13:57:04 +0200
Subject: shell: style scrollbars

---
 assets/css/jekyll-theme/shell.css | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

(limited to 'assets/css')

diff --git a/assets/css/jekyll-theme/shell.css b/assets/css/jekyll-theme/shell.css
index 215d610..e68543b 100644
--- a/assets/css/jekyll-theme/shell.css
+++ b/assets/css/jekyll-theme/shell.css
@@ -50,3 +50,21 @@
 .shell-out {
   border-width: 0 0 thin 0;
 }
+
+/* Scrollbars. */
+/* Firefox: */
+.shell * {
+  scrollbar-width: thin;
+  scrollbar-color: #ccc #f0f0f0;
+}
+/* Chrome: */
+.shell *::-webkit-scrollbar {
+  width: 4px;
+  height: 4px;
+}
+.shell *::-webkit-scrollbar-track {
+  background: #f0f0f0;
+}
+.shell *::-webkit-scrollbar-thumb {
+  background: #ccc;
+}
-- 
cgit v1.2.3