John Norman
@norman02All comments
- @ichoukriSubmitted about 3 years agoP@norman02Posted about 3 years ago
Congrats on completing this challenge. It looks pretty good! The only suggestion I would make is to fix the accessibility issues listed in the report. Happy coding!
Marked as helpful0 - P@norman02Submitted almost 4 years ago
- P@norman02Submitted almost 4 years ago
- P@norman02Submitted about 4 years ago
- P@norman02Submitted over 4 years ago
- @Olaleye-BlessingSubmitted over 4 years agoP@norman02Posted over 4 years ago
It is showing up fine for me on both Chrome and Firefox. Only thing I would suggest is to set outline: none; this will remove the blue box that shows up when you click the button.
0 - @eljasiuSubmitted over 4 years agoP@norman02Posted over 4 years ago
It looks good, I like the transition delay animation. Two things I noticed: there is no shadow on the main element. The share element doesn't transition back to default state.
1 - @404-azertySubmitted over 4 years agoP@norman02Posted over 4 years ago
It looks great! I wasn't able to view your code so can't comment on that.
0 - @la-magbanuaSubmitted over 4 years agoP@norman02Posted over 4 years ago
Thanks for posting this! I'm just starting to use Sass over raw CSS and yours is a great example of SCSS structure.
0 - @vtejaetaSubmitted over 4 years agoP@norman02Posted over 4 years ago
This looks pretty good. A couple things the background color for the bubble should be #FFF. There should be a background image. Looks like you got all the hard parts right.
1 - @SathishVMSubmitted over 4 years agoP@norman02Posted over 4 years ago
I really like this! One minor suggestion, if you add name="email" to the email input it allows many browsers to suggest the user's stored email addresses.
0 - @hariramjp777Submitted over 4 years agoP@norman02Posted over 4 years ago
The main thing I see is that the button should have a white background
0 - @LauraGrenier93Submitted over 4 years agoP@norman02Posted over 4 years ago
This is a hard project to start with I'm not sure why it's in the newbie section. I'd do some of the others and come back to this.
0 - @Scoro6Submitted over 4 years agoP@norman02Posted over 4 years ago
The only thing that really looks off is the button. It's sized a bit differently and missing the drop shadow. It's hard to get an exact match without the sketch file, but measuring the jpeg with a free tool can get you close.
1 - @MarianoHuitronSubmitted over 4 years ago
- @rahulxyzSubmitted over 4 years agoP@norman02Posted over 4 years ago
This looks very good! Only a little off from the design.
The answers to your questions are pretty subjective but here is what I do:
For mobile view I usually play around with the responsive design on google developer tools and set media queries where things start to break. I also us Sizzy to see several devices at once while I'm developing.
The reset css I usually use is
:root { font-size: 10px; } *, *::before, *::after { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; z-index: 0; box-sizing: border-box; } ```
2 - @PragmaticbugSubmitted over 4 years agoP@norman02Posted over 4 years ago
This is a hard project to start with. There are a couple issues with sizing the components and the background. Also see your report for HTML and accessibility issues. There are a couple ways to style the status bar. Here is what I did:
<div id="status-panel"> <p id="storage-message">You’ve used <em>815 GB</em> of your storage</p> <div id="status-bar"> <div id="status-bottom"> <div id="status-middle"> <div id="status-top"></div> </div> </div> </div> <div id="status-text"> <p>0 GB</p> <p>1000 GB</p> </div>
css:
#status-bar { margin-left: 3rem; width: 85%; } #status-bottom { background-color: var(--VeryDarkBlue); width: 100%; height: 1.8rem; display: flex; border-radius: 10px; } #status-middle { background: linear-gradient(to right, hsl(6, 100%, 80%), hsl(335, 100%, 65%)); width: 81.5%; height: 1.4rem; margin: 0.2rem; z-index: 1; position: relative; border-radius: 10px; display: flex; } #status-top { z-index: 2; background-color: white; height: 1.2rem; width: 1.2rem; margin: 0.1rem; border-radius: 100%; position: absolute; right: 0; top: 1; }
2 - @Edwardleung1Submitted over 4 years agoP@norman02Posted over 4 years ago
This looks good! Only thing that seems to be missing is the box shadow.
1