Commit 4a0fcaaa authored by Patrick's avatar Patrick
Browse files

Test scrollbar

parent 90a0f7fd
...@@ -217,15 +217,57 @@ ...@@ -217,15 +217,57 @@
line-height: 1.6; line-height: 1.6;
} }
#tour-frame::-webkit-scrollbar { /* #tour-frame::-webkit-scrollbar {
/* display: none; */ /* display: none; */
/* width
} */
#tour-frame::-webkit-scrollbar {
width: 10px;
}
/* Track */
#tour-frame::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
#tour-frame::-webkit-scrollbar-thumb {
background: #000000;
}
/* Handle on hover */
#tour-frame::-webkit-scrollbar-thumb:hover {
background: #555;
}
.startcontent::-webkit-scrollbar {
width: 10px;
}
/* Track */
.startcontent::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
.startcontent::-webkit-scrollbar-thumb {
background: #000000;
}
/* Handle on hover */
.startcontent::-webkit-scrollbar-thumb:hover {
background: #555;
} }
/* Hide scrollbar for IE and Edge */ /* Hide scrollbar for IE and Edge */
#tour-frame { #tour-frame {
/* -ms-overflow-style: none; */ /* -ms-overflow-style: none; */
scrollbar-color: #000000 white !important; /* thumb and track color */
scrollbar-width: thin !important;
}
.startcontent {
scrollbar-color: #000000 white !important; /* thumb and track color */
scrollbar-width: thin !important;
} }
#headerOne { #headerOne {
position: fixed; position: fixed;
top: 0; top: 0;
......
...@@ -228,6 +228,8 @@ div.title-fill { ...@@ -228,6 +228,8 @@ div.title-fill {
bottom: 1rem; bottom: 1rem;
left: 0; left: 0;
right: 0; right: 0;
scrollbar-color: #000000 white !important; /* thumb and track color */
scrollbar-width: thin !important;
} }
.tour-top-navi{ .tour-top-navi{
position: relative; position: relative;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment