This is a solution to the NFT preview card component challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
Users should be able to:
Desktop
- Solution URL: GitHub repository
- Live Site URL: My Site
- Semantic HTML5 markup
- CSS custom properties
- Bootstrap
I learned the opacity property and how we can give it that style of something sticking out when you move the mouse.
.view {
margin-top: 125px;
opacity: 0%;
}
.view:hover {
opacity: 100%;
}
.hidden {
text-align: center;
position: absolute;
background-color: hsla(178, 100%, 50%, 0);
border-radius: 25px;
width: 300px;
height: 300PX;
margin: 20px 15px 0;
top: 0px;
left: 10px;
}
.hidden:hover {
background-color: hsla(178, 100%, 50%, 0.3);
}
Note: Delete this note and the content within this section and replace with your own learnings.
Improve the design of cards and learn about Bootstrap classes
- Frontend Mentor - @Juan13052001