2026-03-03 22:51:42 +02:00
|
|
|
@import url("./common.css");
|
|
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
|
|
|
|
|
& tbody tr:hover {
|
|
|
|
|
background-color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& td,
|
|
|
|
|
& td:first-child {
|
2026-03-04 01:13:06 +02:00
|
|
|
position: relative;
|
2026-03-03 22:51:42 +02:00
|
|
|
border: 0px;
|
|
|
|
|
height: 33px;
|
|
|
|
|
text-shadow: 2px 2px #000;
|
|
|
|
|
|
|
|
|
|
&.finisher {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background-color: var(--bg-light-color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-04 01:13:06 +02:00
|
|
|
.path {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -38px;
|
|
|
|
|
left: -50%;
|
|
|
|
|
font-size: 100px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
clip-path: circle(22% at 155px 60px);
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
content: "─";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
|
/* top: -56px; */
|
|
|
|
|
z-index: 1;
|
|
|
|
|
&::after {
|
|
|
|
|
content: "└";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
|
/* top: -20px; */
|
|
|
|
|
z-index: 1;
|
|
|
|
|
&::after {
|
|
|
|
|
content: "┌";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#finisher-details {
|
2026-03-03 22:51:42 +02:00
|
|
|
text-align: center;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
margin-top: 16px;
|
|
|
|
|
text-shadow: 2px 2px #000;
|
|
|
|
|
}
|
2026-03-04 01:13:06 +02:00
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
table {
|
|
|
|
|
width: 200%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#finisher-details {
|
|
|
|
|
width: 200%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.path {
|
|
|
|
|
top: 5px;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
clip-path: none;
|
|
|
|
|
}
|
|
|
|
|
}
|