Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed scroll bar according to theme of project. #114

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Pages/hollysongs.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@

<!-- Font Awesome Kit -->
<script src="https://kit.fontawesome.com/32ceed9cc4.js" crossorigin="anonymous"></script>

<!-- scrollbar css link -->
<link rel="stylesheet" href="../Swetify-Music/Srollbar_style/style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous" />
Expand Down
40 changes: 40 additions & 0 deletions Srollbar_style/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
::-webkit-scrollbar {
width: 12px;
}

::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, #eea600, #e44724);
border-radius: 6px;
animation: flicker 0.2s infinite alternate;
}

::-webkit-scrollbar-track {
background-color: #0f3057;
}

body {
overflow-y: scroll;
}

body::-webkit-scrollbar {
width: thin;
}

body::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, #eea600, #e44724);
border-radius: 6px;
animation: flicker 0.2s infinite alternate;
}

body::-webkit-scrollbar-track {
background-color: #0f3057;
}

@keyframes flicker {
0% {
background: linear-gradient(to bottom, #eea600, #e44724);
}
100% {
background: linear-gradient(to bottom, #eea600, #e44724, #eea600);
}
}
3 changes: 2 additions & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/homepage/swetifylogo.jpg" />

<!-- scrollbar css link -->
<link rel="stylesheet" href="../Swetify-Music/Srollbar_style/style.css">
<!-- Font Awesome Kit -->
<script src="https://kit.fontawesome.com/32ceed9cc4.js" crossorigin="anonymous"></script>

Expand Down
3 changes: 2 additions & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/homepage/swetifylogo.jpg" />

<!-- scrollbar css link -->
<link rel="stylesheet" href="../Swetify-Music/Srollbar_style/style.css">
<!-- Font Awesome Kit -->
<script src="https://kit.fontawesome.com/32ceed9cc4.js" crossorigin="anonymous"></script>

Expand Down
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="homepage/Favicon.ico">

<!-- scrollbar css link -->
<link rel="stylesheet" href="../Swetify-Music/Srollbar_style/style.css">
<!-- Font Awesome Kit -->
<script src="https://kit.fontawesome.com/32ceed9cc4.js" crossorigin="anonymous"></script>

Expand Down