From 3110e0e5130b9f9b5a832cf0d6ad9d46490003ad Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 21 Feb 2024 22:41:07 -0600 Subject: initial commit --- static/styles.css | 62 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 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..be2d307 --- /dev/null +++ b/static/styles.css @@ -0,0 +1,62 @@ +body { + font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, + segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, + arial, sans-serif; + overflow-x: hidden; + margin: 0; + padding: 0; +} + +form { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +div { + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; + width: 100vw; +} + +label { + text-align: center; + width: 20%; +} + +.spacer { + width: 60%; +} + +button { + border: none; + border-radius: 0; + padding: 0.75rem; + width: 20%; +} + +textarea { + background-color: inherit; + border: none; + border-radius: 0; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + resize: none; + outline: none; + + height: 100vh; + width: 100vw; + max-height: 100vw; + max-width: 90vw; + margin: 0 auto; + padding: 1.5rem; +} + +:modal { + height: 90vh; + width: 90vw; +} -- cgit v1.2.3