youpster.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <style type="text/css">
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. border: 0;
  6. overflow: hidden;
  7. height: 100%;
  8. max-height: 100%;
  9. font-family: "Arial,sans-serif,Verdana;"
  10. font-size: 14px;
  11. line-height: 20px;
  12. color: #333333;
  13. background-color: #ffffff;
  14. }
  15. a {
  16. color:#0088cc;
  17. text-decoration:none;
  18. }
  19. a:hover,
  20. a:focus {
  21. font-style: italic;
  22. font-weight: 900;
  23. color: #ff3300;
  24. text-decoration: underline;
  25. }
  26. #framecontentTop, #framecontentBottom {
  27. position: absolute;
  28. top: 0;
  29. left: 0;
  30. width: 100%;
  31. height: 60px; /*Height of top frame div*/
  32. overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
  33. background-color: navy;
  34. color: white;
  35. }
  36. #framecontentBottom {
  37. top: auto;
  38. bottom: 0;
  39. height: 60px; /*Height of bottom frame div*/
  40. overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
  41. background-color: navy;
  42. color: white;
  43. }
  44. #maincontent {
  45. position: fixed;
  46. top: 110px; /*Set top value to HeightOfTopFrameDiv*/
  47. left: 0;
  48. right: 0;
  49. bottom: 110px; /*Set bottom value to HeightOfBottomFrameDiv*/
  50. overflow: auto;
  51. background: #fff;
  52. }
  53. .innertube {
  54. margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
  55. }
  56. * html body { /*IE6 hack*/
  57. padding: 130px 0 110px 0; /*Set value to (HeightOfTopFrameDiv 0 HeightOfBottomFrameDiv 0)*/
  58. }
  59. * html #maincontent { /*IE6 hack*/
  60. height: 100%;
  61. width: 100%;
  62. }
  63. </style>