2025-02-22 13:35:35 +00:00
|
|
|
.tlv-years {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
column-gap: 0.5rem;
|
|
|
|
|
color: var(--text-normal);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tlv-timeline {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 3px;
|
|
|
|
|
margin: 0.8rem 0 0.6rem 0;
|
|
|
|
|
background-color: var(--color-base-30);
|
|
|
|
|
}
|
|
|
|
|
.tlv-timeline-highlight {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background-color: var(--color-accent);
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-06 10:58:41 +00:00
|
|
|
.tlv-marker,
|
|
|
|
|
.tlv-span {
|
2025-02-22 13:35:35 +00:00
|
|
|
position: absolute;
|
2025-04-06 10:58:41 +00:00
|
|
|
background-color: var(--color-base-50);
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
.tlv-marker {
|
2025-02-22 13:35:35 +00:00
|
|
|
top: -5px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
height: 12px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
transform: translateX(-50%);
|
2025-04-06 10:58:41 +00:00
|
|
|
z-index: 3;
|
|
|
|
|
}
|
|
|
|
|
.tlv-span {
|
|
|
|
|
top: -1px;
|
|
|
|
|
height: 5px;
|
|
|
|
|
border-radius: 6px;
|
2025-02-22 13:35:35 +00:00
|
|
|
z-index: 2;
|
2025-04-06 10:58:41 +00:00
|
|
|
background-color: var(--color-base-60);
|
2025-02-22 13:35:35 +00:00
|
|
|
}
|
2025-04-06 10:58:41 +00:00
|
|
|
.tlv-span h4.tlv-date-title,
|
2025-02-22 13:35:35 +00:00
|
|
|
.tlv-marker h4.tlv-date-title {
|
|
|
|
|
margin-block-start: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tlv-popup.popover.hover-popover {
|
|
|
|
|
display: none;
|
|
|
|
|
top: 1.8rem;
|
|
|
|
|
padding: var(--size-4-3);
|
|
|
|
|
}
|