From 3c3cf8ee496335a5dbb66cd98d27ca56284d1eca Mon Sep 17 00:00:00 2001 From: divakar1526 <134041028+divakar1526@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:19:10 +0530 Subject: [PATCH] Create style.css --- medium3/style.css | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 medium3/style.css diff --git a/medium3/style.css b/medium3/style.css new file mode 100644 index 0000000..3e25da6 --- /dev/null +++ b/medium3/style.css @@ -0,0 +1,27 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&family=Ubuntu:wght@300&display=swap'); +html, body { + height: 100%; + width: 100%; + font-family: 'Roboto', sans-serif; +} + +.button{ + width: 66px; + padding: 20px; + margin: 0 3px; + border: 2px solid black; + border-radius: 9px; + cursor: pointer; +} + +.row{ + margin: 8px 0; +} +.row input{ + width: 291px; + font-size: 20px; + margin: 0; + padding: 10px 0px; + border: 2px solid black; + border-radius: 5px; +}