Skip to content

Commit

Permalink
styles
Browse files Browse the repository at this point in the history
Signed-off-by: Vivek Vishal <vishalvivek488@gmail.com>
  • Loading branch information
vishalvivekm authored Jan 10, 2025
1 parent 259a3b9 commit ac35a4a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions assets/scss/_videos.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.video-btn-wrapper {
height: 60px;
width: 60px;
background-color: #00b39f;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s ease;
transform: translate(-50%, -50%);
}

.video-btn-wrapper svg {
height: 50%;
width: 50%;
margin-top: 5px;
}

.play-icon-path {
fill: white;
transition: fill 0.3s ease;
}

.bg-gradient-overlay:hover .video-btn-wrapper {
background-color: #ffffff;
}

.bg-gradient-overlay:hover .play-icon-path {
fill: #00b39f;
}

0 comments on commit ac35a4a

Please sign in to comment.