From d7ec25da4ee8b98acd1951de70fb4d044984bdf5 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sat, 19 Oct 2024 10:22:52 -0700 Subject: Add an extremely cute landing page. --- static/styles.css | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 static/styles.css (limited to 'static/styles.css') diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..8c102d8 --- /dev/null +++ b/static/styles.css @@ -0,0 +1,32 @@ +@font-face { + font-family: 'QuickLove'; + src: url('/static/QuickLove.woff2') format('woff2'), + url('/static/QuickLove.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +body { + background: #f5f5f5; +} + +h1 { + font-size: 70px; + color: #ff69b4; + font-family: 'QuickLove'; +} + +article { + max-width: 800px; + margin: 0 auto 50px; + padding: 20px; + background: #fff0f5; + border: 5px solid #ff69b4; + border-radius: 15px; + box-shadow: 0 0 10px rgba(255, 105, 180, 0.5); +} + +img { + border: 5px solid #ff69b4; + background: white; +} -- cgit v1.3.1