Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
1
Comments
1
Jamie
@Jamie098

All comments

  • P
    Arne Witteler•90
    @arne-witteler
    Submitted 3 months ago
    What are you most proud of, and what would you do differently next time?

    I’m proud of the clean layout and responsive design. Next time, I’d optimize the structure earlier for mobile to avoid layout shifts later in the process.

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

    Somehow the main challenge was handling horizontal spacing on small screens. I resolved it by refining padding and using media queries effectively.

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

    I’d appreciate feedback on how to structure CSS more modularly and on best practices for accessibility in interactive elements like links and buttons.

    Responsive Social Links Card with Flexbox

    2
    Jamie•30
    @Jamie098
    Posted 3 months ago

    One thing you could do to make the css more modular is to move the color definitions into a variables.css file and reference the colors using var().

    For example

    variables.css:

    :root {
      --color-green: hsl(75, 94%, 57%);
      --color-white: hsl(0, 0%, 100%);
      --color-grey-700: hsl(0, 0%, 20%);
      --color-grey-800: hsl(0, 0%, 12%);
      --color-grey-900: hsl(0, 0%, 8%);
    }
    

    usage: background-color: var(--color-grey-800);

    Marked as helpful

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub

Oops! 😬

You need to be logged in before you can do that.

Log in with GitHub