screen.css 658 B

12345678910111213141516171819202122
  1. @charset "utf-8";
  2. /*
  3. * CSS Document
  4. * Written by Ryan Yonzon
  5. * http://ryan.rawswift.com/
  6. */
  7. html, body {
  8. /* FF hack: or we'll have double scrollbar showing on the browser */
  9. /*margin:0px; */
  10. /* hide browser's main scrollbar */
  11. /*overflow:hidden;*/
  12. }
  13. #main_container {
  14. width:100%;
  15. background-color:#ffffff; /* DO NOT REMOVE THIS; or you'll have issue w/ the scrollbar, when the mouse pointer is on a white space */
  16. overflow-x: hidden;
  17. overflow-y: scroll;
  18. height:100%; /* this will make sure that the height will extend at the bottom */
  19. position:absolute; /* container div must be absolute, for our fixed bar to work */
  20. }