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

first commit #4534

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Conversation

SerhiiUnhurian
Copy link

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

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

Your work is impressive, but there are a few improvements that need to be made. Please consider the suggestions provided, such as using more descriptive class names, adding fallback fonts, and avoiding the use of a * selector. Also, don't forget to add action and method attributes to your form elements, even if they're not going to be used. Keep up the good work! 👍

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

src/index.html Outdated
Comment on lines 20 to 38
<div class="search-wrapper">
<form class="search-bar search-bar--big" data-qa="big">
<input
class="search-bar__input--big"
type="text"
data-qa="keypress"
placeholder="Try “Los Angeles“"
/>
</form>

<input
type="text"
data-qa="hover"
placeholder="Try “Los Angeles“"
/>
<form class="search-bar search-bar--small" data-qa="small">
<input
class="search-bar__input--small"
type="text"
data-qa="hover"
placeholder="Try “Los Angeles“"
/>
</form>
</div>

Choose a reason for hiding this comment

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

You can use the section or main semantic tag instead of the div to wrap your form elements. This will improve the structure of your HTML and make it more accessible.

src/index.html Outdated
Comment on lines 21 to 27
<form class="search-bar search-bar--big" data-qa="big">
<input
class="search-bar__input--big"
type="text"
data-qa="keypress"
placeholder="Try “Los Angeles“"
/>

Choose a reason for hiding this comment

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

The form elements lack the action and method attributes. Even if they're not going to be used in this case, it's a good practice to include them for a complete form definition.

src/index.html Outdated
Comment on lines 30 to 36
<form class="search-bar search-bar--small" data-qa="small">
<input
class="search-bar__input--small"
type="text"
data-qa="hover"
placeholder="Try “Los Angeles“"
/>

Choose a reason for hiding this comment

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

The form elements lack the action and method attributes. Even if they're not going to be used in this case, it's a good practice to include them for a complete form definition.

src/index.html Outdated
<div class="search-wrapper">
<form class="search-bar search-bar--big" data-qa="big">
<input
class="search-bar__input--big"

Choose a reason for hiding this comment

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

The class names search-bar__input--big and search-bar__input--small are not very descriptive. It's better to use class names that describe the meaning of the content, not the styles. For example, you can use search-bar__input-primary and search-bar__input-secondary.

src/index.html Outdated
/>
<form class="search-bar search-bar--small" data-qa="small">
<input
class="search-bar__input--small"

Choose a reason for hiding this comment

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

The class names search-bar__input--big and search-bar__input--small are not very descriptive. It's better to use class names that describe the meaning of the content, not the styles. For example, you can use search-bar__input-primary and search-bar__input-secondary.

src/style.css Outdated
Comment on lines 9 to 15
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Avenir, sans-serif;
font-weight: 300;
}

Choose a reason for hiding this comment

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

You are using a * selector, which is not recommended due to its impact on performance. Please consider using more specific selectors.

src/style.css Outdated
Comment on lines 13 to 14
font-family: Avenir, sans-serif;
font-weight: 300;

Choose a reason for hiding this comment

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

You should add a fallback font to the font-family property in case Avenir font doesn't load. For example, you can use a generic font family like sans-serif as a fallback.

src/style.css Outdated
Comment on lines 17 to 22
.search-wrapper {
display: flex;
flex-direction: column;
width: 100%;
gap: 20px;
}

Choose a reason for hiding this comment

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

It is generally not a good idea to fix container size unless there is a specific requirement to do so. Here you have set a width of 100% for the .search-wrapper class. Consider letting the content size dictate the container size to avoid overflow or accidental scroll bar.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

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

Great job on your HTML! 👍 However, there are a few issues in your CSS that need to be addressed before we can approve this Pull Request. Please ensure the font family is consistent, include a fallback font, and avoid using the * selector due to its impact on performance. Keep up the good work, you're almost there! 😊

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

src/style.css Outdated
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Avenir, sans-serif;

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 generally discouraged due to its impact on performance. It would be better to set these styles for specific elements that require them. (See the CSS section of the checklist)

src/style.css Outdated
@@ -1 +1,86 @@
/* add styles here */
@font-face {
font-family: Avenir, Helvetica, Arial, sans-serif;

Choose a reason for hiding this comment

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

When specifying a font family, it's a good practice to include a fallback font in case the main one doesn't load correctly. In this case, Avenir is not a standard font, so you should include a fallback like sans-serif. (See the CSS section of the checklist)

src/style.css Outdated
}

.search-bar__input:focus {
font-family: Avenir-Heavy, sans-serif;

Choose a reason for hiding this comment

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

Here you're changing the font family on focus, which can lead to a jarring experience for the user. It's better to keep the font family consistent across different states.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

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

Great job on your project! There are a few areas to improve upon, such as avoiding fixed heights on your elements, ensuring your HTML attributes are formatted correctly, and adding empty lines between multiline sibling blocks of HTML for readability. However, these are minor issues and do not hinder the functionality of your code. Keep up the good work and continue to practice and refine your skills. Happy coding! 😊

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

placeholder="Try “Los Angeles“"
/>
</form>
<form

Choose a reason for hiding this comment

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

To add some "air" and simplify reading, add an empty line between sibling blocks of HTML. This is especially helpful for multiline blocks. Remember, don't add them between parent and child elements. [Add empty lines between multiline sibling blocks of HTML]

data-qa="hover"
placeholder="Try “Los Angeles“"
/>
</form>

Choose a reason for hiding this comment

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

To add some "air" and simplify reading, add an empty line between sibling blocks of HTML. This is especially helpful for multiline blocks. Remember, don't add them between parent and child elements. [Add empty lines between multiline sibling blocks of HTML]

@@ -17,16 +17,27 @@
/>

Choose a reason for hiding this comment

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

The link tag and its attributes are not formatted correctly. If the HTML-element has long attribute values or number of attributes is more than 2 - start each one, including the first, on the new line with 2-space indentation related to tag. Tag’s closing bracket should be on the same level as opening one. [Keep your attributes correctly formatted]

.search-bar__input {
display: block;
width: 100%;
margin-top: 20px;

Choose a reason for hiding this comment

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

You have defined a top margin for the .search-bar__input class. As per the checklist, you should be consistent with your margins. Try to add either top or bottom margins, but not both to avoid potential margin collapse.

}

body {
font-family: Avenir, Arial, Helvetica, sans-serif;

Choose a reason for hiding this comment

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

In your body selector, you've defined a font-family. This is good, but remember to also include a fallback font in case the main one doesn't work. You've already done this correctly here.

display: block;
width: 100%;
margin-top: 20px;
font-family: Avenir, Arial, Helvetica, sans-serif;

Choose a reason for hiding this comment

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

You have defined a font-family for the .search-bar__input class. This is unnecessary as the font-family has already been defined in the body selector which will be inherited by all child elements. You can remove this line.

}

.search-bar__input--big {
height: 70px;

Choose a reason for hiding this comment

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

You've fixed the height of the .search-bar__input--big class. Unless there's a specific requirement for this, it's better to let the content size dictate the height of the container. This helps to avoid overflow or accidental scroll bars.

}

.search-bar__input--small {
height: 42px;

Choose a reason for hiding this comment

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

Similar to the above comment, you've fixed the height of the .search-bar__input--small class. Again, unless there's a specific requirement for this, it's better to let the content size dictate the height of the container.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants