diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-07-01 02:34:40 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-07-01 02:34:40 +0300 |
commit | 5080e72e0d72993e642b81b3445971e2d04e0d50 (patch) | |
tree | 632d5d5e634958b054747d6a70c06455e534e159 | |
parent | add horizontal scrollbars to <pre> elements (diff) | |
download | jekyll-theme-5080e72e0d72993e642b81b3445971e2d04e0d50.tar.gz jekyll-theme-5080e72e0d72993e642b81b3445971e2d04e0d50.zip |
css: code style
Diffstat (limited to '')
-rw-r--r-- | css/common/footer.css | 8 | ||||
-rw-r--r-- | css/snippets.css | 8 |
2 files changed, 9 insertions, 7 deletions
diff --git a/css/common/footer.css b/css/common/footer.css index d3c3884..1e05c57 100644 --- a/css/common/footer.css +++ b/css/common/footer.css @@ -8,10 +8,10 @@ html, body { display: table; /* - Without this property, scrollbars inside <pre> elements don't work if - display's width is less than 750px. - God, I hate CSS. - */ + * Without this property, scrollbars inside <pre> elements don't work if + * display's width is less than 750px. + * God, I hate CSS. + */ table-layout: fixed; } .footer-wrapper-collapse { diff --git a/css/snippets.css b/css/snippets.css index ff89097..6924137 100644 --- a/css/snippets.css +++ b/css/snippets.css @@ -2,10 +2,12 @@ div.panel-body pre { margin: 0; border: none; /* - Uncomment this property if you disable syntax highlighting: - + * Uncomment this property if you disable syntax highlighting (and thus + * don't use .highlight's background-color). + * background-color: inherit; - */ + * + */ border-radius: 0 0 4px 4px; } div.panel-body { |