From db93aa089c720c258ac30c91a2bf8814e4d19e79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96zen=C3=A7=20Bilgili?= Date: Thu, 16 Jan 2020 03:14:52 +0300 Subject: [PATCH] Improved responsivity --- css/style.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index 7a91794..3ac74d4 100644 --- a/css/style.css +++ b/css/style.css @@ -243,6 +243,10 @@ body.form .search-form { } @media (min-width: 500px) { + .help { + display: flex; + padding: 0; + } .clock { font-size: 6rem; } @@ -256,12 +260,10 @@ body.form .search-form { } .categories { - display: flex; - grid-template-columns: 250px 175px; + display: grid; + grid-template-columns: repeat(1, 50%) 50%; justify-content: space-around; } - - } @media (min-width: 1000px) { @@ -283,6 +285,7 @@ body.form .search-form { } .categories { + display: flex; grid-template-columns: repeat(2, 300px) 175px; } }