-
Notifications
You must be signed in to change notification settings - Fork 5.7k
stars in plase #6585
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
base: master
Are you sure you want to change the base?
stars in plase #6585
Changes from 1 commit
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,32 @@ | ||
| /* add styles here */ | ||
|
|
||
| body { | ||
| margin: 0; | ||
| } | ||
|
|
||
| .stars { | ||
| display: flex; | ||
| padding: 0; | ||
| } | ||
|
|
||
| .stars__star { | ||
| display: block; | ||
| margin-right: 4px; | ||
| width: 16px; | ||
| height: 16px; | ||
| background-image: url(/src/images/star.svg); | ||
| background-position: center; | ||
| background-repeat: no-repeat; | ||
| } | ||
|
|
||
| .stars > .stars__star:last-child { | ||
| margin: 0; | ||
| } | ||
|
|
||
| .stars--1 > .stars__star:first-child, | ||
| .stars--2 > .stars__star:nth-child(-n + 2), | ||
| .stars--3 > .stars__star:nth-child(-n + 3), | ||
| .stars--4 > .stars__star:nth-child(-n + 4), | ||
| .stars--5 > .stars__star:nth-child(-n + 5) { | ||
| background-image: url(/src/images/star-active.svg); | ||
| } | ||
|
Comment on lines
+7
to
+32
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 violates checklist item #2: 'Each BEM block has its own separate file'. All styles for the |
||
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 paths to the background images are absolute from the server root. This can cause problems when deploying to a subdirectory, like on GitHub Pages. It's better to use relative paths from the CSS file, for example:
url('images/star.svg').