diff options
author | Adam Stück <adam@adast.dk> | 2023-12-15 11:23:21 +0000 |
---|---|---|
committer | Adam Stück <adam@adast.dk> | 2023-12-15 12:00:01 +0000 |
commit | 57abab7d0c27161e909d07498c86012c82db246e (patch) | |
tree | d85b423672f55a3287cd1fc10fffa150e5500b94 /src/main.css | |
parent | f205d2e8787e58b73576245f03d44b7d791c471b (diff) |
overhaul: switch from ssg to barf
- simplify and polish most pages
- add /colophon, /now, /contact
- drop /resume-da
- drop javascript
- patch barf to create symlinks for /rss.xml and /feed to /atom.xml
Diffstat (limited to 'src/main.css')
-rw-r--r-- | src/main.css | 86 |
1 files changed, 0 insertions, 86 deletions
diff --git a/src/main.css b/src/main.css deleted file mode 100644 index 3291e54..0000000 --- a/src/main.css +++ /dev/null @@ -1,86 +0,0 @@ -* { - box-sizing: border-box; -} -body { - font-family: sans-serif; - line-height: 1.45; - margin: 0 auto; - max-width: 45rem; - padding: 0 15px; -} -hr { - background-color: grey; - border: 0; - height: 1px; - margin: 2rem 0; -} -nav { - margin: 2rem 0 0; -} -main p { - margin: 1rem; -} -h1,h2,h3,h4 { - margin: 2rem 0 0; -} -h1 { - margin-bottom: 0.5rem; -} -h1 + p { - margin: 0 0 1rem; -} -img { - border: 1px solid lightgrey; - height: auto; - max-width: 100%; - width: auto; -} -blockquote { - background-color: linen; - border-left: 4px solid lightcoral; - margin: 2rem 0; - padding: 10px; -} -blockquote p { - margin: 0; -} -figure { - margin: 2rem 0; -} -figcaption { - color: slategrey; -} -code { - background: #eee; - padding: 0.3rem; - tab-size: 4; -} -pre { - background: #eee; -} -pre code { - background: none; - display: block; - overflow-x: auto; - padding: 0.3rem 0.6rem; -} -table { - border-collapse: collapse; - margin: 2rem 0; - text-align: left; - width: 100%; -} -tr { - border-bottom: 1px solid lightgrey; -} -tr:nth-of-type(odd) td { - background-color: #f8f8f8; -} -th,td { - padding: 6px; -} -footer { - border-top: 1px dashed grey; - margin: 2rem 0; - padding: 1rem 15px; -} |