Skip to content

Commit

Permalink
Merge pull request #95 from software-students-spring2024/search-ui
Browse files Browse the repository at this point in the history
Search Bar UI Change
  • Loading branch information
shriyakalakata authored Mar 7, 2024
2 parents a52eb0a + 176478a commit 3d8b0c4
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions static/css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
Color Scheme
Pink: e1948d
White: fafafa
Brown: 5e4d47
Grey-Brown: 7d6f6b
Pink-Brown: 7F5F59
*/

body {
font-family: sans-serif;
background: #5e4d47;
Expand Down Expand Up @@ -227,15 +238,22 @@ p a{
}

#searchBar {
width: 90%;
width: 92%;
padding: 15px;
font-size: 25px;
font-size: 35px;
border-radius: 5px;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
margin: auto;
color: #fafafa;
background-color: #7d6f6b;
}
#searchBar::placeholder {
font-weight: bold;
opacity: 0.5;
color: #d2c1bd;
}

.text-card {
Expand Down

0 comments on commit 3d8b0c4

Please sign in to comment.