44 lines
720 B
CSS
44 lines
720 B
CSS
|
.timecontrol {
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
|
||
|
.tc-scrollbar__wrapper,
|
||
|
.time-control {
|
||
|
width: 70%;
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.tc-scrollbar__bar {
|
||
|
width: 100%;
|
||
|
height: 20px;
|
||
|
border-left: 2px solid black;
|
||
|
border-right: 2px dotted black;
|
||
|
position: relative;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.tc-scrollbar__bar:before {
|
||
|
content: "";
|
||
|
display: block;
|
||
|
float: left;
|
||
|
width: 150%;
|
||
|
width: 100%;
|
||
|
height: 1px;
|
||
|
background-color: black;
|
||
|
position: relative;
|
||
|
top: calc(50% - .5px);
|
||
|
}
|
||
|
|
||
|
.tc-scrollbar__scroller {
|
||
|
height: 100%;
|
||
|
width: 20px;
|
||
|
box-sizing: border-box;
|
||
|
border: 3px solid black;
|
||
|
border-radius: 50%;
|
||
|
background-color: white;
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
}
|