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 comments

  • @Codevkreate

    Submitted

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

    I'm proud of the fact that I read a feedback on my previous challenge which helped me with the responsiveness

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

    Making it responsive and the unusual bottom margin added to the flex items automatically so i had to remove the margins manually. I still don't know why that happened though

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

    any form of feedback would be greatly appreciated

    @kayleerivera

    Posted

    Your repsonsiveness is great! I think the initial design also included a hover effect for the card that made the shadow go from 8px to 16px. Great work!

    1
  • JEEVAN A 30

    @JeevanA1999

    Submitted

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

    I am most proud of the design and how I got to achieve it with plain HTML and CSS. Next time I would like to work with other technologies to achieve the interface

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

    The challenge I encountered at first was responsiveness I overcame it by researching a solution

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

    I would like feedback on the code. if there is anything I should have used to make it more efficient or easier.

    @kayleerivera

    Posted

    I like your hover effect!

    One of the things I struggled with was getting my element centered nicely. I ended up finding the code below, which was super helpful.

      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
    
    0