From 1ace365fb0cc4dc33963dd208072fc4833179c4a Mon Sep 17 00:00:00 2001 From: Yurii Tymkiv Date: Fri, 4 Oct 2024 13:30:40 +0200 Subject: [PATCH 1/2] add stars --- readme.md | 4 ++-- src/index.html | 49 ++++++++++++++++++++++++++++++++++++++++++++++++- src/style.css | 24 ++++++++++++++++++++++++ 3 files changed, 74 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 1e05c44f12..2715d8436b 100644 --- a/readme.md +++ b/readme.md @@ -21,8 +21,8 @@ Follow ❗️ 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://yuurex.github.io/layout_stars/) +- [TEST REPORT LINK](https://yuurex.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..0a1df0301f 100644 --- a/src/index.html +++ b/src/index.html @@ -12,7 +12,54 @@ href="./style.css" /> + -

Stars

+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
+
+
diff --git a/src/style.css b/src/style.css index a63fa10d43..801db9477a 100644 --- a/src/style.css +++ b/src/style.css @@ -1 +1,25 @@ /* add styles here */ +body { + margin: 0; +} + +.stars { + display: flex; +} + +.stars__star { + background-image: url(images/star.svg); + width: 16px; + height: 16px; + margin-right: 4px; + background-repeat: no-repeat; + background-position: center; +} + +.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 e9626bdfe4c89784051962465df8dc479ebdbb3f Mon Sep 17 00:00:00 2001 From: Yurii Tymkiv Date: Sun, 27 Oct 2024 14:18:36 +0200 Subject: [PATCH 2/2] bug fix --- src/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/style.css b/src/style.css index 801db9477a..cd7b0adfca 100644 --- a/src/style.css +++ b/src/style.css @@ -1,4 +1,4 @@ -/* add styles here */ + body { margin: 0; }