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 #4863

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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://clavigo.github.io/layout_stars/)
- [TEST REPORT LINK](https://clavigo.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
48 changes: 47 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,52 @@
/>
</head>
<body>
<h1>Stars</h1>
<div class="stars stars--0">
<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>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Keep your attributes correctly formatted. If the HTML element has long attribute values or a number of attributes is more than 2, start each one on a new line with 2-space indentation relative to the tag. The tag content attribute value is too long and should be broken down into multiple lines.


<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>
Comment on lines 15 to +62

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add empty lines between multiline sibling blocks of HTML to add some 'air' and simplify reading. For example, add an empty line between the closing of one '.stars' block and the opening

of the next one.

</body>
</html>
36 changes: 36 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1 +1,37 @@
/* add styles here */
body {
margin: 0;
}

.stars {
display: flex;
}
Comment on lines +6 to +8

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The use of the * selector is discouraged due to performance reasons. In this case, it is not present, but keep this in mind for future reference.


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

.stars--1 .stars__star:nth-child(-n + 1) {
background-image: url(/src/images/star-active.svg);
}
Comment on lines +19 to +21

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's good practice to use classes for styling instead of tag names. However, in this code, you're properly using classes, which is great.


.stars--2 .stars__star:nth-child(-n + 2) {
background-image: url(/src/images/star-active.svg);
}

.stars--3 .stars__star:nth-of-type(-n + 3) {
background-image: url(/src/images/star-active.svg);
}

.stars--4 .stars__star:nth-of-type(-n + 4) {
background-image: url(/src/images/star-active.svg);
}

.stars--5 .stars__star:nth-of-type(-n + 6) {
background-image: url(/src/images/star-active.svg);
}
Comment on lines +35 to +37

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There seems to be a typo in the selector .stars--5 .stars__star:nth-of-type(-n + 6). It should be -n + 5 to match exactly five stars. Please correct it to .stars--5 .stars__star:nth-of-type(-n + 5).

Loading