From 56e3c0d41dac5a7a11e60868f199ac20ac36c86c Mon Sep 17 00:00:00 2001 From: tokmak0 <112181684+tokmak0@users.noreply.github.com> Date: Thu, 8 Sep 2022 15:05:51 +0300 Subject: [PATCH] Update search.css --- public/css/search.css | 30 +++++++++++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/public/css/search.css b/public/css/search.css index af0f326..0b0e845 100644 --- a/public/css/search.css +++ b/public/css/search.css @@ -1,3 +1,27 @@ -.search { - padding: 10px; -} \ No newline at end of file +.title { + color: var(--main); + font-weight: 700; +} + +form { +display: flex; +align-items: center; +flex-direction: column; +max-width: 500px; +margin: 20px auto; +width: 100%; +padding: 10px; +box-shadow: 0 0 5px 0 #b0b0b0; +} + + +.input { + padding: 8px 10px; + font-family: inherit; + display: block; + font-weight: 600; + color: var(--input-clr); + width: 100%; + margin-bottom: 10px; + border: 2px solid var(--borders); +}