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

  • Jason Heys 175

    @heyitsgany

    Posted

    You've managed to recreate the design pretty faithfully, and your responsiveness works. Nice job!

    However, there are a few things you need to look at:

    • Your media queries keep the mobile design until the screen is at 1800px wide. This is contrary to the design file, which I'm sure gives a width of 1440px for desktop. (This is why your design comparison screenshot looks wrong above).
    • Your class names could use some work. While there is no rule against using camelCase when writing class names, there is a convention of using lower case seperated by hypens. Although I would recommend reading up on BEM naming for class names.
    • You want to make sure you're using semantic HTML elements when possible, instead of just using <div>. This goes a long way in improving site accessibility for things such as screen readers. (You want to at least throw your mainContainer class into a <main> element instead of the <div>).
    • There are a couple of things in your CSS that could be changed:
      • To make sure you're keeping your code DRY, I'd suggest setting the font-family on the body instead of setting it in two different classes. This makes it easier for the font for the page to be changed (changing one line of code instead of multiple).
      • Your flexBoxContainer class has a set of CSS properties that don't do anything to the style until you add a display:flex to the class in a media query. I'd suggest grouping this all together in the media query.
      • You set a background on the HTML. While this technically works, you should really apply this styling to the body and not html.
    • You're using React for a single page site with no (or very minimal) interactivity. This site would be a better use case for using just HTML and CSS. The design as it stands doesn't indicate the need for any JavaScript and I feel like React maybe overcomplicates the process here.

    That's just a few of the things I could see while looking. Hopefully these give you some things to work on and help you learn in the process. You've done a great job, and you should be pleased with what you produced! Keep it up!

    Marked as helpful

    0
  • @Sloth247

    Submitted

    Hi, thanks for visiting this solution page. This is my first time building with React other than code along at tutorials. This project is probably not good to practice React, but I wanted to try from newbie challenges. I hope the methods are correct. This app should fully accessible and focusable. I am looking forward to hearing any feedbacks or comments especially from someone who is familiar with React.

    Jason Heys 175

    @heyitsgany

    Posted

    This looks good, you've gotten pretty close to the design, nice work!

    A couple of things to look at:

    • Your active state on the image (the colour overlay and eye icon) is a little larger than the image itself, so you get an odd extra bit at the bottom of the image when you hover.
    • You want to change the attribution div to a footer element instead (just to keep it semantically correct).
    • The height of the card could be increased slightly to better match the design.

    Also, the solution report is stating that you need to include a h1 element, although looking at your markup I can see it's there. I'm not sure if making it aria-hidden has caused this issue?

    Marked as helpful

    0
  • Jason Heys 175

    @heyitsgany

    Posted

    I think it switching to the column layout below 1440px is an odd choice. You want to find the resolution where the horizontal layout starts looking cramped or broken and then switch to the vertical layout.

    You'll want to think about adding a h1 tag somewhere, as semantically a page must contain a level one heading. As the design doesn't have a good place for it, I'd suggest adding a h1 tag with screen reader only styling (so it's only visible to screen readers), using the title of the challenge.

    Also, if you want to get your positioning closer to the design I'd suggest making sure your min-height on your body is 100vh, then giving it a display: grid and place-items: center.

    Otherwise, this is great; the styling on the card pretty much matches the design. Nice work!

    0
  • Jason Heys 175

    @heyitsgany

    Posted

    Looks good. Well done on getting it close to the design.

    • Couple of things to work on, you haven't implemented the hover/active states for the buttons and links (change, proceed and cancel). That's a pretty simple thing to add.
    • Try to move the background image from your HTML to your CSS, using the background property. This way you have greater control over how it displays. (Also tweak your background colours as they're off a little).
    • Make sure you're using semantic HTML (div and span are non-semantic), make use of elements like header, footer and main. As your card is the main content of the page, change it from <div class="order-card"> to <main class="order-card">.
    • Finally, (and this is a preference thing) you could remove the box-sizing from your html and just use it on your reset.
    *,
    *::after,
    *::before {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    

    Marked as helpful

    1
  • Jason Heys 175

    @heyitsgany

    Posted

    Hey, nice job. You've got nice and close to the design and it looks good!

    There are a couple of things that I've noticed that you could work on to improve it.

    • Firstly, you give your body an ID? This doesn't seem necessary as we can already style the body using body.
    • You can apply the background "wave" image directly to the body in the CSS. This allows you to remove an unnecessary div. (Along with the z-index: -10).
    • Instead of using aria roles, why not just use the elements themselves? The whole thing can be wrapped in a <main> element. Your footer can just as easily sit in a <footer> element.
    • Don't forget to change the cursor when you hover the button and link elements. (Using "cursor: pointer").

    Marked as helpful

    1
  • Ibraheem 10

    @ibraheemabdlhafeez

    Submitted

    Please check it and tell problems i made

    Jason Heys 175

    @heyitsgany

    Posted

    As you've already mentioned, this website is not responsive. You'll need to use media queries to set the styling for mobile devices.

    These are a few things to look into fixing with your design (although certainly not an exhaustive list).

    • Make sure you're using landmark elements (such as main, footer, nav, section) instead of always using a div. (You have used these a class declarations, so you know where they need to be).
    • Instead of pasting the code from the SVG images into the HTML, you can of course use an <img> tag to place the image. This should make your HTML more readable (however it doesn't break things if you don't do this).
    • Following on from this, you have placed the background image into the HTML, instead of using CSS to place the background. My advice would be to set the background on the body using the background CSS property.
    • Your CSS has very strict specificity. You normally don't need to use so many selectors to style an element. For example, you use ".container .card .body .about .details", where you could achieve the same styling just using the ".details" selector.

    Keep working on it, and you'll get there!

    1
  • Jason Heys 175

    @heyitsgany

    Posted

    Just from a quick look at the live site and the code, these are a few things I've noticed.

    • You missed the point in the style guide on the font-family. This design wants you to use "Red Hat Display" from Google Fonts. It doesn't break anything, but it's a quick way your site closer to the design.
    • Your container class could quite easily be removed and the styling placed on the body. Setting a min-height of 100vh would ensure the background image covers the entire screen, instead of having blank space at the bottom.
    • You have a lot of "box" divs in your html, box-3 seems to serve some purpose to group the music notes image, the annual plan text and the change button. You could probably lose most of the box classes and just style the elements. Especially as you're using flex and that should keep things looking tidy.
    • You set the border radius for the card in two separate places, first the top corners on the design class, and then the bottom two on the summary class. As these are all nested in a "card" class, you could just use border-radius and add an overflow: hidden to achieve the same effect.
    • There is also at least one instance where you overwrite a style in the same selector.

    Marked as helpful

    0
  • Alice 245

    @AliceMenzie

    Submitted

    • card moves around on background, best way to make it fixed?
    Jason Heys 175

    @heyitsgany

    Posted

    Looks good! You've followed the design well. Just a couple of things to work on. Firstly, you haven't implemented the hover effects to the buttons and anchor tag.

    Secondly, to help with accessibility (for screen readers) change the container div element to a main element instead.

    Also, you haven't implemented the responsive design for mobile. So, your design touches the sides of the viewport at resolutions lower than 375px.

    As for your card moving around on your background. I'm not sure what you mean.

    0
  • Jason Heys 175

    @heyitsgany

    Posted

    Nicely done! Your solution looks good, although looking at the live version on GitHub pages there are a few things that could be changed to improve it.

    Firstly, changing the 'container' div to a main element would solve the accessibility issue that your solution is getting.

    Secondly, your background image is mispositioned and doesn't repeat. So, look at making it repeat on the x-axis and let it position itself.

    Otherwise nice work!

    0