-
Notifications
You must be signed in to change notification settings - Fork 4.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
all tests #3776
base: master
Are you sure you want to change the base?
all tests #3776
Conversation
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
.stars--0 .stars__star:nth-child(1), | ||
.stars--0 .stars__star:nth-child(2), | ||
.stars--0 .stars__star:nth-child(3), | ||
.stars--0 .stars__star:nth-child(4), | ||
.stars--0 .stars__star:nth-child(5) { | ||
background-image: url(images/star.svg); | ||
} | ||
|
||
.stars--1 .stars__star:nth-child(2), | ||
.stars--1 .stars__star:nth-child(3), | ||
.stars--1 .stars__star:nth-child(4), | ||
.stars--1 .stars__star:nth-child(5) { | ||
background-image: url(images/star.svg); | ||
} | ||
|
||
.stars--2 .stars__star:nth-child(3), | ||
.stars--2 .stars__star:nth-child(4), | ||
.stars--2 .stars__star:nth-child(5) { | ||
background-image: url(images/star.svg); | ||
} | ||
|
||
.stars--3 .stars__star:nth-child(4), | ||
.stars--3 .stars__star:nth-child(5) { | ||
background-image: url(images/star.svg); | ||
} | ||
|
||
.stars--4 .stars__star:nth-child(5) { | ||
background-image: url(images/star.svg); | ||
} |
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.
It looks quite complicated and a lot of code is duplicated, you need to simplify it and combine the selectors with a comma
@volodymyr-soltys97 all fixed |
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.
Great work!
DEMO LINK
TEST REPORT LINK
Yellow stars are added with container modifier + pseudo-selector (NO extra classes)
Each BEM block has its own separate file
All
Typical Mistakes
fromBEM
lesson theory are checked.Code follows all the Code Style Rules ❗️