style.css 609 B

123456789101112131415161718192021222324252627282930313233343536
  1. html,
  2. body {
  3. margin:0;
  4. padding:0;
  5. height:100%;
  6. font-family: helvetica;
  7. font-color:#ffffff;
  8. }
  9. #container {
  10. background-image:url('images/penduin2.png');
  11. min-height:100%;
  12. position:relative;
  13. }
  14. #header {
  15. background:#000000;
  16. /*padding:10px;*/
  17. padding:0px;
  18. position:absolute;
  19. top:0;
  20. width:100%;
  21. height:40px;
  22. }
  23. #body {
  24. /*padding:10px;*/
  25. padding-top:40px;
  26. padding-bottom:40px; /* Height of the footer */
  27. }
  28. #footer {
  29. position:absolute;
  30. bottom:0;
  31. width:100%;
  32. height:40px; /* Height of the footer */
  33. background:#000000;
  34. /*padding-left:60px;*/
  35. }