1234567891011121314151617181920212223242526272829 |
- .container {
- min-height: 100%;
- position: relative;
- }
- .main-inner {
- margin: 0 auto;
- width: $content-desktop;
- +desktop-large() {
- width: $content-desktop-large;
- }
- +desktop-largest() {
- width: $content-desktop-largest;
- }
- }
- .content-wrap {
- +mobile() {
- padding: 0 20px;
- }
- }
- @import 'header';
- @import 'sidebar';
- @import 'footer';
- @import 'mobile' if (hexo-config('mobile_layout_economy'));
|