From a52d8bc5c9ffcdf7b5502a866291f91850affeb9 Mon Sep 17 00:00:00 2001 From: lambda Date: Sun, 26 Apr 2026 20:14:03 +0300 Subject: [PATCH] change styles --- static/css/base.css | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/static/css/base.css b/static/css/base.css index ecb3bcf..440fe6c 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -7,10 +7,26 @@ body { } .head { + align-items: center; display: flex; flex-wrap: wrap; - padding-top: 2rem; gap: 20px; + justify-content: center; + padding-top: 2rem; +} + +.head > * { + flex: 1 1 200px; + flex-basis: calc((600px - 100%) * 999); + text-align: center; +} + +.head > h1 { + white-space: nowrap; +} + +.head > .logo { + max-width: fit-content; } .head > .logo > svg { @@ -20,3 +36,11 @@ body { width: 100px; } +.head > .links { + list-style: none; +} + +.head > .links a { + color: white; + font-size: 1.5em; +}