Skip to content

Commit

Permalink
Tried to apply suggested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
harshitagupta022 committed Jun 4, 2024
1 parent 56a33f1 commit f795a52
Show file tree
Hide file tree
Showing 8 changed files with 1,417 additions and 59 deletions.
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion Css-Files/bloodstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ margin-top: -18px;
display: inline-block;
line-height: 1px;
transition: 0.3s;
transform: translateY(400px);
transform: translateY(-100px);


}
Expand Down
97 changes: 97 additions & 0 deletions Css-Files/doctor.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,102 @@ body{
padding: 40px 0;
border-radius: 20px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background-color: #f8f8f8;
}

.logo {
height: 40px;
}

.header-buttons button {
margin-left: 10px;
padding: 5px 10px;
}

.calendar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #f3f3f3;
padding: 10px;
border-bottom: 1px solid #ccc;
}

.nav-button {
background-color: #007bff;
color: #fff;
border: none;
padding: 5px 10px;
cursor: pointer;
}

.month {
font-size: 20px;
font-weight: bold;
}

.dates {
display: flex;
gap: 10px;
}

.date1, .date2, .date3, .date4, .date5, .date6, .date7, .date8, .date9, .date10, .date11, .date12 {
background-color: #fff;
padding: 10px;
cursor: pointer;
border: 1px solid #ccc;
}

.date:hover {
background-color: #007bff;
color: #fff;
}

.schedule {
padding: 20px;
}

.consultation {
margin-top: 20px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f9f9f9;
}

.consultation h3 {
margin: 0;
}

.consultation p {
margin: 5px 0;
}

.consult-button {
background-color: #007bff;
color: #fff;
border: none;
padding: 5px 10px;
cursor: pointer;
margin-top: 10px;
display: inline-block;
}

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

footer {
display: flex;
justify-content: space-around;
padding: 10px;
background-color: #f8f8f8;
}
.card{
border-radius: 25px;
background-color: #FFf;
Expand Down Expand Up @@ -101,6 +197,7 @@ transition: all 0.3s ease;
.button:hover{
background: #02969bd5;
}

.swiper-navBtn{
color: white;
}
Expand Down
Binary file added Html-Files/.DS_Store
Binary file not shown.
1,360 changes: 1,314 additions & 46 deletions Html-Files/doc.html

Large diffs are not rendered by default.

Binary file added Html-Files/images/doctor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ <h2>Doctors</h2>
</div>
<div class="container">

<div class="row">
<div class="column">

<div class="col-lg-6">
<div class="member d-flex align-items-start">
Expand Down
15 changes: 4 additions & 11 deletions js/script.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
var swiper = new Swiper(".slide-content", {
slidesPerView: 3,
spaceBetween: 25,
var swiper = new Swiper(".swiper", {
loop: true,
centerSlide: true,
fade: true,
Expand All @@ -17,12 +15,7 @@ var swiper = new Swiper(".slide-content", {
breakpoints:{
0:{
slidesPerView: 1,
},
520:{
slidesPerView: 2,
},
950:{
slidesPerView: 3,
},
}
},
});
});

0 comments on commit f795a52

Please sign in to comment.