caio.co/de/caca


Let go of font sizes and line heights 💬 by Caio 10 months ago (log)
It became pretty obvious that my lame attempt at taming these things
with little css failed when I plugged into a different screen

If the browser settings are sane, this should still look readable

Blob caca/theme/www.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <title>{{ page.title }}</title>
  <link rel="icon"
    href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🍄</text></svg>">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <meta name="generator" content="caca - https://caio.co/de/caca">
  <style>
    body {
      font-family: sans-serif;
      max-width: 88ch;
      padding: 2.5rem 1.75rem;
      word-wrap: break-word;
      tab-size: 4;
    }

    ul,
    ol {
      margin-top: 0;
      margin-bottom: 1.5rem;
    }

    img {
      max-width: 100%;
    }

    blockquote {
      border-left: 2px lightgray solid;
      padding-left: 0.5rem;
    }
  </style>
</head>

<body>
  {{ content|safe }}
</body>

</html>