You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.2 KiB

7 years ago
  1. // 소셜 공유 버튼
  2. .sns-share-wrap {
  3. overflow:hidden;
  4. padding:20px 0;
  5. background-color:#fff;
  6. .sns-share-list {
  7. margin:0;
  8. padding:0px;
  9. list-style:none;
  10. white-space:nowrap;
  11. display:inline-block;
  12. vertical-align:middle;
  13. height:32px;
  14. float:right;
  15. &:after {
  16. clear:both; content:''; display:table;
  17. }
  18. li {
  19. display:block; width:32px; height:32px; float:left;
  20. + li {
  21. margin-left:5px;
  22. }
  23. a {
  24. display:block;
  25. width:32px;
  26. height:32px;
  27. text-indent:-9999px;
  28. overflow:hidden;
  29. background-image:url('../images/social/sns_buttons.png');
  30. background-repeat:no-repeat;
  31. background-size:cover;
  32. &[data-service="facebook"] {
  33. background-position-x:0px;
  34. }
  35. &[data-service="google"] {
  36. background-position-x:-32px;
  37. }
  38. &[data-service="kakaostory"] {
  39. background-position-x:-64px;
  40. }
  41. &[data-service="band"] {
  42. background-position-x:-96px;
  43. }
  44. &[data-service="naver"] {
  45. background-position-x:-128px;
  46. }
  47. } // a
  48. } // li
  49. } // .sns-share-list
  50. } //.sns-share-wrap