-
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
Solution | layout-stars #3757
base: master
Are you sure you want to change the base?
Solution | layout-stars #3757
Changes from 3 commits
20ca744
5fa5c5a
1f37e88
00b3e92
dc5766e
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,43 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. it's not a good practice to reset styles using |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin: 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
padding: 0; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
display: flex; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
list-style: none; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars__star { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin: 0 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. use |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
margin-top: 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. redundant
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
width: 16px; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
height: 14px; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. should have the same width and height |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-size: auto; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-repeat: no-repeat; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars--0 .stars__star:nth-child(n):not(:nth-child(n+1)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star-active.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars--1 .stars__star:nth-child(n):not(:nth-child(n+2)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star-active.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars--2 .stars__star:nth-child(n):not(:nth-child(n+3)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star-active.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars--3 .stars__star:nth-child(n):not(:nth-child(n+4)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star-active.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars--4 .stars__star:nth-child(n):not(:nth-child(n+5)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star-active.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
.stars--5 .stars__star:nth-child(n):not(:nth-child(n+6)) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
background-image: url("images/star-active.svg"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. use as a list
Suggested change
|
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.
please check your deployment since DEMO link leads to readme.md and TEST link leads to 404 page