From af13f6fd659fb87419462fc439e594afe6790873 Mon Sep 17 00:00:00 2001 From: Marijn Besseling Date: Sun, 19 Oct 2025 21:55:30 +0200 Subject: add number & boolean formatting, replace httpclientfactory with httpclient with base url, add requset message to brp page --- Blog/wwwroot/app.css | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'Blog/wwwroot/app.css') diff --git a/Blog/wwwroot/app.css b/Blog/wwwroot/app.css index 038f76e..d5dd2b4 100644 --- a/Blog/wwwroot/app.css +++ b/Blog/wwwroot/app.css @@ -39,7 +39,7 @@ h1:focus { * { box-sizing: border-box; - font-size: calc(1rem + 0.5vw); + font-size: calc(1rem + 0.4vw); font-family: monospace; } @@ -48,6 +48,7 @@ h1:focus { --white: #fafafa; --error: #da0000; --info: #669aba; + --green: #5fbb5d; --ratio: 1.5; --s0: 1rem; @@ -248,6 +249,10 @@ footer > ul { columns: 2; } +.two-column { + columns: 2; +} + legend::before { content: "( "; } @@ -298,3 +303,16 @@ span.name { li.dash { list-style-type: "- "; } + +.json-true { + color: var(--green); +} + +.json-false { + color: var(--error); +} + +.json-number { + color: var(--info); +} + -- cgit v1.2.3