-
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
add task solution #4930
base: master
Are you sure you want to change the base?
add task solution #4930
Changes from 1 commit
90533da
0f8849f
49f1d27
c71e72c
fc82cb2
e5c2e36
262378d
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 | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -15,8 +15,91 @@ | |||||||||||||||||||||||
rel="stylesheet" | ||||||||||||||||||||||||
href="./style.css" | ||||||||||||||||||||||||
/> | ||||||||||||||||||||||||
<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:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" | ||||||||||||||||||||||||
rel="stylesheet" | ||||||||||||||||||||||||
/> | ||||||||||||||||||||||||
</head> | ||||||||||||||||||||||||
<body> | ||||||||||||||||||||||||
<h1>Moyo header</h1> | ||||||||||||||||||||||||
<header> | ||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
href="index.html" | ||||||||||||||||||||||||
class="logo-link" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<img | ||||||||||||||||||||||||
src="images/logo.png" | ||||||||||||||||||||||||
alt="sorry we dont have any images now" | ||||||||||||||||||||||||
class="logo" | ||||||||||||||||||||||||
/> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
<nav class="roboto-medium"> | ||||||||||||||||||||||||
<ul> | ||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link is-active" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Apple</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
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
tag |
||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Samsung</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Smartphones</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
data-qa="hover" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Laptops & Computers</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Gadgets</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Tablets</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Photo</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
<a | ||||||||||||||||||||||||
class="page-link" | ||||||||||||||||||||||||
href="#" | ||||||||||||||||||||||||
> | ||||||||||||||||||||||||
<li>Video</li> | ||||||||||||||||||||||||
</a> | ||||||||||||||||||||||||
</ul> | ||||||||||||||||||||||||
</nav> | ||||||||||||||||||||||||
</header> | ||||||||||||||||||||||||
</body> | ||||||||||||||||||||||||
</html> |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,3 +1,90 @@ | ||||||||||||||||||||||||
body { | ||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
header { | ||||||||||||||||||||||||
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. use class selector here |
||||||||||||||||||||||||
font-size: 12px; | ||||||||||||||||||||||||
text-transform: uppercase; | ||||||||||||||||||||||||
box-sizing: border-box; | ||||||||||||||||||||||||
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. use this style with * selector |
||||||||||||||||||||||||
width: 100vw; | ||||||||||||||||||||||||
background-color: #ffff; | ||||||||||||||||||||||||
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
|
||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
padding: 0 50px; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.logo-link { | ||||||||||||||||||||||||
display: block; | ||||||||||||||||||||||||
width: 40px; | ||||||||||||||||||||||||
height: 40px; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.logo { | ||||||||||||||||||||||||
width: 40px; | ||||||||||||||||||||||||
height: 40px; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
ul { | ||||||||||||||||||||||||
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. use class selector here |
||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||
padding: 0; | ||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||
list-style: none; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.page-link { | ||||||||||||||||||||||||
margin-left: 20px; | ||||||||||||||||||||||||
position: relative; | ||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||
height: 60px; | ||||||||||||||||||||||||
text-decoration: none; | ||||||||||||||||||||||||
color: #000; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.page-link:first-child { | ||||||||||||||||||||||||
margin-left: 0; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.page-link:hover { | ||||||||||||||||||||||||
color: #00acdc; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.is-active { | ||||||||||||||||||||||||
color: #00acdc; | ||||||||||||||||||||||||
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. better to move it to some var and reuse everywhere |
||||||||||||||||||||||||
} | ||||||||||||||||||||||||
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
|
||||||||||||||||||||||||
|
||||||||||||||||||||||||
.is-active::after { | ||||||||||||||||||||||||
content: ''; | ||||||||||||||||||||||||
position: absolute; | ||||||||||||||||||||||||
bottom: 0; | ||||||||||||||||||||||||
left: 0; | ||||||||||||||||||||||||
right: 0; | ||||||||||||||||||||||||
width: 37px; | ||||||||||||||||||||||||
height: 4px; | ||||||||||||||||||||||||
border-radius: 8px; | ||||||||||||||||||||||||
background-color: #00acdc; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
/* #REGION start */ | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.roboto-regular { | ||||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||||
font-weight: 400; | ||||||||||||||||||||||||
font-style: normal; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.roboto-medium { | ||||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||||
font-weight: 500; | ||||||||||||||||||||||||
font-style: normal; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
.roboto-bold { | ||||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||||
font-weight: 700; | ||||||||||||||||||||||||
font-style: normal; | ||||||||||||||||||||||||
} | ||||||||||||||||||||||||
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 part looks redundant. Just connect font-family and font-style to html selector and use appropriate font-weight in other selectors |
||||||||||||||||||||||||
|
||||||||||||||||||||||||
/* #REGION end */ |
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.
Add space between elements on one level depths