From 296b65064b6b53fff95acf657170cbaccdb2afce Mon Sep 17 00:00:00 2001 From: Nikita Ovod Date: Sun, 20 Oct 2024 13:58:15 +0300 Subject: [PATCH] add task solution --- readme.md | 6 +++--- src/blocks/stars.css | 24 ++++++++++++++++++++++ src/index.html | 48 +++++++++++++++++++++++++++++++++++++++++++- src/style.css | 6 +++++- 4 files changed, 79 insertions(+), 5 deletions(-) create mode 100644 src/blocks/stars.css diff --git a/readme.md b/readme.md index b8c3a1d3f2..ee9607a35d 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ Implement the [Stars Block](https://www.figma.com/file/ojkArVazq7vsX0nbpn9CxZ/Moyo-%2F-Catalog-(ENG)?node-id=11325%3A2960) used in a card and catalog. -Hold `Alt` key (`Option` on MacOS) to measure distances in Figma. +Hold `Alt` key (`Option` on MacOS) to measure distances in Figma. > Here are the [Layout Tasks Instructions](https://mate-academy.github.io/layout_task-guideline) @@ -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://nikovod.github.io/layout_stars/) +- [TEST REPORT LINK](https://nikovod.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/blocks/stars.css b/src/blocks/stars.css new file mode 100644 index 0000000000..65138b4e1c --- /dev/null +++ b/src/blocks/stars.css @@ -0,0 +1,24 @@ +.stars { + display: flex; +} + +.stars:last-of-type { + padding-bottom: 0; +} + +.stars__star { + height: 16px; + width: 16px; + background-image: url(../images/star.svg); + background-position: center; + margin-right: 4px; + background-repeat: no-repeat; +} + +.stars--1 :first-child, +.stars--2 :nth-child(-n + 2), +.stars--3 :nth-child(-n + 3), +.stars--4 :nth-child(-n + 4), +.stars--5 :nth-child(-n + 5) { + background-image: url(../images/star-active.svg); +} diff --git a/src/index.html b/src/index.html index 3e4d7e8ab0..428d3b303b 100644 --- a/src/index.html +++ b/src/index.html @@ -13,6 +13,52 @@ /> -

Stars

+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
diff --git a/src/style.css b/src/style.css index a63fa10d43..e1a9ff14a8 100644 --- a/src/style.css +++ b/src/style.css @@ -1 +1,5 @@ -/* add styles here */ +@import './blocks/stars.css'; + +body { + margin: 0; +}