Advertisement
b0rn-to-be-wild

SHARE WIDGET v.2 CSS

Mar 5th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. /*----- SHARE WIDGET BY BORNTOBEWILDCODES v.2 -----*/
  2.  
  3. .share_widget{
  4. /* Widget position */
  5. margin-top:5px;
  6. margin-left:0px;
  7. width:150px;
  8. height:30px;
  9. text-align:left;
  10. /* Widget background */
  11. background:#eee;
  12. /* Widget border */
  13. border:1px solid #eee;
  14. border-radius:2px;
  15. overflow:hidden;
  16. }
  17.  
  18. .share_widget i {
  19. display:inline-block;
  20. margin:0px;
  21. margin-left:-4px;
  22. /* Icon size */
  23. width:20px;
  24. height:20px;
  25. line-height:20px;
  26. padding:5px;
  27. font-size:16px;
  28. /* Icon color */
  29. color:#333;
  30. background:;
  31. border-left:1px solid #ddd;
  32. text-align:center;
  33. list-style:none;
  34. }
  35.  
  36. .share_widget a:first-child {
  37. border-left:1px solid transparent;
  38. }
  39.  
  40. .share_widget i:hover {
  41. background:#ddd;
  42. color:#000;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement