126 lines
2.2 KiB
CSS
126 lines
2.2 KiB
CSS
|
|
.super-cesium-timeline-main {
|
|
position: relative;
|
|
left: 0;
|
|
bottom: 0;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
border: solid 1px rgb(0, 176, 194);
|
|
}
|
|
|
|
.super-cesium-timeline-trackContainer {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
overflow: auto;
|
|
border-top: solid 1px rgb(0, 176, 194);
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.super-cesium-timeline-tracks {
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.super-cesium-timeline-needle {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 3.0em;
|
|
bottom: 0;
|
|
width: 1px;
|
|
background: rgba(41, 247, 254, 1);
|
|
}
|
|
|
|
.super-cesium-timeline-bar {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
left: 0;
|
|
top: 0;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
width: 100%;
|
|
height: 3.0em;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
}
|
|
|
|
.super-cesium-timeline-ruler {
|
|
/* NOTE: The label and the ruler must use the same font/size */
|
|
visibility: hidden;
|
|
white-space: nowrap;
|
|
font-size: 80%;
|
|
z-index: -200;
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.super-cesium-timeline-highlight {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
/*background: #08f;*/
|
|
}
|
|
|
|
.super-cesium-timeline-ticLabel {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
white-space: nowrap;
|
|
font-size: 80%;
|
|
color: rgb(1, 202, 222);
|
|
display: inline-block;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.super-cesium-timeline-ticMain {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 1px;
|
|
/*height: 50%;*/
|
|
height: 60%;
|
|
background: rgba(3, 189, 207, 1);
|
|
}
|
|
|
|
.super-cesium-timeline-ticSub {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 1px;
|
|
/*height: 33%;*/
|
|
height: 42%;
|
|
background: rgba(1, 152, 166, 1);
|
|
}
|
|
|
|
.super-cesium-timeline-ticTiny {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 1px;
|
|
/*height: 25%;*/
|
|
height: 30%;
|
|
background: rgba(1, 152, 166, 1);
|
|
}
|
|
|
|
.super-cesium-timeline-icon16 {
|
|
box-sizing: border-box;
|
|
display: block;
|
|
position: absolute;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 16px solid rgba(41, 247, 254, 1);
|
|
border-left: 8px solid transparent;
|
|
border-right: 8px solid transparent;
|
|
/*width: 16px;*/
|
|
/*height: 16px;*/
|
|
/*background-image: url("data/images/TimelineIcons.png");*/
|
|
/*background-repeat: no-repeat;*/
|
|
}
|