Skip to content

Commit

Permalink
Merge pull request #1125 from PradnyaGaitonde/main
Browse files Browse the repository at this point in the history
Styled the "Sort by fee" button
  • Loading branch information
varshith257 authored Aug 8, 2024
2 parents 1b95630 + 6c0b788 commit 39e86fb
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion Html-Files/Doctor-Experience.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,25 @@
margin-left: 40px;
}

.custom-button1 {
position: relative;
background-color: #3fbcc0a6;
color: white;
border: 2px solid #000;
border-radius: 10px;
overflow: hidden;
transition: color 0.3s ease;
z-index: 1;
padding: 8px 12px; /* Adjust padding to make the button bigger */
font-size: 14px;
margin-top: -10px;
}

#sort-btn {
margin-left: 10px; /* Adjust the value to increase or decrease the space */
margin-right: 10px;
}

.filters {
display: flex;
justify-content: center;
Expand Down Expand Up @@ -152,7 +171,7 @@ <h1>Find a Doctor</h1>
<input type="range" id="fee-filter" min="0" max="1000" step="50" value="500" style="height: 35px; background-color: #ecf0f1;">
<span id="fee-value" style="color: #4bb6b7; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 25px;">1000</span>

<button id="sort-btn" style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">Sort by Fee</button>
<button id="sort-btn" class="custom-button1" style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">Sort by Fee</button>
</div>
</header>

Expand Down

0 comments on commit 39e86fb

Please sign in to comment.