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 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*
  2. * Color Combination
  3. * #000000 - Text
  4. * #FF9900 - Link, Hover Link, Dashes
  5. * #FFFFFF - Background
  6. * #848484 - Visited Link
  7. * #666666 - ooter
  8. * #EEEEEC - <pre>
  9. * #BF8630 - NavButton pressed
  10. */
  11. body {
  12. font-family: 'Droid Sans', sans-serif;
  13. margin: 0;
  14. padding: 0;
  15. border: 0; /* This removes the border around the viewport in old versions of IE */
  16. width: 100%;
  17. min-width: 600px; /* Minimum width of layout - remove line if not required */
  18. color: #000000;
  19. }
  20. a {
  21. color: #0D58A6;
  22. font-weight: bold;
  23. text-decoration: none;
  24. }
  25. a:visited {
  26. color: #848484;
  27. text-decoration: none;
  28. }
  29. a:hover {
  30. color: #0D58A6;
  31. text-decoration: underline;
  32. }
  33. #header {
  34. width: 80%;
  35. padding-left: 10%;
  36. padding-right: 10%;
  37. padding-top: 0.5em;
  38. padding-bottom: 0.5em;
  39. border-bottom: dashed #FF9900 2px;
  40. }
  41. #header h1 {
  42. display: inline;
  43. font-size: 3.5em;
  44. }
  45. #header h2 {
  46. display: inline;
  47. font-size: 2em;
  48. }
  49. #header p {
  50. display: inline;
  51. }
  52. #flattr {
  53. padding: 1em;
  54. }
  55. #twitter {
  56. padding: 1em;
  57. }
  58. #reddit {
  59. padding: 1em;
  60. }
  61. #github {
  62. padding: 1em;
  63. }
  64. #print {
  65. padding: 1em;
  66. }
  67. div#content {
  68. width: 70%;
  69. padding-left: 15%;
  70. padding-right: 15%;
  71. background-color: #FFFFFF;
  72. }
  73. div#logo {
  74. width: 180px;
  75. height: 180px;
  76. box-shadow: 0px 0px 10px #666666;
  77. border-radius: 8px;
  78. border: solid #FF9900 3px;
  79. background-color: #FF9900;
  80. overflow: hidden;
  81. padding: 10px;
  82. margin: 10px;
  83. }
  84. img#logoImg {
  85. padding: 0;
  86. border-radius: 8px;
  87. width: 180px;
  88. height: 180px;
  89. overflow: hidden;
  90. }
  91. #footer {
  92. text-align: center;
  93. font-size: small;
  94. color: gray;
  95. margin: 1em;
  96. }
  97. #footer a {
  98. color: #666666;
  99. text-decoration: none;
  100. }
  101. #footer a:hover {
  102. color: #666666;
  103. text-decoration: underline;
  104. }
  105. #footer a:visited {
  106. color: #666666;
  107. text-decoration: none;
  108. }
  109. pre {
  110. border: dotted black 2px;
  111. background: #EEEEEC;
  112. padding: 1em;
  113. overflow: scroll;
  114. }
  115. nav ul ul {
  116. display: none;
  117. }
  118. nav ul li:hover > ul {
  119. display: block;
  120. }
  121. nav {
  122. text-align: right;
  123. padding-right: 15%;
  124. }
  125. nav ul {
  126. list-style: none;
  127. position: relative;
  128. display: inline-table;
  129. }
  130. nav ul:after {
  131. content: "";
  132. clear: both;
  133. display: block;
  134. }
  135. nav ul li {
  136. float: left;
  137. border: solid #FF9900 1px;
  138. }
  139. nav ul li:hover {
  140. background: #BF8630;
  141. }
  142. nav ul li a {
  143. display: block;
  144. padding: 1em;
  145. text-decoration: none;
  146. }
  147. nav ul li a:visited {
  148. color: #0D58A6;
  149. }
  150. nav ul ul {
  151. background: #FFFFFF;
  152. border: solid #FF9900 1px;
  153. padding: 0;
  154. position: absolute;
  155. top: 100%;
  156. }
  157. nav ul ul li {
  158. float: none;
  159. position: relative;
  160. }
  161. nav ul ul li a {
  162. padding: 1em;
  163. }
  164. nav ul ul li a:visited {
  165. color: #0D58A6;
  166. }
  167. nav ul ul li a:hover {
  168. background: #BF8630;
  169. }
  170. nav ul ul ul {
  171. position: absolute;
  172. left: 100%;
  173. top:0;
  174. }