@webwriter/interactive-video
Version:
(WIP) Enhance learning by adding interactive content in popups to videos for an engaging, interactive experience.
33 lines (26 loc) • 518 B
text/typescript
import { css } from "lit";
export default css`
:host {
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
#bauble {
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
border-radius: 15px;
width: 18px;
height: 18px;
background-color: #e9e9e9;
}
#bauble:hover {
background-color: #0084c6;
color: white;
}
:host(.dragging) {
cursor: grabbing;
}
`;