Skip to content

Commit

Permalink
add task solution
Browse files Browse the repository at this point in the history
  • Loading branch information
iurche committed Aug 4, 2023
1 parent ab95b8d commit d146a60
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 3 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Stars block
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://iurche.github.io/layout_stars/)
- [TEST REPORT LINK](https://iurche.github.io/layout_stars/report/html_report/)

> Follow [this instructions](https://mate-academy.github.io/layout_task-guideline)
___
Expand Down
46 changes: 45 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,50 @@
<link rel="stylesheet" href="./style.css">
</head>
<body>
<h1>Stars</h1>
<div class="stars__container">
<div class="stars stars--0">
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
</div>

<div class="stars stars--1">
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
</div>
<div class="stars stars--2">
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
</div>
<div class="stars stars--3">
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
</div>
<div class="stars stars--4">
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
</div>
<div class="stars stars--5">
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
<span class="stars__star"></span>
</div>
</div>
</body>
</html>
38 changes: 38 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
body {
margin: auto;
}

.stars {
display: flex;
flex-direction: row;
}

.stars__star {
height: 16px;
width: 16px;
margin-right: 4px;
background-image: url(/images/star.svg);
background-size: initial;
background-repeat: no-repeat;
background-position: center;
}

.stars--1 .stars__star:nth-child(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);
}

0 comments on commit d146a60

Please sign in to comment.