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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. body {
  2. font-size: 1.2em;
  3. font-family: 'Droid Sans', sans-serif;
  4. margin: 0px;
  5. padding: 0px;
  6. }
  7. hr {
  8. color: purple; /* green; */ /* orange; */
  9. }
  10. table {
  11. margin: auto;
  12. border-collapse: collapse;
  13. }
  14. table, th, td {
  15. border: 1px solid purple;
  16. }
  17. th, td {
  18. padding-left: 0.5em;
  19. padding-right: 0.5em;
  20. padding-top: 0.2em;
  21. padding-bottom: 0.2em;
  22. }
  23. #nav {
  24. border-bottom-style: solid;
  25. border-bottom-width: 2px;
  26. border-bottom-color: purple; /* green; */ /* orange; */
  27. background-color: white;
  28. width: 100%;
  29. z-index: 2;
  30. }
  31. #content {
  32. width: 75%;
  33. margin-left: auto;
  34. margin-right: auto;
  35. }
  36. @media (min-height: 750px) {
  37. #nav {
  38. position: fixed;
  39. top: 0;
  40. left: 0;
  41. }
  42. #wrap {
  43. height: 5em;
  44. }
  45. }
  46. pre {
  47. max-height: 300px;
  48. overflow: scroll;
  49. font-size: 0.9em;
  50. padding: 10px;
  51. margin: 1em;
  52. border: 2px solid purple; /* green; */ /* orange; */
  53. border-radius: 10px;
  54. }
  55. .ascii {
  56. font-size: 0.7em;
  57. line-height: 1;
  58. max-height: max-content;
  59. overflow-y: auto;
  60. font-weight: bold;
  61. width: max-content;
  62. }
  63. .textwrap {
  64. display: flex;
  65. justify-content: space-around;
  66. align-items: center;
  67. flex-wrap: wrap;
  68. }
  69. .listdesc {
  70. font-size: 0.75em;
  71. vertical-align: top;
  72. }
  73. .show-comments {
  74. background: none;
  75. border: none;
  76. font: inherit;
  77. cursor: pointer;
  78. border-bottom: 1px solid blue;
  79. color: blue;
  80. }
  81. .releasecard {
  82. border: 2px solid purple;
  83. width: max-content;
  84. max-width: 100%;
  85. padding: 0.6em 1em 0em 1em;
  86. border-radius: 10px;
  87. background-color: lightgray;
  88. text-align: center;
  89. margin: auto;
  90. }
  91. #home {
  92. font-size: 2.5em;
  93. margin-right: 0.5em;
  94. }
  95. #nav ul {
  96. list-style-type: none;
  97. }
  98. #nav ul li {
  99. display: inline;
  100. margin-right: 0.5em;
  101. }
  102. #nav a:link {
  103. color: black;
  104. font-weight: bold;
  105. text-decoration: none;
  106. }
  107. #nav a:visited {
  108. color: black;
  109. font-weight: bold;
  110. text-decoration: none;
  111. }
  112. #footer {
  113. color: gray;
  114. text-align: center;
  115. margin-top: 1em;
  116. font-size: small;
  117. }
  118. #footer a:link {
  119. color: gray;
  120. }
  121. #footer a:visited {
  122. color: gray;
  123. }
  124. #index-avatar {
  125. width: 150px;
  126. height: 150px;
  127. float: right;
  128. border: 2px, solid, #000000;
  129. border-radius: 10px;
  130. background-image: url(https://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=150);
  131. margin-left: 2em;
  132. margin-bottom: 1em;
  133. }
  134. #index-twitter-page {
  135. width: 100%;
  136. margin-left: auto;
  137. margin-right: auto;
  138. }
  139. iframe[id^='twitter-widget-'] {
  140. width: 100%;
  141. }
  142. div.fonts {
  143. display: inline;
  144. margin-top: 20px;
  145. margin-left: 23px;
  146. }
  147. span.font-big {
  148. font-size: 0.9em;
  149. }
  150. span.font-small {
  151. font-size: 0.6em;
  152. }
  153. .lightgallery {
  154. display: flex;
  155. justify-content: space-evenly;
  156. align-items: center;
  157. flex-wrap: wrap;
  158. }
  159. .border {
  160. overflow: hidden;
  161. height: max-content;
  162. display: inline-block;
  163. border-radius: 10px;
  164. vertical-align: middle;
  165. margin: 3px 0 3px 0;
  166. border: 2px solid purple; /* green; */ /* orange; */
  167. }
  168. .border .pic {
  169. transition: transform 0.1s;
  170. vertical-align: bottom;
  171. }
  172. .border:hover .pic {
  173. transform: scale(1.1, 1.1);
  174. filter: brightness(75%);
  175. }