From 880776528c0acf361ee06b8a5ec6c4071c329d7f Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Sat, 6 Dec 2025 16:03:44 +0500 Subject: initial commit --- static/style.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 static/style.css (limited to 'static') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..6ec0668 --- /dev/null +++ b/static/style.css @@ -0,0 +1,33 @@ +* { + margin: 0; + padding: 0; +} + +body { + width: 50em; + margin: 0 auto; + font-family: 'Times New Roman', Times, serif; +} + +header { + border: 1px solid black; + margin: 8px 0; + display: flex; + flex-direction: column; +} + +header .banner { + background-color: seagreen; + min-height: 10vh; + display: flex; + align-items: end; + justify-content: end; +} + +header .links { + padding: 4px; + border-top: 1px solid black; + display: flex; + flex-direction: row; + justify-content: space-around; +} \ No newline at end of file -- cgit v1.2.3