I am a 2nd-year computer science student with a passion for frontend web development and Data Structures and Algorithms (DSA). Proficient in Bootstrap, Tailwind, JavaScript, Adobe XD, HTML, and CSS, I craft visually stunning websites and hold a 4-star rating on HackerRank. My diverse portfolio showc
Latest solutions
Profile card component using HTML, CSS and Javascript.
#accessibility#cube-css#sass/scss#webflow#materialize-cssSubmitted almost 3 years agostats-preview card-component using HTML, CSS and Javascript.
#accessibility#cube-css#tailwind-css#webflow#sass/scssSubmitted almost 3 years agoorder-summary-card using HTML CSS and Javascript.
#accessibility#sass/scss#tailwind-css#webflow#materialize-cssSubmitted almost 3 years agoCalculator using HTML, CSS and Javascript
#accessibility#cube-css#smacss#webflow#webpackSubmitted almost 3 years agoInteractive-card-details-form using HTML, CSS and Js
#accessibility#bootstrap#tailwind-css#webflowSubmitted almost 3 years ago
Latest comments
- @avinashdhauni@satyammjha
Great attempt Avinash. I have a solution for your query. On clicking the rating first remove the active class from all the ratings and add the active class to the targeted rating. You may use the code below:-
e.addEventListener("click", (event) => { rating.classList.remove("active") event.target.classList.add("active") selectedRating = event.target.innerHTML; }) }); ` This might help you. Happy Coding ✌🏻😊
- @MikeOdhiambo@satyammjha
Great attempt @MikeOdhiambo. I have one piece of advice for you. You may add
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; }
for the input type number. It will hide the arrows for input. I hope it helps. Happy Coding ✌🏻🤗.Marked as helpful - @Zaratosh13@satyammjha
Great attempt Abhishek. It's good that you used your own resource but sticking to the design given will help you in the future when you will work for clients. One more piece of advice I have for you is you may use
transition: 0.3s ease
for the button, it will delay the background color change on hovering over the button. Hope it helps. Happy Coding🤗✌🏻.Marked as helpful - @JoeMarv@satyammjha
Great attempt @JoeMarv. I have a few suggestions for you:-
- Please decrease the height and width of the parent div.
- Adjust the height of the `:: before for the eye. So that on hover it will cover the whole NFT image.
- Increase the margin-top for the profile section.
- Add
align-item: center
for the author class.
Hope it helps. Happy Coding🤗✌🏻.
Marked as helpful - @ndrivas87@satyammjha
Great attempt @ndrivas87. I have a few suggestions for you:-
- For the border radius of image use
Border-Radius: 25px 0px 0px 25px
, It will set border radius of the left side of the image to 25px. - You may use
transition: 0.3s ease
for the button so that the change in color of the button on the hover will be smooth. - Use
<br>
after Gabrielle and Eau it will break the line and the title would be the same as given in the design. - You may use
align-items: self-end;
for the price class it will align the old price with the new price. - Use
.card-info .btn {margin-top: 45px;margin-left: 32px;}
. It will bring the button to the correct position.
And one last thing, change the font of the button as it was given in the style guide. Hope it helps. Happy Coding🤗✌🏻
Marked as helpful - For the border radius of image use
- @korede2000@satyammjha
Great work @korede2000. I have a tip for you to improve the button. You may add transition time for the button by using
transition: 0.3s ease
so that it will take some time to change the color of the button on hover. All other things are best according to me. Happy Coding🤗✌🏻