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

  • P

    @TusharKaundal

    Submitted

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

    • Best part was that i learned about how to put transition for box-shadow using hover property
    .card {
      max-width: 24rem;
      background-color: var(--white);
      padding: 24px;
      border-radius: 20px;
      border: 1px solid var(--gray-950);
      box-shadow: 8px 8px #000000;
      transition: box-shadow 0.4s ease-in-out;
    }
    
    .card:hover {
      box-shadow: 16px 16px #000000;
      cursor: pointer;
    }
    
    .card:hover .text-preset-1 {
      color: var(--yellow);
    }
    

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

    • To get card responsive with respect to smaller screen

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

    • How better we can design above Blog Preview Card webpage
    P
    Chris 60

    @Ramirez-Christopher

    Posted

    nsive Design:

    Your media query for screens smaller than 468px adjusts font sizes well, but consider adding some padding or margin adjustments too for improved readability on small screens. You might also want to make the body or .card-container layout adjust more smoothly for larger screens by using min-width or changing the flex direction at higher breakpoints.

    Marked as helpful

    0
  • P
    abm-afk 50

    @abm-afk

    Submitted

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

    Learn about flex and how to work with it. Also found a better solution to provide a gap between text part with "gap" property, rather than doing margin/padding manipulation.

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

    Main concern was to understand when and how to use margin/padding on one or another block. Found out there is a more optimal solution as "gap" in flex

    P
    Chris 60

    @Ramirez-Christopher

    Posted

    Consider using rem or em for consistent scaling across different devices rather than hardcoded pixel values, especially for margin, padding, and font sizes. This will improve responsiveness.

    Marked as helpful

    0