This is a solution to the 3-column 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:
- View the optimal layout depending on their device's screen size
- See hover states for interactive elements
- Live Site URL: Preview Card
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
This one right here:
button {
transition: all 0.5s ease-in;
&:hover {
transform: translate(2px, -2px);
color: hsl(0, 0%, 95%);
background: none;
}
}- Github - @harryjupiter148

