diff options
Diffstat (limited to '')
-rw-r--r-- | assets/css/jekyll-theme/shell.css | 18 |
1 files changed, 18 insertions, 0 deletions
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; +} |