Skip to content

Commit 2440438

Browse files
authored
Merge pull request #53 from PranavBarthwal/scrollbar
Scrollbar
2 parents 826a745 + 059a99d commit 2440438

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

style.css

+20
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,32 @@ body{
44
position: relative;
55
}
66

7+
::-webkit-scrollbar {
8+
width: 20px;
9+
height: 12px;
10+
}
11+
12+
::-webkit-scrollbar-track{
13+
background-image: linear-gradient(to right top, #008793, #00bf72);
14+
}
15+
16+
17+
::-webkit-scrollbar-thumb {
18+
background: rgb(178, 180, 174);
19+
border-radius: 15px;
20+
}
21+
22+
::-webkit-scrollbar-thumb:hover {
23+
background: #6e6f6d;
24+
}
25+
726
.navbar-brand {
827
font-family: "Dancing Script";
928
font-weight: bolder;
1029
font-size: 30px;
1130
background-image: linear-gradient(to right top, #008793, #00bf72, #a8eb12);
1231
-webkit-background-clip: text;
32+
background-clip: text;
1333
-webkit-text-fill-color: transparent;
1434
}
1535

0 commit comments

Comments
 (0)