page-footer.less 879 B

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