outline.styl 420 B

1234567891011121314151617181920212223242526272829
  1. .container {
  2. min-height: 100%;
  3. position: relative;
  4. }
  5. .main-inner {
  6. margin: 0 auto;
  7. width: $content-desktop;
  8. +desktop-large() {
  9. width: $content-desktop-large;
  10. }
  11. +desktop-largest() {
  12. width: $content-desktop-largest;
  13. }
  14. }
  15. .content-wrap {
  16. +mobile() {
  17. padding: 0 20px;
  18. }
  19. }
  20. @import 'header';
  21. @import 'sidebar';
  22. @import 'footer';
  23. @import 'mobile' if (hexo-config('mobile_layout_economy'));