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

  • Radasin 620

    @Radasin

    Submitted

    This is a solution to the Sunnyside agency landing page challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

    Note: Delete this note and update the table of contents based on what sections you keep.

    Users should be able to:

    • View the optimal layout for the site depending on their device's screen size
    • See hover states for all interactive elements on the page

    • Semantic HTML5 markup
    • CSS custom properties
    • Flexbox
    • CSS Grid
    • Mobile-first workflow

    How to make a menu with CSS only.

    .nav-bar__menu {
       position: relative;
    }
    .nav-bar__list {
       position: absolute;
       display: none;
       list-style: none;
       background-color: var(--WHITE);
       color: var(--DARK-MODERATE-CYAN);
       background-color: var(--WHITE);
       top: 200%;
       right: 10%;
       padding: 4rem 50%;
       flex-direction: column;
       justify-content: flex-start;
       align-items: center;
       gap: 3rem;
    }
    :is(.nav-bar__menu:hover, .nav-bar__menu:focus-within) .nav-bar__list {
       display: flex;
       width: 90vw;
       border-right: 20px solid transparent;
       border-top: 20px solid #3ebfff;
    }
    

    @G18siqueira

    Posted

    Congratulations on completing the challenge!! If I could give you a tip, it would be to calmly check the measurements of the elements and the details of the layout to be as close as possible, using measurements like ''rem'', ''vw'', ''vh'', '' fr'', of course each one with its respective importance, in addition to checking small details, such as the ''hover'' in the links, and the color palette used in the layout, I believe it would add a lot to your project!

    Marked as helpful

    0