forked from partypages/party-template
33 lines
491 B
CSS
33 lines
491 B
CSS
:root {
|
|
--fg: red;
|
|
--bg: black;
|
|
--accent: white;
|
|
--mute: gray;
|
|
}
|
|
svg {
|
|
background-color: var(--bg);
|
|
}
|
|
.timeline {
|
|
stroke: var(--fg);
|
|
fill: none;
|
|
stroke-width: 1px;
|
|
stroke-dasharray: 314px 314px;
|
|
stroke-dashoffset: -314px;
|
|
}
|
|
.time {
|
|
stroke: var(--accent);
|
|
fill: none;
|
|
stroke-width: 0.1px;
|
|
}
|
|
.h0 {
|
|
stroke-width: 1px;
|
|
}
|
|
.h3 {
|
|
stroke-width: 0.4px;
|
|
}
|
|
.timeline-mute {
|
|
stroke: var(--mute);
|
|
fill: none;
|
|
stroke-width: 0.5px;
|
|
}
|