Skip to content
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 #3742

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

yepolotn1ak
Copy link

@yepolotn1ak yepolotn1ak commented Oct 26, 2023

  • 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 from BEM lesson theory are checked.

  • Code follows all the Code Style Rules ❗️

Copy link

@nazarmatsevych nazarmatsevych left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, good work but let's make some improvements:

  1. No need to add margin-right to the last stars in a row
    image

src/index.html Outdated
Comment on lines 11 to 18
<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">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<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
Comment on lines 18 to 36
.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);
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
.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

Copy link

@volodymyr-soltys97 volodymyr-soltys97 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome 🔥

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants