_footer-branding.scss 602 B

12345678910111213141516171819202122232425262728293031323334
  1. // Footer Branding
  2. .site-info {
  3. color: #{map-deep-get($config-footer, "color", "text")};
  4. @include font-family( map-deep-get($config-footer, "font", "family") );
  5. font-size: #{map-deep-get($config-footer, "font", "size")};
  6. line-height: #{map-deep-get($config-footer, "font", "line-height")};
  7. @include media(tablet) {
  8. order: 1;
  9. flex: 1 0 50%;
  10. margin-top: 0;
  11. margin-bottom: 0;
  12. }
  13. .site-name {
  14. font-weight: bold;
  15. }
  16. a {
  17. color: currentColor;
  18. &:link,
  19. &:visited {
  20. color: currentColor;
  21. }
  22. &:hover {
  23. color: #{map-deep-get($config-footer, "color", "link-hover")};
  24. }
  25. }
  26. }