_site-social-navigation.scss 779 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .social-navigation {
  2. // margin-top: calc(-1.5 * #{map-deep-get($config-global, "spacing", "vertical")});
  3. & > div > ul {
  4. align-content: center;
  5. display: flex;
  6. list-style: none;
  7. margin: 0;
  8. padding-left: 0;
  9. & > li:first-of-type > a {
  10. padding-left: 0;
  11. }
  12. & > li:last-of-type > a {
  13. padding-right: 0;
  14. }
  15. }
  16. a {
  17. color: #{map-deep-get($config-header, "social-nav", "color", "link")};
  18. display: inline-block;
  19. padding: 0 #{map-deep-get($config-header, "social-nav", "link-padding")};
  20. &:hover {
  21. color: #{map-deep-get($config-header, "social-nav", "color", "link-hover")};
  22. }
  23. }
  24. svg {
  25. fill: currentColor;
  26. vertical-align: middle;
  27. }
  28. }
  29. .site-title + .social-navigation,
  30. .site-description + .social-navigation {
  31. @include media(tablet) {
  32. }
  33. }