Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • @quadri101

    Posted

    You should reset the form when the user clicks continue

    0
  • eric ogbe 70

    @EricOgbe

    Submitted

    Could someone explain how to get the green filter over the image like in the active-state example.

    thank you!

    @quadri101

    Posted

    -The card looks squished on phones

    You could have used rem for the container width instead of viewport-width

    #To get the green filter effect over the image# -Wrap the image and an empty div in a div

    • give the parent div a position relative and child position absolute. -then
    .child {
    left:0;
    top:0;
    height:100%;
    width:100%;
    opacity:0;
    background-color: color;
    }
    .parent:hover .child{
    opacity: .3;
    }
    
    
    0