My static website generator using poole https://www.xythobuz.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*
  2. * Color Combination
  3. * #000000 - Text
  4. * #FF9900 - Link, Hover Link, Dashes
  5. * #FFFFFF - Background
  6. * #666666 - Visited Link, Footer
  7. * #EEEEEC - <pre>
  8. */
  9. body {
  10. font-family: 'Droid Sans', sans-serif;
  11. margin: 0;
  12. padding: 0;
  13. border: 0; /* This removes the border around the viewport in old versions of IE */
  14. width: 100%;
  15. min-width: 600px; /* Minimum width of layout - remove line if not required */
  16. color: #000000;
  17. }
  18. a {
  19. color: #FF9900;
  20. font-weight: bold;
  21. text-decoration: none;
  22. }
  23. a:visited {
  24. color: #848484;
  25. text-decoration: none;
  26. }
  27. a:hover {
  28. color: #FF9900;
  29. text-decoration: underline;
  30. }
  31. #header {
  32. clear: both;
  33. float: left;
  34. width: 95%;
  35. padding-left: 1em;
  36. padding-top: 0.5em;
  37. padding-bottom: 0.5em;
  38. border-bottom: dashed #FF9900 2px;
  39. }
  40. #header h1 {
  41. display: inline;
  42. font-size: 3.5em;
  43. }
  44. #header h2 {
  45. display: inline;
  46. font-size: 2em;
  47. }
  48. #header p {
  49. display: inline;
  50. }
  51. #flattr {
  52. padding: 1em;
  53. }
  54. #twitter {
  55. padding: 1em;
  56. }
  57. #reddit {
  58. padding: 1em;
  59. }
  60. #github {
  61. padding: 1em;
  62. }
  63. #print {
  64. padding: 1em;
  65. }
  66. div#lang {
  67. text-align: right;
  68. padding-right: 10em;
  69. }
  70. span#lang2 {
  71. line-height: 2em;
  72. }
  73. .colmask {
  74. position: relative; /* This fixes the IE7 overflow hidden bug */
  75. clear: both;
  76. float: left;
  77. width: 100%; /* width of whole page */
  78. overflow: hidden; /* This chops off any overhanging divs */
  79. }
  80. .colleft {
  81. float: left;
  82. width: 100%;
  83. position: relative;
  84. }
  85. .content {
  86. float: left;
  87. position: relative;
  88. padding-left: 0.5em;
  89. padding-right: 0.5em;
  90. overflow: hidden;
  91. z-index: 1;
  92. background-color: #FFFFFF;
  93. }
  94. .nav {
  95. float: left;
  96. position: relative;
  97. padding: 0 0 0 0;
  98. padding-right: 1em;
  99. overflow: hidden;
  100. background-color: #FFFFFF;
  101. border-right: solid #FF9900 1px;
  102. border-bottom: solid #FF9900 1px;
  103. z-index: 1;
  104. }
  105. div#logo {
  106. width: 180px;
  107. height: 180px;
  108. box-shadow: 0px 0px 10px #666666;
  109. border-radius: 8px;
  110. border: solid #FF9900 3px;
  111. background-color: #FF9900;
  112. overflow: hidden;
  113. padding: 10px;
  114. margin: 10px;
  115. }
  116. img#logoImg {
  117. padding: 0;
  118. border-radius: 8px;
  119. width: 180px;
  120. height: 180px;
  121. overflow: hidden;
  122. }
  123. ul#menuList {
  124. list-style-type: none;
  125. padding: 0.5em;
  126. padding-top: 0;
  127. margin-top: 0;
  128. }
  129. #recent {
  130. padding-top: 1.5em;
  131. padding-bottom: 0.5em;
  132. }
  133. ul#recentList {
  134. list-style: none;
  135. padding:0;
  136. margin:0;
  137. }
  138. li.recentDate {
  139. padding-left: 1em;
  140. padding-bottom: 0.7em;
  141. }
  142. li.recentList {
  143. padding-left: 1em;
  144. text-indent: -1em;
  145. }
  146. li.recentList:before {
  147. content: "→ ";
  148. }
  149. .leftmenu {
  150. background: #FFFFFF; /* right column background colour */
  151. }
  152. .leftmenu .colleft {
  153. right: 75%; /* right column width */
  154. background: #FFFFFF; /* left column background colour */
  155. }
  156. .leftmenu .content {
  157. width: 70%; /* right column content width */
  158. left: 102%; /* 100% plus left column left padding */
  159. }
  160. .leftmenu .nav {
  161. width: 21%; /* left column content width (column width minus left and right padding) */
  162. left: 6%; /* (right column left and right padding) plus (left column left padding) */
  163. }
  164. #dude {
  165. position: fixed;
  166. bottom: 0px;
  167. left: 30px;
  168. max-width: 20%;
  169. max-height: 50%;
  170. }
  171. #walter {
  172. position: fixed;
  173. bottom: 0px;
  174. right: 30px;
  175. max-width: 20%;
  176. max-height: 50%;
  177. }
  178. #dude:hover {
  179. z-index: 2;
  180. }
  181. #walter:hover {
  182. z-index: 2;
  183. }
  184. #footer {
  185. clear: both;
  186. float: left;
  187. width: 95%;
  188. text-align: center;
  189. font-size: small;
  190. color: gray;
  191. margin: 1em;
  192. }
  193. #footer a {
  194. color: #666666;
  195. text-decoration: none;
  196. }
  197. #footer a:hover {
  198. color: #666666;
  199. text-decoration: underline;
  200. }
  201. #footer a:visited {
  202. color: #666666;
  203. text-decoration: none;
  204. }
  205. pre {
  206. border: dotted black 2px;
  207. background: #EEEEEC;
  208. padding: 1em;
  209. overflow: scroll;
  210. }