Skip to content

Commit

Permalink
Merge branch 'main' into abouthover
Browse files Browse the repository at this point in the history
  • Loading branch information
varshith257 authored Aug 8, 2024
2 parents bbeafde + feeb693 commit 2586038
Show file tree
Hide file tree
Showing 9 changed files with 1,450 additions and 633 deletions.
1,230 changes: 621 additions & 609 deletions Html-Files/Css-Files/Experiencestyle.css

Large diffs are not rendered by default.

35 changes: 17 additions & 18 deletions Html-Files/Doctor Experience.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,25 +52,25 @@
}

#doctor-list li {
border: 2px solid #4bb6b7;
/* border: 2px solid #4bb6b7; */
border-radius: 20px;
padding: 30px;
margin: 20px 0;
background-color: #2c3e50;
background-color: #1c413b;
font-family: 'Cambria', Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 25px;
color: #ecf0f1;
display: flex;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin:30px;
width: 96%;
width: 44.5%;
}

#doctor-list li .content {
flex-grow: 1;
padding-right: 20px;
margin-left: 50px;
margin-left: 10px;
}

#doctor-list li .content h4 {
Expand Down Expand Up @@ -124,16 +124,15 @@
</div>
<nav class="nav_menu">
<ul class="nav_link vis-h">
<li><a href="../index.html"><i class="bi bi-house-door-fill"></i>Home</a></li>
<li><a href="../index.html#about"><i class="bi bi-info-circle-fill"></i>About</a></li>
<li><a href="../news.html"><i class="bi bi-newspaper"></i>News</a></li>

<li><a href="../dex.html"><i class="bi bi-gear"></i>Service</a></li>
<li><a href="../index.html#patient-portal"><i class="bi bi-person"></i>Patient Portal</a></li>
<li><a href="../index.html"><i class="bi bi-house-door-fill"></i> Home</a></li>
<li><a href="../index.html#about"><i class="bi bi-info-circle-fill"></i> About</a></li>
<li><a href="../news.html"><i class="bi bi-newspaper"></i> News</a></li>
<li><a href="../dex.html"><i class="bi bi-gear"></i> Service</a></li>
<li><a href="../index.html#patient-portal"><i class="bi bi-person"></i> Patient Portal</a></li>
<li><a href="Html-Files/appointment.html"><i class="bi bi-person"></i> Appointment</a></li>
<li><a href="../index.html#doctors"><i class="bi bi-person-circle"></i>Doctor</a></li>
<li><a href="../index.html#contact"><i class="bi bi-telephone"></i>Contact us</a></li>
<li><a href="../login.html"><i class="bi bi-box-arrow-right"></i>Sign in/Sign up</a></li>
<li><a href="../index.html#doctors"><i class="bi bi-person-circle"></i> Doctor</a></li>
<li><a href="../index.html#contact"><i class="bi bi-telephone"></i> Contact us</a></li>
<li style="margin-right: 20px;"><a href="../login.html"><i class="bi bi-box-arrow-right"></i> Sign in/Sign up</a></li>
</ul>
<div class="hamburger">
<div class="line"></div>
Expand All @@ -147,18 +146,18 @@
<h1>Find a Doctor</h1>
<div class="filter-sort">
<label for="experience-filter" style="color: #4bb6b7; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 25px;">Experience:</label>
<select id="experience-filter" style="height: 35px; background-color: #ecf0f1;">
<select id="experience-filter" class="btn2" style="height: 35px; width: 130px; border: none; border-radius: 5px; padding: 5px;">
<option value="" style="font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;">All</option>
<option value="5">5+ years</option>
<option value="10">10+ years</option>
<option value="15">15+ years</option>
</select>

<label for="fee-filter" style="color: #4bb6b7; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 25px;" class="min">Minimum Fee:</label>
<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>
<input type="range" id="fee-filter" min="0" max="1000" step="50" value="500" style="height: 35px; margin-top: 8px;">
<span id="fee-value" style="color: #4bb6b7; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-size: 25px; margin-right: 20px;">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="sort-btn" style="font-family: Arial, Helvetica, sans-serif; width: 130px; height: 35px; margin-left: 10px; margin-right: 10px; border: none;">Sort by Fee</button>
</div>
</header>

Expand Down Expand Up @@ -625,4 +624,4 @@ <h4>${doctor.name}</h4>
</script>
<script src="./experience.js"></script>
</body>
</html>
</html>
31 changes: 31 additions & 0 deletions assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -883,3 +883,34 @@ footer {
#back-to-top:hover {
transform: scale(1.1);
}


@media (max-width: 768px) {
#back-to-top-container {
right: 15px;
}
.app__container{
display: flex !important;
flex-direction: column !important;
align-items: center !important;
justify-content: center !important;

}
.app__buttons{
display: flex !important;
flex-direction: column !important;
align-items: center !important;


}

.app__buttons button{
margin: 10px 0 !important;
}
.app__buttons button:hover{
background-color: #55a5ea !important;
color: black !important;
}


}
1 change: 1 addition & 0 deletions checkup.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ body {
#services {
text-align: center;
display: flex;
max-width: 100%;
justify-content: center;

}
Expand Down
2 changes: 1 addition & 1 deletion dex.html
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ <h4>Quick Links</h4><br>
<h4>Explore</h4><br>
<ul class="links">
<li><a href="Html-Files/appointment.html">Appointment</a></li>
<li><a href="index.html#patient-portal">Patient Portal</a></li>
<li><a href="portal.html">Patient Portal</a></li>
<li><a href="login.html">Login account</a></li>
<li><a href="#">Helplines</a></li>
<li><a href="index.html#contact">Location</a></li>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ <h4>Quick Links</h4><br>
<h4>Explore</h4><br>
<ul class="links">
<li><a href="Html-Files/appointment.html">Appointment</a></li>
<li><a href="index.html#patient-portal">Patient Portal</a></li>
<li><a href="portal.html">Patient Portal</a></li>
<li><a href="log/login.html">Login account</a></li>
<li><a href="#">Helplines</a></li>
<li><a href="index.html#contact">Location</a></li>
Expand Down
10 changes: 8 additions & 2 deletions news.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@
margin: 4px 4px;
background-color: white;
}

.img p{
display: none;
}
@media only screen and (max-width: 820px) {
.hamburger {
display: block;
Expand Down Expand Up @@ -145,8 +147,11 @@
.vis-h {
opacity: 0;
}

.img img{
display: none;
}
.img p {
display: block;
position: relative;
left: 300px;
bottom: 0px;
Expand Down Expand Up @@ -528,6 +533,7 @@
<!-- ############# Header ############# -->
<header class="header_container nav-h">
<div class="img">
<img id="rd-logo" style="width: 90px; height: auto;" src="images/rd.png">
<p style="color: hwb(181 16% 46%); font-size: 1.5rem;margin-top: 5px;">Rapidoc</p>
</div>
<nav class="nav_menu">
Expand Down
Loading

0 comments on commit 2586038

Please sign in to comment.