_social-navigation.scss 780 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .social-navigation {
  2. & > div > ul {
  3. align-content: center;
  4. justify-content: center;
  5. display: flex;
  6. flex-wrap: wrap;
  7. list-style: none;
  8. margin: 0;
  9. padding-left: 0;
  10. & > li {
  11. margin-bottom: calc(2 * var(--social-nav--padding));
  12. }
  13. & > li:first-of-type > a {
  14. padding-left: 0;
  15. }
  16. & > li:last-of-type > a {
  17. padding-right: 0;
  18. }
  19. }
  20. a {
  21. color: var(--social-nav--color-link);
  22. display: inline-block;
  23. padding: 0 var(--social-nav--padding);
  24. &:hover,
  25. &:focus {
  26. color: var(--social-nav--color-link-hover);
  27. }
  28. &:active {
  29. color: var(--social-nav--color-link);
  30. }
  31. }
  32. svg {
  33. fill: currentColor;
  34. vertical-align: middle;
  35. }
  36. }
  37. .site-title + .social-navigation,
  38. .site-description + .social-navigation {
  39. @include media(tablet) {
  40. }
  41. }