From 6a8115e06b4ca02e4298c5d2c37a04ea7c04a04e Mon Sep 17 00:00:00 2001 From: PavloYurievich Date: Sun, 27 Oct 2024 20:58:06 +0100 Subject: [PATCH 1/2] add task solution --- readme.md | 4 ++-- src/index.html | 47 +++++++++++++++++++++++++++++++++++++++++++++-- src/style.css | 28 +++++++++++++++++++++++++++- 3 files changed, 74 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index b8c3a1d3f2..be899ca08a 100644 --- a/readme.md +++ b/readme.md @@ -22,8 +22,8 @@ Hold `Alt` key (`Option` on MacOS) to measure distances in Figma. ❗️ Replace `` with your Github username and copy the links to `Pull Request` description: -- [DEMO LINK](https://.github.io/layout_stars/) -- [TEST REPORT LINK](https://.github.io/layout_stars/report/html_report/) +- [DEMO LINK](https://PavloYurievich.github.io/layout_stars/) +- [TEST REPORT LINK](https://PavloYurievich.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. diff --git a/src/index.html b/src/index.html index 3e4d7e8ab0..5b6344da84 100644 --- a/src/index.html +++ b/src/index.html @@ -9,10 +9,53 @@ Stars -

Stars

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/style.css b/src/style.css index a63fa10d43..353a6464ab 100644 --- a/src/style.css +++ b/src/style.css @@ -1 +1,27 @@ -/* add styles here */ +* { + margin: 0; + padding: 0; +} + +.stars { + display: flex; +} + +.stars__star { + width: 16px; + height: 16px; + background: url(./images/star.svg) no-repeat center; + margin-right: 4px; +} + +.stars__star:last-child { + margin-right: 0; +} + +.stars--1 .stars__star:nth-child(-n + 1), +.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(./images/star-active.svg); +} From 0c83db035e19c5aef713d34b3156671e6322e726 Mon Sep 17 00:00:00 2001 From: PavloYurievich Date: Sun, 27 Oct 2024 21:15:03 +0100 Subject: [PATCH 2/2] add task solution --- src/index.html | 9 +++++++-- src/style.css | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src/index.html b/src/index.html index 5b6344da84..febde67467 100644 --- a/src/index.html +++ b/src/index.html @@ -13,7 +13,7 @@ /> -
+
@@ -21,6 +21,7 @@
+
@@ -28,6 +29,7 @@
+
@@ -35,6 +37,7 @@
+
@@ -42,6 +45,7 @@
+
@@ -49,6 +53,7 @@
+
@@ -56,6 +61,6 @@
-
+ diff --git a/src/style.css b/src/style.css index 353a6464ab..a0b02d5a08 100644 --- a/src/style.css +++ b/src/style.css @@ -1,4 +1,4 @@ -* { +body { margin: 0; padding: 0; }