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
Not Found
Not Found
Not Found
Not Found
Not Found

All solutions

  • Submitted


    What are you most proud of, and what would you do differently next time?

    Less difficulty centralizing and working partially with rem.

    What challenges did you encounter, and how did you overcome them?

    I didn't start with mobile and had some difficulties trying to make the page responsive without media queries, changing the sizes to rem solved a big part of the issues

    What specific areas of your project would you like help with?

    I frequently have path problems that only appear after I upload to Github, Is there any extensions for VS Code that allow you to see how the Github deployment will look like?

  • Submitted


    What are you most proud of, and what would you do differently next time?

    Being able to code my first page without handholding. I would like to do it faster next time :-D

    What challenges did you encounter, and how did you overcome them?

    The biggest challenge for me was centralizing the main element of the page while making it responsive, as said in the title I overcame this fixing the position to the center of the screen with the following snippet:

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    

    What specific areas of your project would you like help with?

    I would like to know how to get the feel for the size of the things on the preview, this was also one of the things I had difficulty with.