Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. /**
  2. * Layout with flex
  3. */
  4.  
  5. body {
  6. background: orange;
  7. display: flex;
  8. min-height: 100vh;
  9. margin: 0;
  10. padding: 0;
  11. flex-direction: column;
  12. }
  13.  
  14. .max-lg { max-width: 1000px; margin: 0 auto; }
  15. .max { max-width: 800px; margin: 0 auto; }
  16.  
  17. .site-header { background: #1e4b9e; color: #ffffff; padding: 10px; }
  18. .site-body { background: #eaeaea; flex: 1; display: flex; flex-direction: column; }
  19. .site-sidebar { background: #eaeaea; padding: 10px; width: 280px; }
  20. .site-main { background: #ffffff; padding: 10px; }
  21. .site-main-bottom { background: #f4f4f4; border-top: 2px solid #eaeaea; padding: 10px; }
  22. .site-main-fill { flex: 1; }
  23. .site-footer { background: #ffffff; border-top: 1px solid #eaeaea; color: #999999; padding: 10px; }
  24.  
  25. .hide { display: none; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement