From bd57d3564bae3f8d3f3713f31cb8561bc4a1bb5c Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Wed, 31 Aug 2022 12:28:58 +0900 Subject: [PATCH] change theme use sans-serif and monospace fonts --- app/src/app.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/src/app.css b/app/src/app.css index 09f35f2..1c023a8 100644 --- a/app/src/app.css +++ b/app/src/app.css @@ -1,5 +1,11 @@ :root { font-size: 12px; + --nc-font-sans: sans-serif; + --nc-font-mono: monospace; + --nc-lk-1: #1875d1; + --nc-lk-2: #004a9f; + --nc-ac-1: #f57f17; + --nc-ac-tx: var(--nc-tx-1); } body { @@ -13,6 +19,11 @@ header { justify-content: space-evenly; } +header h1 > a, +header h1 > a:hover { + color: var(--nc-ac-1); +} + a[href^="/"] { text-decoration: none; }