Skip to content

Instantly share code, notes, and snippets.

@Sanchithasharma
Last active February 26, 2021 14:35
Show Gist options
  • Save Sanchithasharma/bd642c19e559c6ae62828b278494d42a to your computer and use it in GitHub Desktop.
Save Sanchithasharma/bd642c19e559c6ae62828b278494d42a to your computer and use it in GitHub Desktop.
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.image {
width: 100%;
height: auto;
}
.overlay {
position: absolute;
height: 100%;
width: 100%;
opacity: 0.3;
transition: .3s ease;
background-color: transparent;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.container {
position: relative;
width: 100%;
max-width: 400px;
}
.overlay:hover {
opacity: 0.7;
}
.play-icon {
position: absolute;
color: black;
font-size: 2rem;
cursor: pointer;
left: 50%;
bottom: 50%;
}
.fa-heart {
position: absolute;
z-index: 2;
color: red;
position: absolute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment