diff options
| -rw-r--r-- | hugo.yaml | 2 | ||||
| -rw-r--r-- | static/style.css | 41 |
2 files changed, 40 insertions, 3 deletions
@@ -11,4 +11,4 @@ markup: params: email: mailto:nantha@mielota.com - css: style.css?v=1.0.6 + css: style.css?v=1.0.7 diff --git a/static/style.css b/static/style.css index 9e642f2..2f44daa 100644 --- a/static/style.css +++ b/static/style.css @@ -3,6 +3,7 @@ --bg: #1a1b26; --sbg: #39405e; --link: #7aa2f7; + --bleuclair: #89ddff; --regularfont: system-ui; --titlecodefont: 'Courier New', Courier, monospace; } @@ -18,12 +19,28 @@ body { } img { - max-height: 22em; padding-top: 1em; display: block; margin: auto; } +img.icon { + height: 10em; + width: auto; +} + +img.small { + width: 57%; +} + +img.medium { + width: 70%; +} + +img.large { + width: 100%; +} + pre { padding: 1em 1em; line-break: auto; @@ -53,7 +70,7 @@ a { } a:hover { - color: #89ddff; + color: var(--bleuclair); } .highlight { @@ -89,6 +106,16 @@ h6 { color: #DDD; } +h1, +h2, +h3, +h4, +h5, +h6 { + font-style: italic; + ; +} + hr { color: var(--fg); } @@ -130,4 +157,14 @@ li { .columns { columns: 1; } + + img, + img.medium, + img.large { + width: 87%; + } + + img.small { + width: 70%; + } } |
