From a2db58855e1102d38ae2a151cfe04141d429266c Mon Sep 17 00:00:00 2001 From: Jean-Nicolas Veigel Date: Sat, 16 Mar 2024 03:54:16 +0100 Subject: style: add support for more color schemes toggle between light & dark variants --- static/css/layout.css | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 static/css/layout.css (limited to 'static/css/layout.css') diff --git a/static/css/layout.css b/static/css/layout.css new file mode 100644 index 0000000..6b6d1ac --- /dev/null +++ b/static/css/layout.css @@ -0,0 +1,10 @@ +:root { + --gap: 0.75rem; + --gap-double: calc(2 * var(--gap)); + --gap-triple: calc(3 * var(--gap)); + --gap-quad: calc(4 * var(--gap)); + --gap-half: calc(0.5 * var(--gap)); + --gap-quarter: calc(0.25 * var(--gap)); + + --navbar-height: calc(var(--gap-double) + 20px); +} \ No newline at end of file -- cgit v1.2.3