Spaces:
Paused
Paused
File size: 1,192 Bytes
bd903ab cf28477 bd903ab cf28477 bd903ab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
div {
/* color: #0000006d; */
}
/* Customize the scrollbar track */
::-webkit-scrollbar {
width: 8px; /* Width of the scrollbar */
}
/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
background: #959595; /* Color of the scrollbar thumb */
border-radius: 5px; /* Rounded corners for the thumb */
margin: 2px 4px;
}
/* Change the color when hovering over the scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
background: #717171;
}
::-webkit-scrollbar-track {
background: #0f0f0f; /* Change this color to the desired color */
}
.youtube-video {
width: 860px;
height: 485px;
}
.react-player{
width: 100%;
height: 800;
}
/* Hide scrollbar on mobile screens */
@media (max-width: 767px) {
.youtube-video {
width: 100%;
height: 300px;
}
.react-player{
width: 100%;
height: 22vh;
}
.hidden-scrollbar {
overflow-x: auto;
/* hide scrollbar for IE, Edge and Firefox */
-ms-overflow-style: none;
scrollbar-width: none;
}
/* hide scrollbar for chrome, safari and opera */
.hidden-scrollbar::-webkit-scrollbar {
display: none;
}
::-webkit-scrollbar {
width: 0px; /* Width of the scrollbar */
}
}
|