-
Notifications
You must be signed in to change notification settings - Fork 5k
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
Moyo-Header(add task solution) #4911
base: master
Are you sure you want to change the base?
Changes from 1 commit
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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,19 +4,128 @@ | |||||||||||||
<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" | ||||||||||||||
content="width=device-width, initial-scale=1.0" | ||||||||||||||
/> | ||||||||||||||
<meta | ||||||||||||||
http-equiv="X-UA-Compatible" | ||||||||||||||
content="ie=edge" | ||||||||||||||
/> | ||||||||||||||
<title>Moyo header</title> | ||||||||||||||
<link | ||||||||||||||
rel="preconnect" | ||||||||||||||
href="https://fonts.googleapis.com" | ||||||||||||||
/> | ||||||||||||||
<link | ||||||||||||||
rel="preconnect" | ||||||||||||||
href="https://fonts.gstatic.com" | ||||||||||||||
/> | ||||||||||||||
<link | ||||||||||||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" | ||||||||||||||
rel="stylesheet" | ||||||||||||||
/> | ||||||||||||||
<link | ||||||||||||||
rel="stylesheet" | ||||||||||||||
href="./style.css" | ||||||||||||||
/> | ||||||||||||||
</head> | ||||||||||||||
<body> | ||||||||||||||
<h1>Moyo header</h1> | ||||||||||||||
<header class="header"> | ||||||||||||||
<div class="container"> | ||||||||||||||
<div class="header__container"> | ||||||||||||||
<a href="index.html"> | ||||||||||||||
<img | ||||||||||||||
src="./images/logo.png" | ||||||||||||||
alt="logo" | ||||||||||||||
/> | ||||||||||||||
</a> | ||||||||||||||
<nav class="header__nav"> | ||||||||||||||
<ul class="header__menu"> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
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. Fix class everywhere
Suggested change
|
||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-1 is-active" | ||||||||||||||
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. Fix class everywhere
Suggested change
|
||||||||||||||
> | ||||||||||||||
Apple | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
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. Add a blank line between the links
Suggested change
|
||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-2" | ||||||||||||||
> | ||||||||||||||
Samsung | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-3" | ||||||||||||||
> | ||||||||||||||
Smartphones | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-4" | ||||||||||||||
data-qa="hover" | ||||||||||||||
> | ||||||||||||||
Laptops & Computers | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-5" | ||||||||||||||
> | ||||||||||||||
Gadgets | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-6" | ||||||||||||||
> | ||||||||||||||
Tablets | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-7" | ||||||||||||||
> | ||||||||||||||
Photo | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
<li class="menu-item"> | ||||||||||||||
<a | ||||||||||||||
href="#" | ||||||||||||||
class="link link-8" | ||||||||||||||
> | ||||||||||||||
Video | ||||||||||||||
</a> | ||||||||||||||
</li> | ||||||||||||||
</ul> | ||||||||||||||
</nav> | ||||||||||||||
</div> | ||||||||||||||
</div> | ||||||||||||||
</header> | ||||||||||||||
</body> | ||||||||||||||
</html> | ||||||||||||||
|
||||||||||||||
<!-- <!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>Document</title> | ||||||||||||||
</head> | ||||||||||||||
<body></body> | ||||||||||||||
</html> --> | ||||||||||||||
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. Remove comments |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,3 +1,138 @@ | ||||||
*, | ||||||
*::before, | ||||||
*::after { | ||||||
box-sizing: border-box; | ||||||
} | ||||||
|
||||||
:root { | ||||||
--color-text: #000; | ||||||
--color-header: #00acdc; | ||||||
} | ||||||
|
||||||
body { | ||||||
margin: 0; | ||||||
font-family: Roboto, sans-serif; | ||||||
font-size: 12px; | ||||||
font-weight: 500; | ||||||
line-height: 1.2; | ||||||
Comment on lines
+13
to
+16
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. Move these styles to the html selector |
||||||
} | ||||||
|
||||||
a { | ||||||
display: inline-block; | ||||||
} | ||||||
|
||||||
img { | ||||||
display: block; | ||||||
} | ||||||
|
||||||
.link { | ||||||
text-decoration: none; | ||||||
color: var(--color-text); | ||||||
text-transform: uppercase; | ||||||
} | ||||||
|
||||||
.menu-item { | ||||||
list-style: none; | ||||||
height: 60px; | ||||||
line-height: 60px; | ||||||
} | ||||||
|
||||||
.header__container { | ||||||
display: flex; | ||||||
justify-content: space-between; | ||||||
align-items: center; | ||||||
padding: 0 50px; | ||||||
} | ||||||
|
||||||
.header__menu { | ||||||
display: flex; | ||||||
align-items: center; | ||||||
padding: 0; | ||||||
margin: 0; | ||||||
} | ||||||
|
||||||
ul li:not(:last-child) { | ||||||
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.
Suggested change
|
||||||
margin-right: 20px; | ||||||
} | ||||||
|
||||||
.link.link-1 { | ||||||
color: var(--color-header); | ||||||
} | ||||||
|
||||||
.link.link-4:hover { | ||||||
color: var(--color-header); | ||||||
} | ||||||
|
||||||
.is-active::after { | ||||||
display: block; | ||||||
position: absolute; | ||||||
content: ''; | ||||||
width: 37px; | ||||||
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.
Suggested change
|
||||||
height: 4px; | ||||||
background-color: var(--color-header); | ||||||
border-radius: 8px; | ||||||
top: 56px; | ||||||
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.
Suggested change
|
||||||
} | ||||||
|
||||||
/* .container { | ||||||
margin: 0 auto; | ||||||
} */ | ||||||
|
||||||
/* .header__container { | ||||||
display: flex; | ||||||
justify-content: space-between; | ||||||
align-items: center; | ||||||
padding: 10px 50px; | ||||||
} | ||||||
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. Remove comments everywhere |
||||||
|
||||||
.header__nav { | ||||||
height: 15px; | ||||||
} | ||||||
|
||||||
.header__menu { | ||||||
display: flex; | ||||||
margin: 0; | ||||||
padding: 0; | ||||||
} | ||||||
|
||||||
ul li:not(:last-child) { | ||||||
margin-right: 20px; | ||||||
} | ||||||
|
||||||
img { | ||||||
display: block; | ||||||
} | ||||||
|
||||||
a { | ||||||
display: inline-block; | ||||||
} | ||||||
|
||||||
.menu-item { | ||||||
list-style: none; | ||||||
} | ||||||
|
||||||
.link { | ||||||
text-decoration: none; | ||||||
color: var(--color-text); | ||||||
text-transform: uppercase; | ||||||
line-height: 1.2; | ||||||
} | ||||||
|
||||||
.link.link-1 { | ||||||
color: var(--color-header); | ||||||
} | ||||||
|
||||||
.link.link-4:hover { | ||||||
color: var(--color-header); | ||||||
} | ||||||
|
||||||
.is-active::after { | ||||||
display: block; | ||||||
position: absolute; | ||||||
content: ''; | ||||||
width: 37px; | ||||||
height: 4px; | ||||||
background-color: var(--color-header); | ||||||
border-radius: 8px; | ||||||
top: 56px; | ||||||
} */ |
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.
These divs are redundant, so you need to remove it