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?

    I learned to build responsive layouts using grids. It was very interesting to start mobile first and adjust the grid to desktop.

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

    I encountered some challenges of grids, encountered them through googling. also, there was the line-through not going through the center, for that this StackOverflow post helped

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

    is it just me or everyone that uses this long css for a button ?

    button {
      display: flex;
      align-items: center;
      justify-content: center;
    
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
    
      outline: none;
      border: none;
      cursor: pointer;
    
      width: 100%;
      max-height: 3rem;
      padding: 0.5rem;
      border-radius: 0.5rem;
      column-gap: 0.5rem;
      
      background: var(--cyan-dark);
      color: white;
    }
    /* Also button:focus-within, button:hover, & button:active states */
    

    Please tell me how to improve!

    Suggestions and feedback are very much appreciated.

  • Submitted


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

    I'm proud that I got the hang of css from this project.

    - Benifits of project ( to me ) :

    • css properties, media queries
    • custom lists styling
    • responsive layout

    - Doing differently next time :

    • I will start with a structured folder
    • I will start with the basic HTML covered, then move to css
    • I will just start coding without overthinking lol

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

    Challenges encountered :

    • The bullets of list were to be vertically centered around text.
    • The number of list had to have the same font

    Overcame through :

    • display: inline-block & vertical-align: middle
    • made a custom list with counter

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

    I would like feedback on the general code and css primarily, If I used some over-engineer methods to perform a simple task, or I didn't pay attention to some stuff that may break the layout at some device

    Please be sure to point all the errors, as it will help me tremendously :)