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

  • darryncodes 6,430

    @darryncodes

    Submitted

    Hi everyone 👋

    Well well well ... mobile-first!

    I think this is a turning point for me, i finally embraced the dark-side. And what can i say, it's liberating. My code feels cleaner, simpler and more legible. It might be due to the design but i'm definitely converted 👀

    I took the time at the start of the project to really understand how to work with min-width instead of max-width and it paid off. I also got a bit unnecessarily carried away with @keyframe animations at the end and changing them up per breakpoint 😂

    Anyway, your feedback would be greatly appreciated!

    Happy coding 🤙

    Tiass 295

    @Tiasstiass

    Posted

    Good job! 👏

    Tested it on Safari iOS, looks neat! Few feedbacks:

    • Regarding the colored top border: You could make it a div or the best solution I think, is to use a ::before pseudo element,
    • Setting fixed heights is not considered good practice, the content should define the height of an element, be it the padding etc..,
    • Any reason behind the font-size: 50%, 62.5% makes sense but why 50%?
    • @import is being depreciated and Sass team is discouraging us to use it, look into @use and @forward,
    • You are using scss syntax not sass, consider renaming your folder.

    Excellent job overall, keep up the good work 💪

    Marked as helpful

    1
  • iliwili 225

    @iliwili

    Submitted

    I didn't really know what you meant by '- Mobile: 375px - Desktop: 1440px' , so I just made it center in the middle of the body. Feedback about that would really helpful.

    Tiass 295

    @Tiasstiass

    Posted

    Good job! 👏

    Nice work overall, some feedbacks:

    • You can use overflow: hidden for the card’s border-radius to work without setting it on the image as well,
    • The box shadow is really big on the button, a subtle 0 2px 5px #00000033 should work,
    • You can apply that shadow on the card as well,
    • Use more em and rem, especially rem for font-sizes. If you set a font-size on body and then rem on children, you could change all your font-sizes by just changing the body font-size and the children will scale accordingly.

    Keep up the good work 💪

    0
  • Tiass 295

    @Tiasstiass

    Posted

    Good job 👏

    Looks really good!

    • Seems like there is a little gap between the image and the body of the card but its nice that way also.
    • The body is too big on mobile, the reason is, you set the width of the body, I guess for background positioning ? background-size: cover should do the trick.
    • Look into em and rem

    Keep up the good work 💪

    Marked as helpful

    0
  • Tiass 295

    @Tiasstiass

    Posted

    Good job!👏

    Tested it on Safari iOS, nice work on the card itself, the positioning is off on both portrait and landscape orientation. Also the box-shadow on the card is off and its values looks random, 0 2px 5px #00000033 is usually enough for a card

    Keep up the good work 💪

    Marked as helpful

    1
  • Tiass 295

    @Tiasstiass

    Posted

    Good job! 👏

    Tested it on Safari iOS, looks good overall although:

    • Centering is kinda off on first and third section,
    • The hamburger menu’s items breaks on landscape mode

    Now about the code:

    • The use of !important is not recommended, if you need it that much, surely something is wrong with your code and using it shouldn’t be your first resort,
    • 5 media queries are too much, look for ways to make it more responsive « on its own » like grid, responsive font-sizes with the use of clamp(), not setting fixed sizes, using em and rem etc..

    Keep up the good work 💪

    Marked as helpful

    2
  • Tiass 295

    @Tiasstiass

    Posted

    Good job! 👏

    Tested it on Safari iOS, looks really good, the only issue I see is the really long hamburger menu.. Is there a reason behind it being 200vh?

    Keep up the good work 💪

    Marked as helpful

    1
  • Tiass 295

    @Tiasstiass

    Posted

    Good job 👏

    Nice use of the grid with media query. The « why us » box is a list of links so p doesn’t really apply, try using li with anchor :)

    0
  • Darsh 10

    @DarshBhanushali

    Submitted

    I have just stated with web design, so any suggestion or feedback is valuable to me.

    My background image is going out of the main body and it does not look good. and I could not figure our how to do it? If you can hep out that would be great;

    Tiass 295

    @Tiasstiass

    Posted

    Good job 👍 few things i’ve noticed:

    • Try using margin and padding instead of position to place elements.
    • A good practice is to use em and rem instead of pixels for sizes.
    • Also look for media queries to make you website responsive to different screen sizes since one design cannot apply to all of them

    Keep up the good work! 💪

    1
  • Omen 50

    @bobaram

    Submitted

    I did not apply the background for a reason so please do not judge me on that . How close does my design look to the solution?

    Tiass 295

    @Tiasstiass

    Posted

    Good job 👍 Looking at your code, here are some advices:

    • Try working with margin and padding instead of relative position
    • Using em or rem instead of pixels is a good practice
    • Try to keep your code DRY (dont repeat yourself), for instance the cards have a lot of styling in common, By giving them 2 classes you could make a general styling for the cards and the use the other class for specificities.

    Keep up the good work! 💪

    1
  • Tiass 295

    @Tiasstiass

    Posted

    Good job! Seems like you forgot to add the background images, also some padding, margin and sizing issues to make it perfect. Keep up the good work! 💪

    0
  • Tiass 295

    @Tiasstiass

    Posted

    Good job 👍 Few things i’ve noticed:

    • Body selector has a height and width set in pixels which makes it not responsive. Try using percentage or vh, vw for that.

    • You did not use media queries so again, not responsive. Look up how to set media queries.

    • The font is off, do not forget to import your fonts in your HTML or CSS

    Keep up the good work! 💪

    0
  • Danny 120

    @Deminal

    Submitted

    Would love to hear any thoughts on the HTML/CSS. Would also love any help with accessibility concerns.

    Thanks!

    Tiass 295

    @Tiasstiass

    Posted

    Good job! 👏 You could work on your padding to make the sizing more accurate. Also check your HTML issues.

    0
  • Tiass 295

    @Tiasstiass

    Posted

    Looks nice 👍 you could try to fix the background size and position along with the border-radius for the card to make it look better.

    0