From a7a9c3e9f57cee17f9bf72fc0b7758fcf2aa7260 Mon Sep 17 00:00:00 2001 From: PrestonT500 Date: Wed, 18 Sep 2024 19:59:00 -0700 Subject: [PATCH] Moved searchbar css to separate css file for posible future use --- css/index.css | 14 -------------- css/searchbar.css | 15 +++++++++++++++ index.html | 1 + 3 files changed, 16 insertions(+), 14 deletions(-) create mode 100644 css/searchbar.css diff --git a/css/index.css b/css/index.css index b8a5320..5a974e2 100644 --- a/css/index.css +++ b/css/index.css @@ -126,17 +126,3 @@ button:hover { width: 20px; height: 20px; } - -.search-container { - text-align: center; - margin: 20px 0; - } - - #search-bar { - margin: 0 auto; - padding: 10px; - border: 1px solid #ccc; - border-radius: 4px; - width: 50%; - max-width: 400px; - } \ No newline at end of file diff --git a/css/searchbar.css b/css/searchbar.css new file mode 100644 index 0000000..a07334e --- /dev/null +++ b/css/searchbar.css @@ -0,0 +1,15 @@ + +.search-container { + text-align: center; + margin: 20px 0; + } + + #search-bar { + margin: 0 auto; + padding: 10px; + border: 1px solid #ccc; + border-radius: 4px; + width: 50%; + max-width: 400px; + } + \ No newline at end of file diff --git a/index.html b/index.html index 43dbe69..fd8cb7a 100644 --- a/index.html +++ b/index.html @@ -8,6 +8,7 @@ +