diff options
Diffstat (limited to 'frontend/src/css/index.css')
| -rw-r--r-- | frontend/src/css/index.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css index 3ef5b53..9a5a149 100644 --- a/frontend/src/css/index.css +++ b/frontend/src/css/index.css @@ -14,21 +14,28 @@ 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-bottom: 1.5em; +} + +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; } |