-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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 #5728
base: master
Are you sure you want to change the base?
Develop #5728
Changes from 6 commits
510b8e6
b9303f6
0f01bdc
7d826be
d0cbf98
774dce2
a1b3ce8
8d6c7b7
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,75 @@ | ||||||||||||||||||||||
body { | ||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.logo img { | ||||||||||||||||||||||
max-height: 40px; | ||||||||||||||||||||||
margin-left: 50px; | ||||||||||||||||||||||
margin-top: 10px; | ||||||||||||||||||||||
margin-bottom: 10px; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
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; | ||||||||||||||||||||||
align-items: center; | ||||||||||||||||||||||
justify-content: space-between; | ||||||||||||||||||||||
background-color: #fff; | ||||||||||||||||||||||
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 color is default
Suggested change
|
||||||||||||||||||||||
font-weight: 500; | ||||||||||||||||||||||
width: 1024px; | ||||||||||||||||||||||
position: relative; | ||||||||||||||||||||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0, 5); | ||||||||||||||||||||||
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. The box-shadow property has an incorrect value 'rgba(0, 0, 0, 0, 5)'. The last parameter should be a decimal between 0 and 1 to represent opacity. Consider correcting this to achieve the desired shadow effect. |
||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||
margin-right: 0 50px; | ||||||||||||||||||||||
box-sizing: border-box; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__list { | ||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||
padding: 0; | ||||||||||||||||||||||
list-style: none; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__item { | ||||||||||||||||||||||
margin-right: 20px; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__link { | ||||||||||||||||||||||
text-decoration: none; | ||||||||||||||||||||||
color: #000; | ||||||||||||||||||||||
line-height: 60px; | ||||||||||||||||||||||
font-family: Roboto, sans-serif; | ||||||||||||||||||||||
font-weight: 500; | ||||||||||||||||||||||
text-transform: uppercase; | ||||||||||||||||||||||
display: block; | ||||||||||||||||||||||
text-align: center; | ||||||||||||||||||||||
font-size: 12px; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__link.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. Create a variable for repeated color and use it everywhere |
||||||||||||||||||||||
position: relative; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__list:first-child { | ||||||||||||||||||||||
margin-left: 0; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__list:last-child { | ||||||||||||||||||||||
margin-right: 0; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
Comment on lines
+50
to
+56
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
looks like redundant |
||||||||||||||||||||||
|
||||||||||||||||||||||
.nav__link:hover { | ||||||||||||||||||||||
color: #00acdc; | ||||||||||||||||||||||
} | ||||||||||||||||||||||
|
||||||||||||||||||||||
.is-active::after { | ||||||||||||||||||||||
content: ''; | ||||||||||||||||||||||
position: absolute; | ||||||||||||||||||||||
bottom: 0; | ||||||||||||||||||||||
left: 0; | ||||||||||||||||||||||
width: 100%; | ||||||||||||||||||||||
height: 4px; | ||||||||||||||||||||||
border-radius: 8px; | ||||||||||||||||||||||
background-color: #00acdc; | ||||||||||||||||||||||
} |
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.
The 'data-qa' attribute is not explained or used in the code. If it's not needed, consider removing it to avoid confusion. If it serves a purpose, ensure it is documented or utilized properly.