main0000.css 3.0 KB

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