Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
8
Comments
2

HipsterShaggy

@Jakub-Gryczka170 points

I’m a mysterious individual who has yet to fill out my bio. One thing’s for certain: I love writing front-end code!

Latest solutions

  • Responsive advice generator app


    HipsterShaggy•170
    Submitted about 1 year ago

    Feedback is appreciated


    0 comments
  • Testimonials grid section


    HipsterShaggy•170
    Submitted over 1 year ago

    0 comments
  • Responsive landing page using tailwind

    #tailwind-css

    HipsterShaggy•170
    Submitted over 1 year ago

    0 comments
  • Age calculator app

    #tailwind-css

    HipsterShaggy•170
    Submitted over 1 year ago

    0 comments
  • Responsive newsletter signup with form validation


    HipsterShaggy•170
    Submitted over 1 year ago

    0 comments
  • Results Summary Component

    #bem

    HipsterShaggy•170
    Submitted almost 2 years ago

    0 comments
View more solutions

Latest comments

  • Achinta Haldar•140
    @FSwebdeveloper
    Submitted over 1 year ago

    Results summary component

    #bootstrap#jquery#react#styled-components#cube-css
    1
    HipsterShaggy•170
    @Jakub-Gryczka
    Posted over 1 year ago

    Hi,

    1. For me, on the first container I just applied background: linear-gradient() that goes from top to bottom, the same for the circle thing around the primary score. You can check how I solved it in my profile.
    2. I don't really understand the second question. To add HSL, you simply do hsl(hue, saturation, lightness) and the color shows up. Also I recommend the coolors website, it really helps with picking colors for your project. Once you have entered the site, click Explore trening palettes and paste your color in RGB format and it will show some well-matched colours with the specified.

    Hope it helps :D

    Marked as helpful
  • Mazen Mohamed•90
    @lowkey-mazen
    Submitted over 1 year ago

    Product card design using HTML and CSS.

    2
    HipsterShaggy•170
    @Jakub-Gryczka
    Posted over 1 year ago

    Hi!

    1.As someone above me mentioned about the images. You're pointing to the images/ folder where all your images would be, but you didn't uploaded this folder into Github. That's why the images aren't showing. You should do path either image-product-desktop.jpg or upload the images folder to github and move all of the assets into that folder. This should work.

    2.The font-family isn't working for brand name because the text is in <pre> tag, which has different font and isn't inheriting it by default. Just set the font-family: inherit on the <pre> and it would work :D.

    3.To place the image next to the text I would recommend using Flexbox. Use it on the parent element (in your case on the-button). Moreover you could perfectly center those items. It would be like that:

    .the-button {
       display: flex;
       justify-content: center;
       align-items: center;
       gap: 1em;
    }
    
    • display: flex sets the display to flex, allowing you to use flexbox on this item.
    • justify-content allows you to justify the items along main axis which is x-axis (from left to right in this case)
    • align-items allows you to align items along cross axis, which is y-axis (from top to bottom again, in that case)
    • gap as the name shows, creates a gap between flex-items. You could also use it on grid elements. You should learn flexbox, so those properties will be clear, I just wrote some simplification for you to understand why those things happens.

    4.After opening the website, the main part of website isn't in the center. It's aligned with hard-coded margin-top and margin-left. Again, better solution for this is flexbox. Add those lines to make it perfectly centered:

    body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 95vh;
    }
    

    min-height is a property for minimum height of an element. In this case, 95vh and the vh stands for viewport height, so of the screen height.

    Also, there's some HTML semantics lacks, I recommend Kevin Powell's latest video on YouTube: https://www.youtube.com/watch?v=K_EVuLegRZ0&t=875s

    Hope it helps!

    Marked as helpful
Frontend Mentor logo

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

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

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

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

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