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

  • Holow 100

    @HollowZll

    Submitted

    Trying to learn doing this css challenges in less than a day. As of this challenge the only thing I couldn't do as intended are the sc icons(meaning I couldn't change them with css to white from the black that were original)

    Lorena 130

    @elorenn

    Posted

    Try doing the following for the social icons:

    /*  this will turn them white and give you the proper pointing-hand-cursor */
    .icon {
        filter: brightness(5);
        cursor: pointer;
    } 
    
    
    /* this will turn them a bright pink on hover and when selected with keyboard */
    .icon:hover, .icon:focus, .icon:active {
        filter: brightness(2) hue-rotate(55deg) saturate(6);
    }
    

    Marked as helpful

    0