-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
Develop #5335
base: master
Are you sure you want to change the base?
Develop #5335
Conversation
vmohnach
commented
Sep 3, 2024
- DEMO LINK
- TEST REPORT LINK
src/style.css
Outdated
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
position: relative; | ||
} | ||
|
||
img { | ||
margin: 10px 50px; | ||
} | ||
|
||
nav { | ||
margin-right: 50px; | ||
} | ||
|
||
ul { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
display: flex; | ||
} | ||
|
||
li { | ||
margin-left: 20px; | ||
} | ||
|
||
li:first-child { | ||
margin-left: 0; | ||
} | ||
|
||
li:last-child { | ||
margin-right: 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.
src/style.css
Outdated
header { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
position: relative; | ||
} | ||
|
||
img { | ||
margin: 10px 50px; | ||
} |
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.
header { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
position: relative; | |
} | |
img { | |
margin: 10px 50px; | |
} | |
header { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
position: relative; | |
padding: 0 50px; | |
} | |
img { | |
margin: 10px 0; | |
} |
src/style.css
Outdated
} | ||
|
||
nav { | ||
margin-right: 50px; |
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.
and now you can remove it
Co-authored-by: Denys Semtso <[email protected]>
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.
pls, fix all prev comments or feel free to ask for some help in the chat
- you need to rewrite your styles using class selectors
- remove margin nav element
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.
Hi, you need to fix all comments from the previous review, if you need help feel free in the fe_chat
src/index.html
Outdated
href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<link | ||
rel="stylesheet" | ||
href="./style.css" | ||
/> | ||
</head> | ||
<body> | ||
<h1>Moyo header</h1> |
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.
Remove it
<h1>Moyo header</h1> |
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.
almost done, just fix the index.html
src/index.html
Outdated
|
||
<nav class="nav"> | ||
<ul class="nav_list"> | ||
<li class="nav-item"> <a href="#apple" class="is-active button-link">APPLE</a></li> |
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.
<li class="nav-item"> <a href="#apple" class="is-active button-link">APPLE</a></li> | |
<li class="nav-item"> | |
<a href="#apple" class="is-active button-link"> | |
APPLE | |
</a> | |
</li> |