From 01773eabc92ef6ee90657e8fa179e36e52464f4e Mon Sep 17 00:00:00 2001 From: Ivan Davydov Date: Sat, 21 Jun 2025 18:29:46 +0300 Subject: Make the website minimalistic --- archive/folk-new/main.css | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 archive/folk-new/main.css (limited to 'archive/folk-new/main.css') diff --git a/archive/folk-new/main.css b/archive/folk-new/main.css new file mode 100644 index 0000000..4db2466 --- /dev/null +++ b/archive/folk-new/main.css @@ -0,0 +1,44 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; + hyphens: auto; +} + +html { + min-height: 100%; + min-width: 100%; + + display: flex; + flex-direction: column; +} + +body { + min-height: 100%; + width: 100%; + display: flex; + flex-direction: column; + flex-grow: 1; + font-family: Verdana, serif; + font-size: 11pt; + text-align: center; +} + +div#page_wrapper { + background-color: #e5e6e7; + min-height: 100%; + width: 100%; + flex-grow: 1; +} + +div.page { + position: relative; + margin: 1em auto 0px auto; +} + +div.header { + border-bottom: 5px solid black; + display: inline-block; + padding-bottom: 1em; + width: 50%; +} -- cgit v1.2.3