diff options
author | Michał M. Sapka <michal@sapka.me> | 2023-05-10 10:23:15 +0200 |
---|---|---|
committer | Michał M. Sapka <michal@sapka.me> | 2023-05-10 10:23:15 +0200 |
commit | 8c72647a89b26c2e5ed55f6244ad3c0873073666 (patch) | |
tree | b665319dd91005426f2167664bc9d6704feb2460 | |
parent | 94adcf7624c66a976ba8445d09a58d4cb98a2eda (diff) |
feat: move to name domain
-rw-r--r-- | config.toml | 11 | ||||
-rw-r--r-- | static/style.css | 38 |
2 files changed, 20 insertions, 29 deletions
diff --git a/config.toml b/config.toml index 6399b34..eb4eb1c 100644 --- a/config.toml +++ b/config.toml @@ -1,12 +1,11 @@ -baseURL = 'https://d-s.sh' +baseURL = 'https://michal.sapka.me' languageCode = 'en-us' -title = "d-s" -tagline = "Hello do d-s's weblog!" +title = "Michał Sapka's webpage" +tagline = "Hello do Michał's weblog!" [params] - defaultDescription = "Welcome to my blog!" plausibleDomain = "d-s.sh" @@ -21,8 +20,8 @@ tagline = "Hello do d-s's weblog!" [outputs] home = [ "HTML", "RSS", "TXT" ] - term = [ "HTML" ] - taxonomy = [ "HTML" ] + term = [ "HTML" , "RSS" ] + taxonomy = [ "HTML" ] [markup] defaultMarkdownHandler = "goldmark" diff --git a/static/style.css b/static/style.css index 32dc3a0..f171743 100644 --- a/static/style.css +++ b/static/style.css @@ -1,4 +1,4 @@ -:root { + { color-scheme: light dark; --site-bg: #fff; @@ -34,7 +34,7 @@ } /* ----------- Entire site */ body { - font-family: 'helvetica'; + font-family: 'monospace'; padding: 0; margin: 0; font-size: 1.2cem; @@ -73,6 +73,7 @@ a:hover { flex: 200px 0; text-align: center; flex-shrink: 0; + margin-bottom: 20px; } @media (max-width: 100000px) { @@ -138,7 +139,7 @@ p flex: 50%; } main { - padding: 5px; + padding: 0px; } @media (max-width: 710000000000px) { @@ -146,20 +147,6 @@ main { flex: 100%; } } -/* ----------- Pagination navigation */ -.pagination { - text-align: center -} -.pagination li { - display: inline-block -} -#pagination ul { - text-align:center; -} -#pagination ul li { - display:inline; - padding:0 1em; -} /* ----------- Taxmomy list */ .taxonomy a { @@ -175,12 +162,7 @@ main { /* ----------- Articles / Posts */ article { margin-bottom: 20px; - padding: 25px; - background-color: var(--article-bg); - border-style: solid; - border-color: var(--article-border-color); - border-radius: 3px; - box-shadow: -1px 8px 35px -18px var(--article-shadow-color); + padding: 5px; line-height: 1.32em; } article p { @@ -252,3 +234,13 @@ footer { text-align: center; padding: 10px 0 10px 0; } + +/* ---------- Footnotes */ +a[href^="#fn:"], a[href^="#fnref:"] { + text-decoration: none; +} +a[href^="#fn:"]:before{ content: '[' } +a[href^="#fn:"]:after{ content: ']' } +.footnotes p { + margin: 3px; +} |