Advertisement
info1atual

CSS - Ícones Font Awesome das redes sociais

Jun 17th, 2020
4,494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.75 KB | None | 0 0
  1.  
  2. /*Change icons circle size and color here*/
  3. .social-icons .fa {
  4.  width: 50px;
  5.  height: 50px;
  6.  line-height: 50px;
  7.  text-align: center;
  8.  color: #FFF;
  9.  color: rgba(255, 255, 255, 0.8);
  10.  -webkit-transition: all 0.3s ease-in-out;
  11.  -moz-transition: all 0.3s ease-in-out;
  12.  -ms-transition: all 0.3s ease-in-out;
  13.  -o-transition: all 0.3s ease-in-out;
  14.  transition: all 0.3s ease-in-out;
  15. }
  16.  
  17. .social-icons.icon-circle .fa{
  18.  border-radius: 50%;
  19. }
  20. .social-icons.icon-rounded .fa{
  21.  border-radius:5px;
  22. }
  23. .social-icons.icon-flat .fa{
  24.  border-radius: 0;
  25. }
  26. .social-icons .fa-adn{background-color:#504e54;}
  27. .social-icons .fa-apple{background-color:#aeb5c5;}
  28. .social-icons .fa-android{background-color:#A5C63B;}  
  29. .social-icons .fa-bitbucket,.social-icons .fa-bitbucket-square{background-color:#003366;}
  30. .social-icons .fa-bitcoin,.social-icons .fa-btc{background-color:#F7931A;}
  31. .social-icons .fa-css3{background-color:#1572B7;}
  32. .social-icons .fa-dribbble{background-color:#F46899;}  
  33. .social-icons .fa-dropbox{background-color:#018BD3;}
  34. .social-icons .fa-facebook,.social-icons .fa-facebook-square{background-color:#3C599F;}  
  35. .social-icons .fa-flickr{background-color:#FF0084;}
  36. .social-icons .fa-foursquare{background-color:#0086BE;}
  37. .social-icons .fa-github,.social-icons .fa-github-alt,.social-icons .fa-github-square{background-color:#070709;}
  38. .social-icons .fa-google-plus,.social-icons .fa-google-plus-square{background-color:#CF3D2E;}
  39. .social-icons .fa-html5{background-color:#E54D26;}
  40. .social-icons .fa-instagram{background-color:#A1755C;}
  41. .social-icons .fa-linkedin,.social-icons .fa-linkedin-square{background-color:#0085AE;}
  42. .social-icons .fa-linux{background-color:#FBC002;color:#333;}
  43. .social-icons .fa-maxcdn{background-color:#F6AE1C;}
  44. .social-icons .fa-pagelines{background-color:#241E20;color:#3984EA;}
  45. .social-icons .fa-pinterest,.social-icons .fa-pinterest-square{background-color:#CC2127;}
  46. .social-icons .fa-renren{background-color:#025DAC;}
  47. .social-icons .fa-skype{background-color:#01AEF2;}
  48. .social-icons .fa-stack-exchange{background-color:#245590;}
  49. .social-icons .fa-stack-overflow{background-color:#FF7300;}
  50. .social-icons .fa-trello{background-color:#265A7F;}
  51. .social-icons .fa-tumblr,.social-icons .fa-tumblr-square{background-color:#314E6C;}
  52. .social-icons .fa-twitter,.social-icons .fa-twitter-square{background-color:#32CCFE;}
  53. .social-icons .fa-vimeo-square{background-color:#229ACC;}
  54. .social-icons .fa-vk{background-color:#375474;}
  55. .social-icons .fa-weibo{background-color:#D72B2B;}
  56. .social-icons .fa-windows{background-color:#12B6F3;}
  57. .social-icons .fa-xing,.social-icons .fa-xing-square{background-color:#00555C;}
  58. .social-icons .fa-youtube,.social-icons .fa-youtube-play,.social-icons .fa-youtube-square{background-color:#C52F30;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement