diff --git a/content/post/markdown-syntax.md b/content/post/markdown-syntax.md index ccaebbf..c54e5b4 100644 --- a/content/post/markdown-syntax.md +++ b/content/post/markdown-syntax.md @@ -164,7 +164,7 @@ H2O Xn + Yn = Zn -Press CTRL+ALT+Delete to end the session. +Press CTRL+ALT+Delete to end the session. Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. diff --git a/themes/ossn-theme/static/css/common.css b/themes/ossn-theme/static/css/common.css index f3bfb36..5fc85b8 100644 --- a/themes/ossn-theme/static/css/common.css +++ b/themes/ossn-theme/static/css/common.css @@ -70,7 +70,7 @@ --link-color: #AA0000; --font-color: #121212; --background-color: #FAFAFA; - --background-code: #F5F5F5; + --background-code: #e5e5F5; --target-color: azure; } diff --git a/themes/ossn-theme/static/css/content.css b/themes/ossn-theme/static/css/content.css index a898ac6..04a87a4 100644 --- a/themes/ossn-theme/static/css/content.css +++ b/themes/ossn-theme/static/css/content.css @@ -44,7 +44,7 @@ } .content blockquote { - border-left: black 2px solid; + border-left: var(--font-color) 2px solid; font-style: italic; padding: 1rem 0 1rem 2rem; } @@ -133,3 +133,12 @@ .content ol, .content ul { margin-left: 1.5rem; } + +.content kbd { + background-color: var(--background-code); + border-radius: .2rem; + color: var(--link-color); + font-family: 'Latin Modern Mono', Courier, monospace; + padding: 0 .2rem; + border: 1px dashed var(--font-color); +}