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

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