Skip to content

Commit

Permalink
Merge pull request #191 from ananya-dhiman/scroll
Browse files Browse the repository at this point in the history
Scroll and other changes
  • Loading branch information
thevirengarg authored Jun 12, 2024
2 parents d759e2e + e3bf74e commit 4062925
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 21 deletions.
Binary file modified 1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 26 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,32 @@
background-repeat: no-repeat;
background-size: 100%;
background-attachment: fixed;
}

}
/* Custom Scrollbar Styles */
::-webkit-scrollbar {
width: 10px;

}

::-webkit-scrollbar-track {
background: #000;
}

::-webkit-scrollbar-thumb {
background-color: #d61c1c;
border: 1px solid black;
border-radius: 10px;
transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
outline: none;
border-color: red;
border-radius: 10px;
box-shadow: 0 0 10px darkred;
}


#homecontent {
display: flex;
Expand Down
22 changes: 2 additions & 20 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ body {
margin: 0;
font-family: sans-serif;
font-size: 10px;
overflow: hidden;
}

button {
Expand Down Expand Up @@ -471,24 +472,6 @@ a {
color: #fff;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #000;
}

::-webkit-scrollbar-thumb {
background-color: #e82e2e;
border-radius: 10px;
transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
background-color: rgb(216, 0, 0);
}

@media (max-width: 425px){
.pop-up{
Expand All @@ -509,8 +492,6 @@ a {
border-radius: 20px;
}
}
background-color: rgb(216, 0, 0);
}


@media (max-width: 1024px) {
Expand Down Expand Up @@ -653,3 +634,4 @@ a {
#feedbackButton:hover {
background-color: #ff3333;
}
}

0 comments on commit 4062925

Please sign in to comment.