page-footer.less 833 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // Flavor Footer
  3. // --------------------------------------------------
  4. // Make footer full width
  5. .misago-footer {
  6. margin-top: @line-height-computed * 2;
  7. .footer-content {
  8. border-top: 1px solid @gray-lighter;
  9. padding-top: @line-height-computed * 1;
  10. color: @page-footer-text-color;
  11. @media screen and (max-width: @screen-xs-max) {
  12. text-align: center;
  13. .site-footnote {
  14. clear: both;
  15. margin-bottom: @line-height-computed * .75;
  16. }
  17. }
  18. a, a:link, a:visited {
  19. color: @page-footer-link-color;
  20. }
  21. a:hover, a:focus {
  22. color: @page-footer-link-hover-color;
  23. }
  24. .misago-branding {
  25. &, &:link, &:visited {
  26. color: @page-footer-brand-color;
  27. }
  28. &:hover, &:focus {
  29. color: @page-footer-brand-hover-color;
  30. }
  31. }
  32. }
  33. }