main0000.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. body {
  2. background: #e1edc1 url(bg000000.png) 50% 0 repeat;
  3. color: #230;
  4. font: 15px/1.75em Georgia, serif;
  5. margin: 0;
  6. }
  7. a {
  8. color: #230;
  9. text-decoration: none;
  10. border-bottom: 2px solid #959989;
  11. -webkit-transition: 0.2s;
  12. background-color: rgba(0,0,0,0.05);
  13. }
  14. a:hover {
  15. color: #2c3c00;
  16. background-color: #c3dc64;
  17. border-color: #779820;
  18. }
  19. .iStretch {
  20. margin: 0 auto;
  21. width: 820px;
  22. }
  23. .highlight {
  24. background: #222;
  25. border: 5px solid #222;
  26. border-radius: 3px;
  27. }
  28. #navbar {
  29. font-size: 0.8em;
  30. line-height: 1.7em;
  31. position: fixed;
  32. background: transparent url(bg_top00.png) 0 100% repeat-x;
  33. height: 30px;
  34. top: 0;
  35. left: 0;
  36. right: 0;
  37. overflow: hidden;
  38. }
  39. #navbar .iStretch {
  40. height: 22px;
  41. overflow: hidden;
  42. }
  43. #navbar .iStretch div {
  44. float: right;
  45. padding: 1px 10px;
  46. margin: 0;
  47. xheight: 22px;
  48. text-align: center;
  49. -webkit-transition: 0.2s;
  50. }
  51. #navbar .iStretch div:hover {
  52. color: #2c3c00;
  53. background-color: #c3dc64;
  54. }
  55. #navbar a {
  56. background-color: transparent;
  57. border: none;
  58. }
  59. #navbar .iStretch div#current {
  60. float: left;
  61. background-color: #959989;
  62. }
  63. #topcontainer {
  64. padding: 65px 0 25px 0;
  65. text-align: right;
  66. margin-top: 10px;
  67. background: transparent url(logo0000.png) 0% 50% no-repeat;
  68. }
  69. #topcontainer ul{
  70. display: inline-block;
  71. width: 420px;
  72. padding: 0;
  73. margin: 0;
  74. list-style: none;
  75. overflow: hidden;
  76. }
  77. #topcontainer ul li{
  78. display: inline-block;
  79. text-align: center;
  80. padding: 0 10px;
  81. width: 190px;
  82. color: rgba(0,0,0,0.5);
  83. text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  84. }
  85. #contentcontainer {
  86. background: transparent url(white_50.png);
  87. box-shadow: 0 0 5px #4e543f;
  88. -webkit-box-shadow: 0 0 5px #4e543f;
  89. -moz-box-shadow: 0 0 5px #4e543f;
  90. }
  91. .column {
  92. line-height: 1.6em;
  93. width: 440px;
  94. padding: 40px 20px 0 40px;
  95. font-size: 0.9em;
  96. vertical-align: top;
  97. padding-bottom: 30px;
  98. display: block;
  99. display: inline-block;
  100. }
  101. .column:last-child {
  102. width: 250px;
  103. padding: 40px 36px 0 30px;
  104. background: transparent url(black_10.png);
  105. }
  106. #credits ul {
  107. list-style: none;
  108. margin: 0;
  109. padding: 0;
  110. }
  111. #credits ul li {
  112. xdisplay: inline-block;
  113. font-size: 0.85em;
  114. float: left;
  115. vertical-align: top;
  116. width: 185px;
  117. padding: 10px;
  118. }
  119. #credits ul li strong{
  120. display: block;
  121. }
  122. /* Restyling default elements */
  123. h2 {
  124. margin-top: 0;
  125. margin-bottom: 0;
  126. font-size: 1.7em;
  127. font-weight: normal;
  128. line-height: 1em;
  129. }
  130. h3 {
  131. margin-bottom: 0;
  132. font-size: 1.2em;
  133. }
  134. .newsitem h2 {
  135. text-shadow: none;
  136. }
  137. .newsitem h4 {
  138. font-size: 0.8em;
  139. margin: 0;
  140. margin-bottom: 1.15em;
  141. font-weight: normal;
  142. }
  143. p.introduction {
  144. line-height: 1.6em;
  145. font-weight: bold;
  146. }
  147. hr {
  148. border-top: 1px dashed #547a1a;
  149. border-bottom: none;
  150. margin-top: 20px;
  151. }
  152. .hidden {
  153. color: #e1edc1;
  154. }
  155. /* Adapting to small screens */
  156. @media (max-width: 500px) {
  157. .iStretch {
  158. width: 90%;
  159. }
  160. .column, .column:last-child {
  161. width: 90%;
  162. padding: 6%;
  163. overflow: hidden;
  164. }
  165. #topcontainer {
  166. background-position: 50% 50%;
  167. }
  168. #topcontainer ul{
  169. visibility: hidden;
  170. }
  171. #contentcontainer {
  172. overflow: hidden;
  173. }
  174. }