From 26d0ced755afee69ce7b775e4ad6fc26e01c3740 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Mon, 6 Nov 2023 15:23:24 -0600 Subject: [PATCH] update css for footer content --- static/css/custom.css | 49 +++++++++++++++++++------------------------ 1 file changed, 22 insertions(+), 27 deletions(-) diff --git a/static/css/custom.css b/static/css/custom.css index d8db2e0..729eb86 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -13,6 +13,28 @@ opacity: 0.80; } +/* Footer tweaks */ +.copyright { + font-size: 14px; + line-height: 1.3rem; +} + +.powered_by { + font-size: 12px; + line-height: 1.1rem; + color: var(--muted); +} + +.powered_by a:link, .powered_by a:visited { + color: var(--off-fg); + text-decoration: none; +} + +.powered_by a:hover { + color: var(--hover); + text-decoration: underline; +} + /* Notice CSS Built on hugo-notice by Nicolas Martignoni: https://github.com/martignoni/hugo-notice */ .notice { --root-color: #444; @@ -134,31 +156,4 @@ body.dark .notice { position: relative; } -/* Insert prompt char ::before on every line in command codeblocks */ -/* .command .line {display: inherit;} -.command .line::before { - color: var(--base07); - content: "$ "; -} - -.commandroot .line {display: inherit;} -.commandroot .line::before { - color: var(--base08); - content: "# "; -} */ - -/* Insert prompt char ::before on first line in cmd-session codeblocks -(These are useful for showing returned values from commands) -*/ -/* .command-session .line {display: inherit;} -.command-session code::before { - color: var(--base07); - content: "$ "; -} - -.commandroot-session .line {display: inherit;} -.commandroot-session code::before { - color: var(--base08); - content: "# "; -} */