Skip to content
  • Unlock Pro
  • Log in with GitHub
Profile
OverviewSolutions
5
Comments
11
Vinci Taylaran
@vincitaylaran

All comments

  • JuanCFS•160
    @juancfs
    Submitted about 4 years ago

    Single price grid component

    1
    Vinci Taylaran•185
    @vincitaylaran
    Posted about 4 years ago

    Great work on completing your second challenge 🎉

    A suggestion I would make is to make your cursor into a pointer when you hover over the sign up button. Lastly, I would give the <h2> elements under the subscription and why sections a font weight of 700.

    These are my personal thoughts. Other than that, your solution is very well done 😁

  • Raymart Pamplona•16,040
    @pikapikamart
    Submitted about 4 years ago

    Just using pure JS and SCSS

    3
    Vinci Taylaran•185
    @vincitaylaran
    Posted about 4 years ago

    Good eye for detail, Raymart. Your solution looks very close to the original design 😁

    Filtering for jobs also works correctly. The only thing you're missing is the "Clear" button which should appear at the right side of the stack. Adding it shouldn't be much of an issue for you 😆

    Congrats on completing another challenge!! 😀

  • Omer•110
    @jcoder6
    Submitted about 4 years ago

    Starting to practice web dev with HTML scss and js

    1
    Vinci Taylaran•185
    @vincitaylaran
    Posted about 4 years ago

    Congrats on completing your first challenge 🎉

    The only thing I would add is to change the color of the bookmark when you hover over it. It's only a small nitpick but other than that there's nothing wrong with your solution.

    Looking forward to seeing your progress 👏

  • Nick Penny•10
    @Nspennyuk
    Submitted over 4 years ago

    My profile-card-component attempt

    2
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    Good eye for detail, Nick.

    Only adjustment I would make would be for the .card__social-list class. Instead of a solid grey color for the border-top property, I would replace with it rgba(211,211,211,0.5). It's still grey but is less strong on the eyes as it has 0.5 opacity.

    Looking forward to seeing your progress and congrats on completing your first challange 🎉

  • Nishant Jain•20
    @NJain0001
    Submitted over 4 years ago

    Beginner: Social proof section

    1
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    Great look solution, Nishant!

    In regards to the solution to your problem with the stars, I went with giving your .star-rating-item class a flexbox and then aligned them using align-items: center. I removed all of the styles for your .stars class and replaced them a grid, gave it a grid-auto-flow: column property, and then gave them a gap of 3px.

    .star-rating-item {
        position: relative;
        width: 450px;
        height: 25%;
    
        display: flex; // <-- Gives this class flexbox.
        align-items: center; // <-- Aligns your elements vertically. Must have flexbox in order to use this property.
    }
    
    .stars {
        display: grid;
        grid-auto-flow: column;
        gap: 3px;
    }
    

    Other than that, your solution is great. Looking forward to seeing your progress and congrats on completing your second challenge 🎉

  • Monika Cyprys•140
    @MonikaCyprys
    Submitted over 4 years ago

    Mobile first landing page using flexbox and scss

    1
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    This is a great looking solution. Good work!

    Some adjustments I would make would be on the font color of the .text-section class. I would probably give it a color of #4d4d4d, as it would be less strong on the eyes than a purely black color. One final adjustment I would make would be to slightly increase the font size of the heading elements (h1, h2, etc...). These are nitpicks, but other than that your solution is very well done 😁

    Looking forward to seeing you progress and congrats on finishing your 2nd challenge 🎉

  • Drumstickz64•60
    @Drumstickz64
    Submitted over 4 years ago

    Using sass, babel, and postcss with parcel

    2
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    Hey there 👋

    Your solution looks really good on mobile!!

    In regards to your device size problem for the desktop version, would you happen to be using Google Chrome as your browser? You probably know this already, but Chrome has some awesome developer tools that can help you view your app on desktop.

    Anyways, good work and I look forward to your progress 😁

  • Erick Cerna•60
    @erickcerna
    Submitted over 4 years ago

    Huddle_landing_page

    2
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    Hi Erick, your solution looks very good for desktop.

    For responsive design, I would look into media queries and flexbox. Learning these two tools are essential to responsive to design, in my opinion.

  • spymon•90
    @spymon
    Submitted over 4 years ago

    Tried SASS and BEM for the first time, also added some animations

    2
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    Fantastic work! For the bug you mentioned, one way I fixed it was by giving the .testimonials a margin-top: -260px and height: 1100px.

    @media screen and (max-width: 1100px) {
      .testimonials {
          height: 1100px;
          margin-top: -260px;
        
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          justify-content: flex-start;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
      }
    }
    

    It's not a clean fix but it should do the trick. If you or anyone else finds a cleaner fix, please do share!

    Looking forward to your progress!!

  • Xhoni•70
    @Xhoni43
    Submitted over 4 years ago

    Challenge #1

    3
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    Great looking solution, Xhoni! The only thing I would have to knit pick is that the hero isn't dimmed. Making it dim will make the white text on it pop out more and appear more readable.

    .hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(../assets/image-hero.jpg) no-repeat center center/cover
    }
    

    Otherwise, this looks really good! Looking forward to your progress :)

  • Bonrey•1,130
    @Bonrey
    Submitted over 4 years ago

    Filtering with lots of animation using CSS and JS

    2
    Vinci Taylaran•185
    @vincitaylaran
    Posted over 4 years ago

    I love the work you've put into the animations. The animations don't ruin the user experience for me. They're also quite satisfying with the sound they make and the way they animate in and out of view. I tried doing that myself when I attempted this challenge but kinda failed.

    Fantastic work!!!

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

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