_social-menu.scss 821 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*--------------------------------------------------------------*/
  2. /* !## Footer Social Menu */
  3. /*--------------------------------------------------------------*/
  4. .site-footer .jetpack-social-navigation {
  5. clear: both;
  6. float: none;
  7. padding: 0 $mobile-gutter;
  8. width: 100%;
  9. ul {
  10. margin-bottom: ($baseline * .5);
  11. }
  12. li {
  13. @include font-size(1.5);
  14. a {
  15. padding: 0 10px 0 0;
  16. }
  17. }
  18. }
  19. @include breakpoint( tablet ) {
  20. .site-footer .jetpack-social-navigation {
  21. bottom: 0;
  22. clear: right;
  23. float: right;
  24. height: 100%;
  25. padding: 0;
  26. position: absolute;
  27. right: 0;
  28. width: 40%;
  29. ul {
  30. margin-bottom: 0;
  31. text-align: right;
  32. }
  33. & > div {
  34. bottom: ($baseline * 1.5);
  35. max-width: calc(75em * .40 - #{$gutter / 2});
  36. position: fixed;
  37. width: calc(90% * .40 - #{$gutter / 2});
  38. }
  39. }
  40. }