Branimir
@brane10All comments
- @Ahmed1shihabSubmitted 7 months ago@brane10Posted 7 months ago
Hello. You have a small problem with responsiveness. Check out landscape mode for mobile devices. A small part of the content is invisible. Nice greetings :)
1 - @aggie-lSubmitted 7 months agoWhat are you most proud of, and what would you do differently next time?
I am proud of being able to consistently working on Frontend Mentor projects at least for an hour every day.
What challenges did you encounter, and how did you overcome them?N/A
What specific areas of your project would you like help with?Any feedback is welcome and appreciated :)
@brane10Posted 7 months agoHello. You have a small problem with responsiveness. Check out landscape mode for mobile devices. A small part of the content is invisible. Nice greetings :)
Marked as helpful0 - @manuelcardoso5005Submitted 7 months ago@brane10Posted 7 months ago
Hello. You have a small problem with responsiveness. Check out landscape mode for mobile devices. A small part of the content is invisible. Nice greetings :)
Marked as helpful0 - @TanguturipavanSubmitted 7 months ago@brane10Posted 7 months ago
Hey, a little observation. Your items are not vertically aligned very well, maybe you should use a tag instead of div? It is also not necessary to define the height, it was easier for you to just put the padding up and down and you would create the necessary height and then it would be nicely centered. For example, here's how I did it: .container a { color: var(--neutral-white); background-color: var(--neutral-grey); padding: 15px 0; border-radius: 10px; text-decoration: none; width: 30 rem; text-align: center; } All the best and keep going :)
0 - @brane10Submitted 8 months agoWhat are you most proud of, and what would you do differently next time?
.
What challenges did you encounter, and how did you overcome them?.
What specific areas of your project would you like help with?.
@brane10Posted 7 months agoThanks for the observation. I will apply your suggestions. :)
2 - @QodemiSubmitted 7 months agoWhat are you most proud of, and what would you do differently next time?
Its just an html/css project.
What challenges did you encounter, and how did you overcome them?No challenges encountered tho.
What specific areas of your project would you like help with?No difficulty
@brane10Posted 7 months agoHey. Check for mobile phone landscape mode, everything gets messed up. Also in css it is not a good practice to use !important so try to avoid it. If the property did not apply without it, there is a reason somewhere, so debug your code and find the problem. I would also recommend that you define the font-size in percentages in the html and that you use rem instead of px everywhere in the rest of the project. That way your project will be more responsive and you won't have to write a media query or very little. Best regards :)
0 - @sivaoptrSubmitted 7 months ago@brane10Posted 7 months ago
Hey looks good. Do some research to define the body font-size in percentages and use rem instead of px in the rest of the project. Responsiveness will be easier for you. Best regards :)
Marked as helpful0 - @SamahTTSubmitted 7 months ago
- @mohamedkhaled2213Submitted 7 months agoWhat are you most proud of, and what would you do differently next time?
I am very new to javascript so this project boosted my confidence a little bit
@brane10Posted 7 months agoConsider adding a check if the input is empty so that the submit button cannot be clicked. This is how it throws out the message: "You selected out of 5". It's also a good idea to write the JavaScript in a separate document. :)
Marked as helpful0 - @AmitDekaSubmitted 7 months ago@brane10Posted 7 months ago
Greeting! Consider adding a check if the input is empty so that the submit button cannot be clicked. This is how it throws out the message: "You selected out of 5". Also, if you write a media query for the same width: eg @media (min-width: 576px), you don't have to specify it more than once. You define it once and you can style several classes in it :D
Marked as helpful1 - @mcorusaSubmitted 7 months ago@brane10Posted 7 months ago
Hello, very good. I would recommend you to add some transition when opening and closing, to make it a little slower. And you could also optimize the logic in javascript using the ternary operator instead "if":
const imageSource = answer.classList.contains("hidden") ? "assets/images/icon-plus.svg" : "assets/images/icon-minus.svg"; btn.lastElementChild.setAttribute("src", imageSource);
I love your work :D
Marked as helpful0 - @mcorusaSubmitted 9 months ago@brane10Posted 8 months ago
Hello, Small suggestion for the table. Instead of adding a border to td, try to put it on tr and since there is no last border, use the last-child property :)
tr {
border-bottom: 1px solid #ddd;
}
tr:last-child {
border-bottom: 0;
}
I love your work :D
Marked as helpful1