123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // Layout classess
- // -------------------------
- html, body {
- height: 100%;
- }
- #wrap {
- min-height: 100%;
- height: auto !important;
- height: 100%;
- margin: 0 auto ((@footerHeight + @baseLineHeight) * -1);
- .container-primary {
- padding-top: @baseLineHeight;
- padding-bottom: @footerHeight + (@footerHeight * 0.5);
- .page-description {
- margin-bottom: @baseLineHeight;
- }
- hr {
- border: none;
- border-top: 1px solid @grayLighter;
- }
- }
- }
- // Footer
- // -------------------------
- footer {
- background-color: @footerBackground;
- border-top: 1px solid @footerBorder;
- height: @footerHeight;
- padding: @paddingLarge;
- hr {
- border-bottom: 1px solid @footerBorder;
- margin: (@baseLineHeight / 2) 0px;
- }
- .credits {
- color: @gray;
- font-size: 90%;
- a:link, a:active, a:visited, a:hover {
- color: @gray;
- }
- }
- }
- // Selection
- // -------------------------
- ::selection {
- background: @orange;
- color: @white;
- }
- ::-moz-selection {
- background: @orange;
- color: @white;
- }
|