_footer-branding.scss 530 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // Footer
  2. .site-footer {
  3. overflow: hidden;
  4. }
  5. // Footer Branding
  6. .site-footer > .site-info {
  7. color: var(--footer--color-text);
  8. font-family: var(--footer--font-family);
  9. font-size: var(--footer--font-size);
  10. line-height: var(--global--line-height-body);
  11. @include media(desktop) {
  12. margin-top: 0;
  13. margin-bottom: 0;
  14. }
  15. .site-name {
  16. font-weight: bold;
  17. }
  18. a {
  19. color: currentColor;
  20. &:link,
  21. &:visited,
  22. &:active {
  23. color: currentColor;
  24. }
  25. &:hover,
  26. &:focus {
  27. color: var(--footer--color-link);
  28. }
  29. }
  30. }