69 lines
1.1 KiB
CSS
69 lines
1.1 KiB
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;
|
|
}
|
|
|
|
.search_form {
|
|
display: flex;
|
|
width: 70%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.search_form input[name="search"] {
|
|
flex-grow: 1;
|
|
margin-left: .5em;
|
|
height: 2em;
|
|
box-sizing: border-box;
|
|
font-size: 1.25em;
|
|
}
|
|
|
|
.search_form input[type="submit"] {
|
|
flex-grow: 0;
|
|
height: 2em;
|
|
width: 2em;
|
|
text-align: middle;
|
|
box-sizing: border-box;
|
|
font-size: 1.25em;
|
|
}
|