Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /*** |
| 2 | Page footer |
||
| 3 | ***/ |
||
| 4 | |||
| 5 | .page-footer { |
||
| 6 | padding: 8px 20px 5px 20px; |
||
| 7 | font-size: 12px; |
||
| 8 | height: $page-footer-height; |
||
| 9 | |||
| 10 | @include clearfix(); |
||
| 11 | |||
| 12 | .page-footer-inner { |
||
| 13 | float: left; |
||
| 14 | display: inline-block; |
||
| 15 | } |
||
| 16 | |||
| 17 | .page-footer-tools { |
||
| 18 | float: right; |
||
| 19 | display: inline-block; |
||
| 20 | |||
| 21 | .go-top { |
||
| 22 | display: block; |
||
| 23 | text-decoration: none; |
||
| 24 | cursor: pointer; |
||
| 25 | margin-top: -2px; |
||
| 26 | margin-right: 0px; |
||
| 27 | margin-bottom: 0px; |
||
| 28 | font-size: 16px; |
||
| 29 | padding: 0px 6px 0px 6px; |
||
| 30 | |||
| 31 | i { |
||
| 32 | font-size: 22px; |
||
| 33 | margin-bottom: 5px; |
||
| 34 | } |
||
| 35 | } |
||
| 36 | } |
||
| 37 | |||
| 38 | .page-footer-fixed.page-footer-fixed-mobile & { |
||
| 39 | position: fixed; |
||
| 40 | left: 0; |
||
| 41 | right: 0; |
||
| 42 | z-index: $zindex-footer-fixed; |
||
| 43 | bottom: 0; |
||
| 44 | } |
||
| 45 | |||
| 46 | .page-footer-fixed.page-footer-fixed-mobile.page-sidebar-fixed & { |
||
| 47 | margin-left: 0 !important; |
||
| 48 | } |
||
| 49 | } |
||
| 50 | |||
| 51 | @media (min-width: $screen-md-min) { /* 992px */ |
||
| 52 | |||
| 53 | /* Default footer */ |
||
| 54 | .page-footer { |
||
| 55 | clear: left; |
||
| 56 | } |
||
| 57 | |||
| 58 | /* Fixed footer */ |
||
| 59 | .page-footer-fixed { |
||
| 60 | .page-footer { |
||
| 61 | position: fixed; |
||
| 62 | left: 0; |
||
| 63 | right: 0; |
||
| 64 | z-index: $zindex-footer-fixed; |
||
| 65 | bottom: 0; |
||
| 66 | } |
||
| 67 | } |
||
| 68 | |||
| 69 | /* Footer with footer sidebar */ |
||
| 70 | .page-sidebar-fixed { |
||
| 71 | &.page-sidebar-closed { |
||
| 72 | .page-footer { |
||
| 73 | margin-left: $sidebar-collapsed-width; |
||
| 74 | } |
||
| 75 | } |
||
| 76 | |||
| 77 | &.page-footer-fixed { |
||
| 78 | .page-footer { |
||
| 79 | margin-left: 0 !important; |
||
| 80 | } |
||
| 81 | } |
||
| 82 | } |
||
| 83 | |||
| 84 | /* Fixed Sidebar */ |
||
| 85 | .page-sidebar-fixed { |
||
| 86 | .page-footer { |
||
| 87 | margin-left: $sidebar-width; |
||
| 88 | padding: 8px 20px 5px 20px; |
||
| 89 | } |
||
| 90 | } |
||
| 91 | |||
| 92 | /* Boxed page */ |
||
| 93 | .page-boxed { |
||
| 94 | .page-footer { |
||
| 95 | padding: 8px 0 5px 0; |
||
| 96 | } |
||
| 97 | |||
| 98 | &.page-sidebar-fixed .page-footer { |
||
| 99 | padding-right: 20px; |
||
| 100 | padding-left: 20px; |
||
| 101 | } |
||
| 102 | } |
||
| 103 | |||
| 104 | /* Page sidebar reversed */ |
||
| 105 | .page-sidebar-reversed.page-sidebar-fixed { |
||
| 106 | .page-footer { |
||
| 107 | margin-left: 0; |
||
| 108 | margin-right: $sidebar-width; |
||
| 109 | padding: 8px 20px 5px 20px; |
||
| 110 | } |
||
| 111 | |||
| 112 | &.page-footer-fixed { |
||
| 113 | .page-footer { |
||
| 114 | margin-left: 0; |
||
| 115 | margin-right: 0; |
||
| 116 | } |
||
| 117 | } |
||
| 118 | |||
| 119 | &.page-sidebar-closed { |
||
| 120 | .page-footer { |
||
| 121 | margin-right: $sidebar-collapsed-width; |
||
| 122 | } |
||
| 123 | } |
||
| 124 | } |
||
| 125 | } |
||
| 126 | |||
| 127 | @media (max-width: $screen-sm-max) { /* 991px */ |
||
| 128 | |||
| 129 | /* Boxed Layout */ |
||
| 130 | .page-footer { |
||
| 131 | padding-left: 10px; |
||
| 132 | padding-right: 10px; |
||
| 133 | } |
||
| 134 | } |
||
| 135 | |||
| 136 | @media (max-width: $screen-xs-max) { /* 767px */ |
||
| 137 | |||
| 138 | /* Default footer & boxed footer */ |
||
| 139 | .page-footer, |
||
| 140 | .page-boxed .page-footer { |
||
| 141 | padding-left: 10px; |
||
| 142 | padding-right: 10px; |
||
| 143 | } |
||
| 144 | |||
| 145 | /* Fixed footer */ |
||
| 146 | .page-footer-fixed { |
||
| 147 | .page-footer { |
||
| 148 | .container { |
||
| 149 | padding-left: 0; |
||
| 150 | padding-right: 0; |
||
| 151 | } |
||
| 152 | } |
||
| 153 | } |
||
| 154 | } |
||
| 155 | |||
| 156 | /* Scroll Top Top */ |
||
| 157 | |||
| 158 | .scroll-to-top { |
||
| 159 | display: inline-block; |
||
| 160 | padding:2px; |
||
| 161 | text-align:center; |
||
| 162 | position:fixed; |
||
| 163 | z-index: $zindex-go-to-top; |
||
| 164 | bottom: 10px; |
||
| 165 | display:none; |
||
| 166 | right: 10px; |
||
| 167 | |||
| 168 | > i { |
||
| 169 | display: inline-block; |
||
| 170 | color: darken(#94A0B2, 15%); |
||
| 171 | font-size: 32px; |
||
| 172 | @include opacity(0.7); |
||
| 173 | } |
||
| 174 | |||
| 175 | &:hover { |
||
| 176 | cursor: pointer; |
||
| 177 | |||
| 178 | > i { |
||
| 179 | @include opacity(1); |
||
| 180 | } |
||
| 181 | } |
||
| 182 | } |
||
| 183 | |||
| 184 | @media (min-width: $screen-md-min) { /* 992px */ |
||
| 185 | .scroll-to-top { |
||
| 186 | right: 10px; |
||
| 187 | } |
||
| 188 | } |
||
| 189 | |||
| 190 | @media (max-width: $screen-sm-max) { /* 991px */ |
||
| 191 | .scroll-to-top { |
||
| 192 | right: 10px; |
||
| 193 | |||
| 194 | > i { |
||
| 195 | font-size: 28px; |
||
| 196 | } |
||
| 197 | } |
||
| 198 | } |