Skip to content

Commit

Permalink
final-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
meetarora10 committed Jul 28, 2024
1 parent 9bb9b62 commit 2181d3f
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 7 deletions.
21 changes: 18 additions & 3 deletions Html-Files/Css-Files/Experiencestyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,12 @@ body {
align-items: center;
height: 60px;
margin: auto;
position: fixed;
width: 100vw;
height: 4.8rem;
}
.h{
margin-top: 90px;
}
*,*::after,*::before{
/*padding: 0;
Expand Down Expand Up @@ -357,6 +363,7 @@ align-items: center;
/*? socials */
.social-wrapper {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin: 0 auto;
}
Expand Down Expand Up @@ -419,9 +426,15 @@ align-items: center;
height: 117px;
}
}
@media (max-width:576px) {
.footer-bottom-wrapper{
position: relative;
right: 140px;
}
}
@media screen and (max-width:620px) {
.min,#fee-filter,#fee-value{
right: 450px;
right: 420px;
top: 75px;
}
#sort-btn{
Expand All @@ -446,7 +459,7 @@ align-items: center;
margin-left: 1.5rem;
}
}

@media (max-width: 800px) {
.footer-top {
display: flex;
Expand All @@ -460,6 +473,8 @@ align-items: center;
font-size: 1.5rem
}
#ss{
display: flex;
flex-wrap: wrap;
font-size: 1.3rem;
}
.social-links #insta:hover {
Expand Down Expand Up @@ -563,4 +578,4 @@ align-items: center;
}
#back-to-top:hover {
transform: scale(1.1);
}
}
19 changes: 17 additions & 2 deletions Html-Files/Doctor Experience.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,15 @@
color: aliceblue;
font-size: 30px;
}

#progressBar {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 6px;
background-color: #3fbcc0;
z-index: 9999;
}
</style>
</head>
<body>
Expand All @@ -110,6 +118,7 @@
</div>
<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 Expand Up @@ -253,8 +262,14 @@ <h4>RAPIDOC Newsletter</h4><br>
</svg>
</div>
</div>

<div id="progressBar"></div>
<script>
window.onscroll = function () {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("progressBar").style.width = scrolled + "%";
};
const doctorList = [
{
name: "Dr. Ram",
Expand Down
9 changes: 7 additions & 2 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ option {
margin: 4px 4px;
background-color: white;
}

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

.img img{
display: none;
}
.img p{
display: block;
position: relative;
left: 300px;
bottom: 0;
Expand Down

0 comments on commit 2181d3f

Please sign in to comment.