Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. /**
  2. * Sticky footer with flexible height
  3. */
  4.  
  5. body {
  6. display: flex;
  7. flex-direction: column;
  8. min-height: 100vh;
  9. }
  10.  
  11. main {
  12. flex: 1;
  13. }
  14.  
  15. /* Toggle checkbox to alternate between short/long content */
  16. #contents:checked ~ p { display: none }
  17.  
  18. /* Basic styling */
  19. body {
  20. margin: 0;
  21. font: 100%/1.5 Baskerville, Palatino Linotype, Palatino, serif;
  22. }
  23.  
  24. h1 { margin: .5em 0 0; }
  25.  
  26. header { text-align: center; height: 3em; }
  27.  
  28. main, footer {
  29. display: block;
  30. padding: .5em calc(50% - 400px);
  31. }
  32.  
  33. footer {
  34. background: linear-gradient(#222, #444);
  35. color: white;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement