Figuring out how to invert the images when the user hovers over them.
Next time, I think I won't add images. Im not sure they add to the design.
What challenges did you encounter, and how did you overcome them?Reusability in styles. I learned about the :root
selector and CSS variables to reduce copy and pasting.
If anyone is curious: CSS Variables (Custom Properties) CSS variables allow you to define reusable values in your stylesheet. They follow this syntax:
Declaration: --variable-name: value;
Usage: property: var(--variable-name);
So then you can do things like this:
:root {
--main-color: #ff6347;
--secondary-color: #4682b4;
--padding-standard: 1rem;
}
.card {
background-color: var(--main-color);
padding: var(--padding-standard);
}
What specific areas of your project would you like help with?
Hmmm, from a design perspective, are the icons a good addition?
Should then everything have been justified to the left?
Maybe the icons should have been bigger.