-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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 #4691
base: master
Are you sure you want to change the base?
add task solution #4691
Changes from 4 commits
5ed60ae
50bc100
eaf1fa5
176598f
37c604a
0252ff6
3b48d9a
c783906
a7ccd35
d4d253d
645acf4
0588cc8
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,14 +1,62 @@ | ||
<!doctype 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>Moyo header</title> | ||
<link rel="stylesheet" href="./style.css"> | ||
<link | ||
rel="stylesheet" | ||
href="/src/style.css"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap"> | ||
|
||
</head> | ||
<body> | ||
<h1>Moyo header</h1> | ||
<header class="header"> | ||
<a href="#" class="logo"> | ||
<img src="/src/images/logo.png" alt="moyo-logo"> | ||
</a> | ||
|
||
<nav class="nav"> | ||
<ul class="nav__list"> | ||
<li class="nav__item"> | ||
<a href="#" class="nav__link is-active blue-link">Apple</a> | ||
</li> | ||
|
||
<li class="nav__item"> | ||
<a href="#" class="nav__link">Samsung</a> | ||
</li> | ||
|
||
<li class="nav__item"> | ||
<a href="#" class="nav__link">Smartphones</a> | ||
</li> | ||
|
||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
data-qa="hover">Laptops & Computers | ||
</a> | ||
</li> | ||
|
||
<li class="nav__item"> | ||
<a href="#" class="nav__link">Gadgets</a> | ||
</li> | ||
|
||
<li class="nav__item"> | ||
<a href="#" class="nav__link">Tablets</a> | ||
</li> | ||
|
||
<li class="nav__item"> | ||
<a href="#" class="nav__link">Photo</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a href="#" class="nav__link">Video</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</header> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,3 +1,70 @@ | ||||||||||||||||||||||||||||||||||
body { | ||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||
:root { | ||||||||||||||||||||||||||||||||||
--main-text-color: #000; | ||||||||||||||||||||||||||||||||||
--edit-text-color: #00ACDC; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
html, body { | ||||||||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||
padding:0; | ||||||||||||||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||||||||||||||
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
|
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.header { | ||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||||||
padding: 0 50px; | ||||||||||||||||||||||||||||||||||
font-size: 12px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.logo { | ||||||||||||||||||||||||||||||||||
height: 40px; | ||||||||||||||||||||||||||||||||||
width: 40px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.nav__list{ | ||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||
justify-content: flex-end; | ||||||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||||||
text-align: center; | ||||||||||||||||||||||||||||||||||
list-style: none; | ||||||||||||||||||||||||||||||||||
padding: 0; | ||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||
text-transform: uppercase; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.nav__link { | ||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||
position: relative; | ||||||||||||||||||||||||||||||||||
height: 60px; | ||||||||||||||||||||||||||||||||||
justify-content: center; | ||||||||||||||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||||||||||||||
flex-direction: column; | ||||||||||||||||||||||||||||||||||
text-decoration: none; | ||||||||||||||||||||||||||||||||||
color: var(--main-text-color); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
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
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. 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. You can try just to add 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. |
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.nav__item{ | ||||||||||||||||||||||||||||||||||
margin-left: 20px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.nav__list > :first-child{ | ||||||||||||||||||||||||||||||||||
margin-left: 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. you can just use 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. Thank you for suggestion. It is looks better. |
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.blue-link, | ||||||||||||||||||||||||||||||||||
.nav__link:hover { | ||||||||||||||||||||||||||||||||||
color: var(--edit-text-color); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
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
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. Thank you for this suggestion |
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.is-active::after { | ||||||||||||||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||||||||||||||
height: 4px; | ||||||||||||||||||||||||||||||||||
content: ""; | ||||||||||||||||||||||||||||||||||
background-color: var(--edit-text-color); | ||||||||||||||||||||||||||||||||||
border-radius: 8px; | ||||||||||||||||||||||||||||||||||
position: absolute; | ||||||||||||||||||||||||||||||||||
bottom: 0; | ||||||||||||||||||||||||||||||||||
} |
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.
I believe that you don't need this class
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.
is-active
is enough for such case