From 7c6e1b73e3552b3972294638b4c23685525e0b44 Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 17 Oct 2020 13:33:15 +0200 Subject: [PATCH] better looking inputs and fix textarea text --- index.html | 3 +-- style.css | 14 +++++++++----- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 22af64a..a0e852d 100644 --- a/index.html +++ b/index.html @@ -35,8 +35,7 @@

BMI App



- diff --git a/style.css b/style.css index 9d77ce4..6003657 100644 --- a/style.css +++ b/style.css @@ -28,12 +28,10 @@ body{ } #heading_div{ position: relative; - border:1px solid grey; border-radius: 20px; background-color: #EBEBEB; padding: 5px 5px; text-align: center; - } #input_div { @@ -62,7 +60,13 @@ body{ margin-top: 10px; } -#feedback_div > textarea{ - border: 2px solid grey; - + +input, +textarea { + border: none; + padding: 0.3em; +} + +textarea { + width: 100%; } \ No newline at end of file