diff options
| author | Christian Cleberg <[email protected]> | 2024-02-21 22:41:07 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2024-02-21 22:41:07 -0600 |
| commit | 3110e0e5130b9f9b5a832cf0d6ad9d46490003ad (patch) | |
| tree | b935dea8ed2b63d3de21e214bb451bb904c3f69d /static/styles.css | |
| download | org-live-3110e0e5130b9f9b5a832cf0d6ad9d46490003ad.tar.gz org-live-3110e0e5130b9f9b5a832cf0d6ad9d46490003ad.tar.bz2 org-live-3110e0e5130b9f9b5a832cf0d6ad9d46490003ad.zip | |
initial commit
Diffstat (limited to 'static/styles.css')
| -rw-r--r-- | static/styles.css | 62 |
1 files changed, 62 insertions, 0 deletions
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; +} |
