Not Found
Not Found
Not Found
Request path contains unescaped characters
Request path contains unescaped characters
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

Fylo Data Storage Component

mycrochip 460

@mycrochip

Desktop design screenshot for the Fylo data storage component coding challenge

This is a solution for...

  • HTML
  • CSS
2junior
View challenge

Design comparison


SolutionDesign

Solution retrospective


In this project, I used a screen-reader-only CSS, learned more about color gradients, and understood the positioning of child divs as a container inside parent divs which expand according to their parent (I used this in the progress bar).

One nice trick I also learned and implemented was the creation of a triangle by adjusting the thickness and color of borders as follows:

.storage__remain::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
  
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;

    border-right: 25px solid var(--clr-neutral-1000);

    bottom: -1.25rem;
    right: 0;
}

Community feedback

Please log in to post a comment

Log in with GitHub
Discord logo

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord