From 89e5b1959256f16e6625c60e88da499c717f2d88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Mart=C3=ADnez=20Portela?= Date: Sat, 8 Jan 2022 01:13:00 +0100 Subject: [PATCH] WIP: Style. --- static/style.css | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index 1c2daf6..b9c4547 100644 --- a/static/style.css +++ b/static/style.css @@ -1,16 +1,24 @@ +body { + /* color: #fff; */ + /* background-color: #222; */ +} + .node .node { margin: 1ex; padding-left: 1ex; - border-left: 3px solid #444; + border-left: 3px solid #888; } h1.title .state { - font-style: italic; font-size: 50%; vertical-align: middle; + /* background-color: rgba(255,255,255,0.3); */ + background-color: rgba(0,0,0,0.1); + padding: 4px; + border-radius: 5px; } h1.title a { - color: black; + color: inherit; text-decoration: underline dotted 2px; } @@ -21,3 +29,7 @@ li .tag { li .tag::after { content: ": "; } + +.text { + font-family: monospace; +}