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/common/fix_bootstrap.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/common/fix_bootstrap.css')
-rw-r--r-- | assets/css/common/fix_bootstrap.css | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/assets/css/common/fix_bootstrap.css b/assets/css/common/fix_bootstrap.css deleted file mode 100644 index 03100b3..0000000 --- a/assets/css/common/fix_bootstrap.css +++ /dev/null @@ -1,43 +0,0 @@ -/* Links become blue inside of <hN> elements otherwise. */ -h1 a, -h2 a, -h3 a, -h4 a, -h5 a, -h6 a { - color: inherit; -} -span.badge { - /* Link captions might become too close to badges on the sidebar. */ - margin-left: .5em; - /* Color badges in the color of grass. - * TODO: research if this can be set in the config or factor it out into a - * variable. */ - background-color: #008567; -} -/* Add horizontal scrollbars to <pre>s and don't wrap the code inside. */ -pre { - overflow-x: auto; -} -pre code { - white-space: pre; - word-wrap: normal; -} -/* Fixup syntax.css, which sets the code background to white. */ -.highlight { - background-color: #fafafa !important; -} -/* Prevent <code> elements from standing out from alerts. */ -.alert code { - padding: 0; - background-color: inherit; -} -/* Don't color category links blue. */ -.text-muted a.category { - color: inherit; -} -/* WTF? Sometimes I want to skip .list-group-item-text, and I don't want the - * margin for the heading. */ -.list-group-item-heading:last-child { - margin-bottom: 0; -} |