-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 stars box #5361
base: master
Are you sure you want to change the base?
add stars box #5361
Changes from all commits
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 +1,45 @@ | ||
/* add styles here */ | ||
html { | ||
margin: 0; | ||
background-color: gray; | ||
} | ||
|
||
.container { | ||
width: 96px; | ||
height: 116px; | ||
background-color: black; | ||
} | ||
|
||
Comment on lines
+6
to
+10
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. Each BEM block should have its own file according to the task requirements. Consider separating the styles for different blocks into individual files for better maintainability. |
||
|
||
.stars { | ||
display: flex; | ||
margin: 4px 0px; | ||
} | ||
|
||
.stars__star { | ||
background-image: url('images/star.svg'); | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
width: 16px; | ||
height: 16px; | ||
margin: 0px 2px; | ||
} | ||
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 task specifies not to use the |
||
|
||
.stars--1 .stars__star:nth-child(-n+1) { | ||
background-image: url('images/star-active.svg'); | ||
} | ||
|
||
.stars--2 .stars__star:nth-child(-n+2) { | ||
background-image: url('images/star-active.svg'); | ||
} | ||
|
||
.stars--3 .stars__star:nth-child(-n+3) { | ||
background-image: url('images/star-active.svg'); | ||
} | ||
|
||
.stars--4 .stars__star:nth-child(-n+4) { | ||
background-image: url('images/star-active.svg'); | ||
} | ||
|
||
.stars--5 .stars__star: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.
The task requires using pseudo-selectors to activate the first
N
stars, but the current implementation does not follow this requirement. Consider using CSS pseudo-selectors to manage the active state of the stars.