Passionate about game dev, pixel art, technology, and science. I worked remotely as a Tracking & Driver Manager in the US logistics industry. Committed to succeeding in web dev and actually having a job that I enjoy. Excited to bring value to innovative and creative companies. Let's code happiness!
I’m currently learning...Brushing up my rusty HTML, CSS, and JS skills. Strong foundations first!
Latest solutions
Latest comments
- @yudhaCodeSubmitted almost 2 years ago@floatingPebblePosted almost 2 years ago
Hey, your solution looks great!
Did you try loading fonts with
<link>
in HTML and not with@import
in CSS? It is the recommended way of loading fonts in order to speed up the page loading time.Also, try wrapping your images in
<figure>
instead of generic<div>
containers. It is good for semantic meaning, SEO, and accessibility.Cheers, and happy coding!
Marked as helpful0 - @dhovemSubmitted almost 2 years agoWhat are you most proud of, and what would you do differently next time?
me ha quedado bastante parecido al diseno original
What challenges did you encounter, and how did you overcome them?aprender acerca de flexbox
What specific areas of your project would you like help with?codigo limpio
@floatingPebblePosted almost 2 years agoLooks great and clean!
Maybe you should consider deleting their footer thingy and
flex-direction: column
and the top container'smargin-top
in order for centering to work. Their footer/author stuff will only make it hard to align your solution with their footerless design.Cheers, and happy coding!
0 - @victorhugomarinocaproniSubmitted almost 2 years ago@floatingPebblePosted almost 2 years ago
Hey, it looks great!
As for HTML tags, you are missing the <main> tag for your top container. Also, it would be better to use <figure> for the image container instead of generic <div>.
Cheers!
Marked as helpful0 - @golfingtrexSubmitted almost 2 years ago@floatingPebblePosted almost 2 years ago
Hey, excellent work!
For the NFT on hover issue, you can try my solution. First, give your NFT container
position: relative
. Then add the container with the "eye" image inside it. That new container should haveposition: absolute
andopacity: 0
, stretch it to match the outer container so it will match the NFT image in size. Now you can change its opacity to 1 and set the background color when you hover over it. Here is my solution:https://github.com/floatingPebble/floatingPebble.nft-preview-card-component-FM.io
Let me know if I can help with something. Cheers!
1 - @danijarevSubmitted almost 2 years ago@floatingPebblePosted almost 2 years ago
Looks really nice!
I've noticed the following:
- Looks like you forgot to change the title text
color
from default black. - It is a best practice to avoid using generic
<div>
tags if possible, so in this case, you can use<main>
tag on your main-container element. border-radius
looks a little bigger than it should be. Maybe try setting it to 12px.
I hope you find this helpful.
Cheers, and happy coding!
1 - Looks like you forgot to change the title text