diff options
| author | mjkwiatkowski <mati.rewa@gmail.com> | 2026-02-03 07:43:54 +0100 |
|---|---|---|
| committer | mjkwiatkowski <mati.rewa@gmail.com> | 2026-02-03 07:43:54 +0100 |
| commit | 5cf04aed4bac748c07edf9b99f281c939856d9ef (patch) | |
| tree | c8933e3af99058ad1ff664254c784625b275ebac | |
| parent | 9844a5c7694fcae61ed4509f09a595daf15cb44f (diff) | |
feat: changed background color and line spacing
| -rw-r--r-- | content/_index.md | 2 | ||||
| -rw-r--r-- | content/posts/thinking-fast-and-slow.md | 7 | ||||
| -rw-r--r-- | static/css/style.css | 17 |
3 files changed, 20 insertions, 6 deletions
diff --git a/content/_index.md b/content/_index.md index 522bff3..93ede42 100644 --- a/content/_index.md +++ b/content/_index.md @@ -3,5 +3,3 @@ Welcome to the mjkw.pl blog where I discuss some of the problems I encounter in Here, I mostly try to practice writing skills and organize my arguments; [git.denounce.ai](https://git.denounce.ai) is my git repository, [ohmyghost.nl](https://ohmyghost.nl) is a separate, English literature book blog. To get in touch just send me an email. - - diff --git a/content/posts/thinking-fast-and-slow.md b/content/posts/thinking-fast-and-slow.md new file mode 100644 index 0000000..dfe010f --- /dev/null +++ b/content/posts/thinking-fast-and-slow.md @@ -0,0 +1,7 @@ +--- +title: "Thinking Fast and Slow" +date: 2026-02-02T17:25:36+01:00 +draft: true +--- + + diff --git a/static/css/style.css b/static/css/style.css index a6492f1..7267a50 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,9 +1,13 @@ body, html { margin: auto; - font-family: sans-serif; + font-family:Verdana, Geneva, Tahoma, sans-serif; font-size: 12.5pt; } +body { + background-color: #F9F6EE; +} + h1 { font-size: 3em; font-weight: bold; @@ -17,8 +21,10 @@ img { } h2 { + font-family:Verdana, Geneva, Tahoma, sans-serif; + margin-top: 0.5em; padding: 0.1em; - background: rgba(170, 170, 170, 0.3); + background: #DFDFDF; color: #0b0b0b; font-weight: bold; } @@ -65,10 +71,11 @@ header ul li { header, .list, .single, .body{ padding-left: 4em; - background: rgba(170, 170, 170, 0.3); + background: #DFDFDF; } p { + line-height: 1.75em; text-align: justify; } @@ -76,7 +83,9 @@ p { font-family:Georgia, 'Times New Roman', Times, serif; margin-left: 3em; width: 80%; - background: #ffffff; + margin-bottom: 0em; + margin-top: 0em; + background-color: #F9F6EE; } .date { |
