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 solution #4830

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Follow

❗️ Replace `<your_account>` with your Github username and copy the links to `Pull Request` description:

- [DEMO LINK](https://<your_account>.github.io/layout_stars/)
- [TEST REPORT LINK](https://<your_account>.github.io/layout_stars/report/html_report/)
- [DEMO LINK](https://Vl-Tsr.github.io/layout_stars/)
- [TEST REPORT LINK](https://Vl-Tsr.github.io/layout_stars/report/html_report/)

❗️ Copy this `Checklist` to the `Pull Request` description after links, and put `- [x]` before each point after you checked it.

Expand Down
44 changes: 43 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,49 @@
href="./style.css"
/>
</head>

<body>
<h1>Stars</h1>
<div class="stars stars--0">
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
<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>
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
</div>
<div class="stars stars--1">
<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--2">
<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--3">
<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--4">
<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--5">
<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>
</body>
</html>
37 changes: 36 additions & 1 deletion src/style.css
Original file line number Diff line number Diff line change
@@ -1 +1,36 @@
/* add styles here */
body {
margin: 0;
}

.stars {
display: flex;
}

.stars__star {
background-image: url(./images/star.svg);
width: 16px;
height: 16px;
background-position: center;
background-repeat: no-repeat;
margin-right: 4px;
}
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved

.stars--5 div {
background-image: url(./images/star-active.svg);
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
}

.stars--1 div:first-child {
background-image: url(./images/star-active.svg);
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
}

.stars--2 div:nth-child(-n + 2) {
background-image: url(./images/star-active.svg);
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
}

.stars--3 div:nth-child(-n + 3) {
background-image: url(./images/star-active.svg);
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
}

.stars--4 div:not(:last-child) {
background-image: url(./images/star-active.svg);
Vl-Tsr marked this conversation as resolved.
Show resolved Hide resolved
}
Loading