-
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
add task solution #3743
base: master
Are you sure you want to change the base?
add task solution #3743
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/index.html
Outdated
<div class="stars stars--0"> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
<div class="stars__star"></div> | ||
</div> | ||
<div class="stars stars--1"> |
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.
<div class="stars stars--0"> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
</div> | |
<div class="stars stars--1"> | |
<div class="stars stars--0"> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
<div class="stars__star"></div> | |
</div> | |
<div class="stars stars--1"> |
Add empty line between multiple sibling blocks of html
src/style.css
Outdated
.stars--1 :nth-child(-n + 1) { | ||
background-image: url(images/star-active.svg); | ||
} | ||
|
||
.stars--2 :nth-child(-n + 2) { | ||
background-image: url(images/star-active.svg); | ||
} | ||
|
||
.stars--3 :nth-child(-n + 3) { | ||
background-image: url(images/star-active.svg); | ||
} | ||
|
||
.stars--4 :nth-child(-n + 4) { | ||
background-image: url(images/star-active.svg); | ||
} | ||
|
||
.stars--5 :nth-child(-n + 5) { | ||
background-image: url(images/star-active.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.
.stars--1 :nth-child(-n + 1) { | |
background-image: url(images/star-active.svg); | |
} | |
.stars--2 :nth-child(-n + 2) { | |
background-image: url(images/star-active.svg); | |
} | |
.stars--3 :nth-child(-n + 3) { | |
background-image: url(images/star-active.svg); | |
} | |
.stars--4 :nth-child(-n + 4) { | |
background-image: url(images/star-active.svg); | |
} | |
.stars--5 :nth-child(-n + 5) { | |
background-image: url(images/star-active.svg); | |
} | |
.stars--1 :nth-child(-n + 1), | |
.stars--2 :nth-child(-n + 2), | |
.stars--2 :nth-child(-n + 3), | |
.stars--2 :nth-child(-n + 4), | |
.stars--2 :nth-child(-n + 5), { | |
background-image: url(images/star-active.svg); | |
} |
Combine this selectors using comma
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.
Well done 🔥
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 ❗️