diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 16:01:51 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 16:04:30 +0300 |
commit | f8f58334e70d24e4f4acef78d0951565b92ea341 (patch) | |
tree | 4fdb72f825a677c483386ef0fe0f50dcf6cbb671 /assets/css/shell.css | |
parent | README: fix a typo (diff) | |
download | jekyll-theme-f8f58334e70d24e4f4acef78d0951565b92ea341.tar.gz jekyll-theme-f8f58334e70d24e4f4acef78d0951565b92ea341.zip |
css: move CSS files to jekyll-theme/
Diffstat (limited to 'assets/css/shell.css')
-rw-r--r-- | assets/css/shell.css | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/assets/css/shell.css b/assets/css/shell.css deleted file mode 100644 index 6e8ddce..0000000 --- a/assets/css/shell.css +++ /dev/null @@ -1,53 +0,0 @@ -.shell pre { - /* Reset Bootstrap's settings for <pre>. */ - margin: 0; - border-radius: 0; -} - -/* WTF is this? I somehow came up with it, but I hope there's a better way. - * 10.5px is the standard bottom margin for <pre>s. */ -.shell { - margin-bottom: 10.5px; -} -.shell + .shell { - margin-top: -10.5px; -} - -.shell > div { - display: flex; - overflow: auto; -} -.shell-mark { - /* Don't shrink it. */ - flex: none; -} -.shell-cmd { - flex: 1; - /* The combination of overflow values disables the scrollbar for .shell-cmd - * and assigns it to the outer div instead, which looks nicer. */ - overflow: visible; -} - -/* Styling, yo. */ -.shell > div { - /* Color the border in the color of grass. */ - border: medium solid #008567; - border-width: 0 0 medium 0; -} -.shell-mark, .shell-cmd { - border: none; - background-color: #f0f0f0; -} -.shell-mark { - font-weight: bold; - /* I like colors. */ - color: #20004b; - user-select: none; -} -.shell-cmd { - /* No double-padding between .shell-mark and .shell-cmd. */ - padding-left: 0; -} -.shell-out { - border-width: 0 0 thin 0; -} |