summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNantha Sorubakanthan <nantha@mielota.com>2025-10-29 19:07:50 +0100
committerNantha Sorubakanthan <nantha@mielota.com>2025-10-29 19:07:50 +0100
commit2e4faaeab9263b733a51a271c90b2a49c3b5704c (patch)
tree0eb972aa4f962f27e0fddedfac40e33843932aff
parent7869c36bd99d5fc03b05512e0090f1b0f032ca86 (diff)
add link hover and img property to css
-rw-r--r--hugo.yaml2
-rw-r--r--static/style.css11
2 files changed, 12 insertions, 1 deletions
diff --git a/hugo.yaml b/hugo.yaml
index 8fe7579..d038cb7 100644
--- a/hugo.yaml
+++ b/hugo.yaml
@@ -11,4 +11,4 @@ markup:
params:
email: mailto:nantha@mielota.com
- css: style.css?v=1.0.5
+ css: style.css?v=1.0.6
diff --git a/static/style.css b/static/style.css
index f63fd6e..9e642f2 100644
--- a/static/style.css
+++ b/static/style.css
@@ -17,6 +17,13 @@ body {
font-size: larger;
}
+img {
+ max-height: 22em;
+ padding-top: 1em;
+ display: block;
+ margin: auto;
+}
+
pre {
padding: 1em 1em;
line-break: auto;
@@ -45,6 +52,10 @@ a {
color: var(--link);
}
+a:hover {
+ color: #89ddff;
+}
+
.highlight {
font-family: var(--titlecodefont);
}