You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
276 B

:root {
--degrees: 0deg;
}
.bg-conic {
background: conic-gradient(
transparent 0deg,
transparent var(--degrees),
white var(--degrees),
white 360deg
);
}
.hand {
transform-origin: bottom center;
transform: rotate(var(--degrees));
}