diff options
| author | Ryan Mehri <[email protected]> | 2020-05-10 10:06:17 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-10 10:06:17 -0600 |
| commit | b63c59506439652354d2ae93796732039156dc32 (patch) | |
| tree | be456f581edcf40a4d95337346313fed26b3b8b9 /frontend/src/css | |
| parent | Merge pull request #7 from jackyzha0/react (diff) | |
| parent | input length check and component splitting (diff) | |
| download | ctrl-v-b63c59506439652354d2ae93796732039156dc32.tar.xz ctrl-v-b63c59506439652354d2ae93796732039156dc32.zip | |
Merge pull request #8 from jackyzha0/react
more react changes
Diffstat (limited to 'frontend/src/css')
| -rw-r--r-- | frontend/src/css/index.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css index 3ef5b53..902a096 100644 --- a/frontend/src/css/index.css +++ b/frontend/src/css/index.css @@ -14,23 +14,31 @@ form { width: 100%; } -textarea { +textarea, input[type=text] { width: 100%; - height: 60vh; font-family: 'Roboto Mono', monospace; font-size: 0.8em; padding: 0.8em; border-radius: 3px; border: 1px solid #565656; outline: none; + margin: 1.2em 0; +} + +textarea { + height: 50vh; +} + +a { + color: #111111; } input[type=submit] { font-family: 'Lora', serif; font-weight: 700; - margin: 1.5em 0; color: #faf9f5; background-color: #111111; + padding: 0.75em 2em; } input[type=submit]:focus { |