-
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 6 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,3 +1,64 @@ | ||||||||||||||||||||||||||||||||||
body { | ||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||
:root { | ||||||||||||||||||||||||||||||||||
--main-text-color: #000; | ||||||||||||||||||||||||||||||||||
--edit-text-color: #00ACDC; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
html, body { | ||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.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__list .nav__item:not(:first-child){ | ||||||||||||||||||||||||||||||||||
margin-left: 20px; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.is-active, | ||||||||||||||||||||||||||||||||||
.nav__link:hover { | ||||||||||||||||||||||||||||||||||
color: var(--edit-text-color); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
.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.
html doesn't have default margin