Files
wehub-resource-sync 979fb22d7c
CI / test (20, macos-latest) (push) Waiting to run
CI / test (20, ubuntu-latest) (push) Waiting to run
CI / test (22, macos-latest) (push) Waiting to run
CI / test (22, ubuntu-latest) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:01:18 +08:00

45 lines
618 B
CSS

.canvas {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
.pause {
position: absolute;
right: 40px;
bottom: 56px;
z-index: 3;
transition: transform 200ms ease;
}
.pause:hover {
transform: scale(1.08);
}
.rail {
position: absolute;
left: 40px;
right: 40px;
bottom: 24px;
height: 1px;
background: rgba(255, 255, 255, 0.2);
}
.rail span {
display: block;
height: 100%;
width: 0;
background: var(--white);
transition: width 60ms linear;
}
@media (max-width: 640px) {
.pause {
right: 20px;
bottom: 36px;
}
.rail {
left: 20px;
right: 20px;
}
}