scaffolding.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 * -1) - @baseFontSize + 2px);
  11. .container-primary {
  12. padding-top: @baseLineHeight;
  13. padding-bottom: @footerHeight + (@baseLineHeight * 1.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. padding-bottom: 0px;
  31. .container {
  32. hr {
  33. border-bottom: 1px solid @footerBorder;
  34. margin: (@baseLineHeight / 2) 0px;
  35. }
  36. .credits {
  37. p {
  38. margin-bottom: 0px;
  39. color: @gray;
  40. font-size: 90%;
  41. a:link, a:active, a:visited, a:hover {
  42. color: @gray;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. // Selection
  49. // -------------------------
  50. ::selection {
  51. background: @orange;
  52. color: @white;
  53. }
  54. ::-moz-selection {
  55. background: @orange;
  56. color: @white;
  57. }