Skip to content

Commit

Permalink
Improve element's contrast
Browse files Browse the repository at this point in the history
  • Loading branch information
wlsf82 committed May 30, 2024
1 parent 133bb71 commit 3c31424
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ body {
}

h1, h2, h3 {
color: #007BFF;
color: #0053B3;
}

h1 {
Expand All @@ -24,7 +24,7 @@ h1 {
}

#ingredients-label {
color: #0056B3;
color: #003470;
}

#filter-container, #search-container {
Expand All @@ -37,7 +37,7 @@ h1 {
select, input[type="text"], button {
font-size: 1rem;
padding: 8px 10px;
border: 1px solid #007BFF;
border: 1px solid #0053B3;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 123, 255, 0.1);
width: 100%;
Expand All @@ -50,19 +50,19 @@ label {
}

select:hover, input[type="text"]:hover, button:hover {
border-color: #0056b3;
border-color: #003470;
box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

button {
background-color: #007bff;
background-color: #0053B3;
color: white;
cursor: pointer;
transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

button:hover {
background-color: #0056b3;
background-color: #003470;
}

button:active {
Expand All @@ -73,7 +73,7 @@ ul {
list-style: none;
padding-left: 0;
margin-top: 20px;
border-left: 3px solid #007BFF;
border-left: 3px solid #0053B3;
padding-left: 20px;
background-color: #f8f9fa;
box-shadow: 2px 2px 8px rgba(0, 123, 255, 0.1);
Expand Down

0 comments on commit 3c31424

Please sign in to comment.