Skip to content

Commit

Permalink
Merge pull request #26 from minhaj-313/main
Browse files Browse the repository at this point in the history
Add Scroll bar css & Favicon
  • Loading branch information
numcys authored Oct 5, 2022
2 parents 5576a7c + 4c407fb commit dbc6b8b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -226,3 +226,24 @@ footer ul {
}
}

/* scroll bar */


::-webkit-scrollbar {
width: 7px;
background-color: rgb(223, 242, 255);
}

::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgba(199, 199, 199, 0.263);
border-radius: 5px;
}

::-webkit-scrollbar-thumb {
background: #000000;
border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
background: rgb(83, 138, 220);
}
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project</title>
<link rel="icon" type="image/x-icon" href="img/online-shop.jpg">
<link rel="stylesheet" href="css/style.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/27551d6060.js" crossorigin="anonymous"></script>
Expand Down

0 comments on commit dbc6b8b

Please sign in to comment.