scaffolding.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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-primary {
  12. padding-top: @baseLineHeight;
  13. padding-bottom: @footerHeight + (@footerHeight * 0.5);
  14. .page-description {
  15. margin-bottom: @baseLineHeight;
  16. }
  17. hr {
  18. border: none;
  19. border-top: 1px solid @grayLighter;
  20. }
  21. }
  22. }
  23. // Footer
  24. // -------------------------
  25. footer {
  26. background-color: @footerBackground;
  27. border-top: 1px solid @footerBorder;
  28. height: @footerHeight;
  29. padding: @paddingLarge;
  30. hr {
  31. border-bottom: 1px solid @footerBorder;
  32. margin: (@baseLineHeight / 2) 0px;
  33. }
  34. .credits {
  35. color: @gray;
  36. font-size: 90%;
  37. a:link, a:active, a:visited, a:hover {
  38. color: @gray;
  39. }
  40. }
  41. }
  42. // Selection
  43. // -------------------------
  44. ::selection {
  45. background: @orange;
  46. color: @white;
  47. }
  48. ::-moz-selection {
  49. background: @orange;
  50. color: @white;
  51. }