-
Notifications
You must be signed in to change notification settings - Fork 6.3k
done header #7746
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
done header #7746
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,22 +1,108 @@ | ||
| <!doctype html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta | ||
| name="viewport" | ||
| content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" | ||
| /> | ||
| <meta | ||
| http-equiv="X-UA-Compatible" | ||
| content="ie=edge" | ||
| /> | ||
| <title>Moyo header</title> | ||
| <meta charset="UTF-8"> | ||
| <title>Moyo Header</title> | ||
| <link | ||
| rel="preconnect" | ||
| href="https://fonts.googleapis.com" | ||
| > | ||
| <link | ||
| rel="preconnect" | ||
| href="https://fonts.gstatic.com" | ||
| crossorigin="anonymous" | ||
| > | ||
| <link | ||
| href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This HTML line is longer than 80 characters. The checklist rule states: "Lines of code have 80 chars max". The Google Fonts |
||
| rel="stylesheet" | ||
| > | ||
| <link | ||
| rel="stylesheet" | ||
| href="./style.css" | ||
| /> | ||
| > | ||
| </head> | ||
| <body> | ||
| <h1>Moyo header</h1> | ||
| <header class="header"> | ||
| <a | ||
| href="#" | ||
| class="logo" | ||
| > | ||
| <img | ||
| src="./images/logo.png" | ||
| alt="Moyo logo" | ||
| class="logo__img" | ||
| > | ||
| </a> | ||
|
|
||
|
lilbodyn marked this conversation as resolved.
|
||
| <nav class="nav"> | ||
| <ul class="nav__list"> | ||
| <li> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Your nav__item). Because of the rule "Don't use tag names for styling (except html and body)", add a semantic class to every li tag. |
||
| <a | ||
| href="#" | ||
| class="nav__link is-active" | ||
| > | ||
| Apple | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The selector nav__item) and change the selector to use that class (e.g. .nav__list > .nav__item + .nav__item). |
||
| class="nav__link" | ||
| > | ||
| Samsung | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
| class="nav__link" | ||
| > | ||
| Smartphones | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
| class="nav__link" | ||
| data-qa="hover" | ||
| > | ||
| Laptops & computers | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
| class="nav__link" | ||
| > | ||
| Gadgets | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
| class="nav__link" | ||
| > | ||
| Tablets | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
| class="nav__link" | ||
| > | ||
| Photo | ||
| </a> | ||
| </li> | ||
| <li> | ||
| <a | ||
| href="#" | ||
| class="nav__link" | ||
| > | ||
| Video | ||
| </a> | ||
| </li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
| </body> | ||
| </html> | ||
| </html> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,73 @@ | ||
| html { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| body { | ||
| margin: 0; | ||
| font-family: Roboto, sans-serif; | ||
| } | ||
|
|
||
| ul { | ||
| margin: 0; | ||
| padding: 0; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This CSS block uses the |
||
| } | ||
|
|
||
| :root { | ||
| --blue: #00acdc; | ||
| } | ||
|
|
||
| .header { | ||
| display: flex; | ||
| justify-content: space-between; | ||
| align-items: center; | ||
| padding: 0 50px; | ||
|
Comment on lines
+14
to
+18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This violates checklist item #4: "The height must be set for the nav links (not for the header), and this height must be taken from the design." You set |
||
| } | ||
|
|
||
| .logo { | ||
| display: flex; | ||
| align-items: center; | ||
| } | ||
|
|
||
| .logo__img { | ||
| display: block; | ||
| height: 40px; | ||
| } | ||
|
|
||
| .nav__list { | ||
| display: flex; | ||
| list-style: none; | ||
| } | ||
|
|
||
| .nav__list > li + li { | ||
| margin-left: 20px; | ||
| } | ||
|
|
||
| .nav__link { | ||
| display: flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| height: 60px; | ||
| color: #000; | ||
| text-decoration: none; | ||
| text-transform: uppercase; | ||
| position: relative; | ||
| } | ||
|
|
||
| .nav__link:hover { | ||
| color: var(--blue); | ||
| } | ||
|
|
||
| .is-active { | ||
| color: var(--blue); | ||
| } | ||
|
|
||
| .is-active::after { | ||
| content: ""; | ||
| position: absolute; | ||
| right: 0; | ||
| bottom: 0; | ||
| left: 0; | ||
| height: 4px; | ||
| background-color: var(--blue); | ||
| border-radius: 8px; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This CSS rule uses a tag selector for
ul. The checklist requires styling by classes (onlyhtmlandbodymay use tag selectors). Quote from the checklist: "Don't use tag names for styling (except html and body)". Move these resets to the.nav__listclass (for example,.nav__list { margin: 0; padding: 0; }) and remove theul { ... }rule.