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 am most proud of learning how to use the Figma File to create a more accurate representation of the design.

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

    Some challenges included figuring out how to justify and align all the elements within the card correctly. I solved these using

    display: grid;
    justify-content: center;
    align-items: center;
    

    position: relative;

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

    I am curios how other people solved the indenting of the title and paragraph in the hover state.

  • Submitted


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

    I am most proud of the following-

    • learning Markdown today
    • the basic process for using github to submit work on Frontend Mentor
    • my knowledge of html and css got me through this design

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

    The challenges I encountered in this order were-

    1. remembering how to center the card using this code-
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: calc(100vh - 1px);
    }
    
    1. choosing which way to order my css
    2. understanding when to use display: flex;

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

    Areas I'd Like Help With

    • figuring out how to have a link in hover grow with it moving the other links next to it for example, I have this code for my links-
     .attribution a:hover {
        font-weight: 600;
        transition: all .225s ease-in-out;
        color: hsl(47, 51%, 55%);
    }
    

    When the font-weight grows, the text on either side moves out of the way to create space. I'd like it to grow over the other text. Would this be a z-index or `` type solution?

    thanks!