Home / Admin / Play/Pause button CSS
Duplicate Snippet

Embed Snippet on Your Site

Play/Pause button CSS

Paige Craft PRO
<10
Code Preview
css
/* play/pause for homepage background video */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
#playPauseBtn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
#playPauseBtn:focus {
    outline: 2px solid #ffcc00;
}

Comments

Add a Comment