From 5c979747e29f6c3eee6868c579b936d576fcb80c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Mon, 10 Jan 2022 23:53:07 +0100 Subject: [PATCH] Try cleaner style for note output. --- static/style.css | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/static/style.css b/static/style.css index 3c63109..36b8b14 100644 --- a/static/style.css +++ b/static/style.css @@ -1,15 +1,19 @@ body { - /* color: #fff; */ - /* background-color: #222; */ + margin: 0 auto; + max-width: 100ex; } .node .node { margin: 1ex; - padding-left: 1ex; - box-shadow: 0 2px 4px 0 rgba(0,0,0,0.3); + padding: 0 0.5ex 0.1ex 1ex; + box-shadow: 0px 1px 4px 0 rgba(0,0,0,0.3); border-radius: 4px; } +h1 { + font-size: 150%; +} + h1,h2,h3,h4,h5,h6 { margin-top: 0; }