diff options
author | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-16 14:56:56 -0700 |
---|---|---|
committer | Elizabeth Hunt <elizabeth.hunt@simponic.xyz> | 2023-11-16 14:56:56 -0700 |
commit | ec2b924fdac0b609c2bda4e857113674965732af (patch) | |
tree | 1997edfae1227bbee0654a6ca05c2c2585e89c20 /godel/css/styles.css | |
parent | 30f9f2bc185b88669030f7b1a433d79c39c9f1bf (diff) | |
download | simponic.xyz-ec2b924fdac0b609c2bda4e857113674965732af.tar.gz simponic.xyz-ec2b924fdac0b609c2bda4e857113674965732af.zip |
godel init foo
Diffstat (limited to 'godel/css/styles.css')
-rw-r--r-- | godel/css/styles.css | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/godel/css/styles.css b/godel/css/styles.css new file mode 100644 index 0000000..8820b40 --- /dev/null +++ b/godel/css/styles.css @@ -0,0 +1,60 @@ +* { + margin: 0; +} + +button { + background: #bbbbbb; + border: 1px solid white; + border-radius: 0.2rem; + padding: 0.3rem; + display: inline-block; + cursor: pointer; +} + +button:hover { + background: #cccccc; +} + +body { + font-family: "Trebuchet MS", sans-serif; + background-color: #aaaaaa; +} + +.container { + display: flex; + width: 90%; + margin-left: auto; + margin-right: auto; + flex-direction: column; + gap: 1rem; + + padding: 2rem; +} + +.textarea-container { + display: flex; + flex-direction: column; + gap: 1rem; + box-shadow: 5px 5px 5px #666666; + border: 2px solid white; + border-radius: 0.25rem; + padding: 1rem; +} + +textarea { + border-radius: 0.25rem; + height: 50vh; +} + +.error { + color: red; +} + +.success { + color: green; +} + +hr { + border-top: 2px solid black; + border-bottom: none; +} |