@webwriter/interactive-video
Version:
(WIP) Enhance learning by adding interactive content in popups to videos for an engaging, interactive experience.
21 lines (18 loc) • 500 B
text/typescript
import { css } from "lit";
export default css`
.overlay {
position: absolute; /* To overlay the .page div */
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
display: flex; /* Flexbox for centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
z-index: 100;
}
#file-input-label:hover {
color: blue;
}
`;