CSS List Social

    
.list-social {
    li {
        display: inline-block;
        margin-right: 10px;

        a {
            text-decoration: none;
            color: #fff;
            border-radius: 50%;
            margin: 0 5px;
            width: 46px;
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: center;

            &.facebook {
                background-color: #3b5998;
            }
            &.youtube {
                background-color: #cc181e;
            }
            &.instagram {
                background-color: #8a3ab9;
            }
            &.twitter {
                background-color: #55acee;
            }
            &.twitter {
                background-color: #55acee;
            }
            &.zalo {
                background-color: #0068ff;
            }
            &.linkedin {
                background-color: #0b66c2;
            }

            img {
                height: 26px;
            }
        }
    }
}