Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /*** |
| 2 | Page container |
||
| 3 | ***/ |
||
| 4 | |||
| 5 | .page-container { |
||
| 6 | margin: 0px; |
||
| 7 | padding: 0px; |
||
| 8 | position: relative; |
||
| 9 | |||
| 10 | @include clearfix(); |
||
| 11 | |||
| 12 | /* Fixed header */ |
||
| 13 | .page-header-fixed & { |
||
| 14 | margin-top: $header-height; |
||
| 15 | } |
||
| 16 | |||
| 17 | /* Fixed footer for mobile */ |
||
| 18 | .page-footer-fixed.page-footer-fixed-mobile & { |
||
| 19 | margin-bottom: 20px !important; |
||
| 20 | } |
||
| 21 | } |
||
| 22 | |||
| 23 | @media (min-width: $screen-lg-med) { /* 1200px */ |
||
| 24 | .container { |
||
| 25 | width: 1270px; |
||
| 26 | } |
||
| 27 | } |
||
| 28 | |||
| 29 | @media (min-width: $screen-md-min) { |
||
| 30 | |||
| 31 | /* Page container in fixed footer */ |
||
| 32 | .page-footer-fixed .page-container { |
||
| 33 | margin-bottom: 20px !important; |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | @media (max-width: $screen-sm-max) { |
||
| 38 | |||
| 39 | /* Page container */ |
||
| 40 | .page-container { |
||
| 41 | margin: 0 !important; |
||
| 42 | padding: 0 !important; |
||
| 43 | |||
| 44 | .page-header-fixed.page-header-fixed-mobile & { |
||
| 45 | margin-top: $header-height !important; |
||
| 46 | } |
||
| 47 | } |
||
| 48 | } |
||
| 49 | |||
| 50 | @media (max-width: $screen-xs-min) { |
||
| 51 | |||
| 52 | /* Page container */ |
||
| 53 | .page-container { |
||
| 54 | .page-header-fixed.page-header-fixed-mobile & { |
||
| 55 | margin-top: $header-height-xs !important; |
||
| 56 | } |
||
| 57 | } |
||
| 58 | } |