diff options
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 { |