Skip to content

Instantly share code, notes, and snippets.

@adityatyagi
Created December 24, 2019 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adityatyagi/3a3bbc53079e42d0d3d2dbae128e555d to your computer and use it in GitHub Desktop.
Save adityatyagi/3a3bbc53079e42d0d3d2dbae128e555d to your computer and use it in GitHub Desktop.
#icons-as-fonts {
margin-bottom: 2em;
ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
li {
padding: 0 10px;
i {
font-size: 70px;
&.icon-twitter {
color: #00acee;
font-size: 50px;
}
&.icon-youtube {
color: #c4302b;
font-size: 60px;
}
&.icon-facebook-logo {
color: #3b5998;
background-color: #fff;
transition: all 0.3s ease;
padding: 8px 0;
&:hover {
cursor: pointer;
background: #3b5998;
color: #FFF;
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment