From e19ebe26ecd117a77c8fdda2e7667fca42160e1d Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Tue, 26 Sep 2023 22:06:05 -0400 Subject: stuff --- assets/css/main.css | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) (limited to 'assets') diff --git a/assets/css/main.css b/assets/css/main.css index 75f2b9e..e49a669 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -7,4 +7,47 @@ main { display: flex; flex-direction: column; justify-content: stretch; +} + +footer { + background: #00000055; +} + +.flex { + display: flex; +} + +.flex.row { + flex-direction: row; +} + +.flex.col { + flex-direction: column; +} + +.footer-info { + width: 100%; + justify-content: center; +} + +.flex.footer-info { + gap: 1rem; +} + +.footer-info .flex.col { + min-width: 250px; +} + +footer { + position:relative; +} + +.copyright { + background: #00000055; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + padding: 1rem; + text-align: center; } \ No newline at end of file -- cgit v1.1