diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-08-27 11:08:03 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2023-08-27 11:08:03 +0530 |
commit | 6beddafb1752d49bfc773e067b4d07c6063d152d (patch) | |
tree | 0cba3404cd5780b9e0737a61f10e5eb03c4b9b0d /static/css/styles.css | |
parent | 77d4a98a666ef6c2c18c10f2f2d62210f9eeb752 (diff) |
styled code blocks, added header in blog
Diffstat (limited to 'static/css/styles.css')
-rw-r--r-- | static/css/styles.css | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/static/css/styles.css b/static/css/styles.css index 9b5a5ab..f4df2db 100644 --- a/static/css/styles.css +++ b/static/css/styles.css @@ -16,6 +16,9 @@ --listitem-bg1: #232323; --listitem-bg2: #272727; + + --codeblock-bg: #3f3f3f; + --codeblock-fg: #ffffff; } * { @@ -47,8 +50,28 @@ a { color: var(--link-fg); } -img { +#header-img { width: 100%; + max-height: auto; +} + +img { + display: block; + max-width: 100%; + max-height: 30rem; +} + +code { + background-color: var(--codeblock-bg); + color: var(--codeblock-fg); + padding: 5px 8px; + border-radius: 4px; + font-family: monospace; +} + +pre code { + overflow-x: auto; + display: block; } main:not(#site-home-page) { |