scaffolding.less 773 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Layout classess
  2. // -------------------------
  3. html, body {
  4. height: 100%;
  5. }
  6. #wrap {
  7. min-height: 100%;
  8. height: auto !important;
  9. height: 100%;
  10. margin: 0 auto ((@footerHeight + @baseLineHeight) * -1);
  11. &>.container {
  12. padding-top: @navbarHeight + 16px;
  13. padding-bottom: @footerHeight + (@footerHeight * 0.5);
  14. }
  15. }
  16. // Footer
  17. // -------------------------
  18. footer {
  19. background-color: @footerBackground;
  20. border-top: 1px solid @footerBorder;
  21. height: @footerHeight;
  22. padding: @paddingLarge;
  23. hr {
  24. border-bottom: 1px solid @footerBorder;
  25. margin: (@baseLineHeight / 2) 0px;
  26. }
  27. .credits {
  28. color: @gray;
  29. font-size: 90%;
  30. a:link, a:active, a:visited, a:hover {
  31. color: @gray;
  32. }
  33. }
  34. }