style.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* Created by Kisuka */
  2. /* www.kisuka.com */
  3. html, body {
  4. height: 100%;
  5. margin: 0;
  6. background-image:url(images/bg.gif);
  7. }
  8. body {
  9. width: 900px;
  10. height: 100%;
  11. border-left:thin solid #000;
  12. border-right:thin solid #000;
  13. margin-left:auto;
  14. margin-right:auto;
  15. background:#FFF url(images/clown.png) no-repeat fixed right bottom;
  16. }
  17. #template { position:relative; min-height:100%; }
  18. * html #template { height: 100%; }
  19. #header {
  20. height: 60px;
  21. border-bottom:thin solid #000;
  22. }
  23. .logo {
  24. float:left;
  25. padding-left:25px;
  26. font-size:x-large;
  27. }
  28. .title {
  29. float:right;
  30. padding-right:25px;
  31. font-size:xx-large;
  32. padding-top:10px;
  33. }
  34. .body-title {
  35. font-size:x-large;
  36. }
  37. .subtitle {
  38. font-size:14px;
  39. padding-left:10px;
  40. font-style:italic;
  41. }
  42. .body-container {
  43. padding-left:30px;
  44. padding-right:30px;
  45. }
  46. #navcontainer ul {
  47. padding-left: 0;
  48. margin-left: 0;
  49. margin-top:0;
  50. background-color: #000;
  51. color: White;
  52. float: left;
  53. width: 100%;
  54. font-family: arial, helvetica, sans-serif;
  55. }
  56. #navcontainer ul li { display: inline; }
  57. #navcontainer ul li a {
  58. padding: 0.2em 1em;
  59. background-color: #000;
  60. color: White;
  61. text-decoration: none;
  62. float: left;
  63. border-right: 1px solid #fff;
  64. }
  65. #navcontainer ul li a:hover {
  66. background-color: #666;
  67. color: #fff;
  68. }
  69. #footer {
  70. background-color: #000;
  71. width: 100%;
  72. color: White;
  73. position:absolute;
  74. bottom:0;
  75. text-align:center;
  76. border-top: 1px solid #fff;
  77. }
  78. #footer a {
  79. color: White;
  80. }
  81. dt {
  82. font-weight:bold;
  83. }