Rev 182 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 179 | espaco | 1 | html { |
| 2 | height: 100%; |
||
| 3 | font-size: $fontSize; |
||
| 4 | } |
||
| 5 | |||
| 6 | body { |
||
| 7 | font-family: 'Open Sans'; |
||
| 8 | font-size: $fontSize; |
||
| 9 | color: $textColor; |
||
| 10 | -webkit-font-smoothing: antialiased; |
||
| 11 | padding:0; |
||
| 12 | margin:0; |
||
| 13 | height: 100%; |
||
| 14 | |||
| 15 | &.main-body { |
||
| 16 | background: $bodyBgColor; |
||
| 17 | } |
||
| 18 | |||
| 19 | a { |
||
| 20 | color: $primaryColor; |
||
| 21 | text-decoration: none; |
||
| 22 | |||
| 23 | &:hover { |
||
| 24 | color: lighten($primaryColor, 5%); |
||
| 25 | } |
||
| 26 | } |
||
| 27 | } |
||
| 28 | |||
| 29 | .layout-mask { |
||
| 30 | display: none; |
||
| 31 | position: fixed; |
||
| 32 | top: 0; |
||
| 33 | left: 0; |
||
| 34 | z-index: 997; |
||
| 35 | width: 100%; |
||
| 36 | height: 100%; |
||
| 37 | animation-duration: $animationDuration; |
||
| 38 | animation-timing-function: $animationTimingFunction; |
||
| 39 | animation-fill-mode: forwards; |
||
| 40 | } |
||
| 41 | |||
| 42 | .layout-wrapper { |
||
| 43 | .layout-main { |
||
| 44 | padding-top: 56px; |
||
| 45 | @include flex(); |
||
| 46 | @include flex-direction-column(); |
||
| 47 | @include flex-justify-between(); |
||
| 48 | min-height: 100vh; |
||
| 49 | |||
| 50 | .layout-content { |
||
| 51 | padding: 32px; |
||
| 52 | padding-top: 12px; |
||
| 53 | flex: 1 1 0; |
||
| 54 | } |
||
| 55 | } |
||
| 56 | } |
||
| 57 | |||
| 58 | .layout-ajax-loader-icon { |
||
| 59 | position: fixed; |
||
| 60 | right: 2rem; |
||
| 61 | bottom: 2rem; |
||
| 62 | font-size: 2rem; |
||
| 63 | color: $textSecondaryColor; |
||
| 64 | z-index: 999; |
||
| 65 | } |
||
| 66 | |||
| 67 | @media (max-width: 992px) { |
||
| 68 | .layout-wrapper { |
||
| 69 | .layout-main { |
||
| 70 | padding-top: 104px; |
||
| 71 | } |
||
| 72 | } |
||
| 73 | } |