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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. .show-comments {
  57. background: none;
  58. border: none;
  59. font: inherit;
  60. cursor: pointer;
  61. border-bottom: 1px solid blue;
  62. color: blue;
  63. }
  64. #home {
  65. font-size: 2.5em;
  66. margin-right: 0.5em;
  67. }
  68. #nav ul {
  69. list-style-type: none;
  70. }
  71. #nav ul li {
  72. display: inline;
  73. margin-right: 0.5em;
  74. }
  75. #nav a:link {
  76. color: black;
  77. font-weight: bold;
  78. text-decoration: none;
  79. }
  80. #nav a:visited {
  81. color: black;
  82. font-weight: bold;
  83. text-decoration: none;
  84. }
  85. #footer {
  86. color: gray;
  87. text-align: center;
  88. margin-top: 1em;
  89. font-size: small;
  90. }
  91. #footer a:link {
  92. color: gray;
  93. }
  94. #footer a:visited {
  95. color: gray;
  96. }
  97. #index-avatar {
  98. width: 150px;
  99. height: 150px;
  100. float: right;
  101. border: 2px, solid, #000000;
  102. border-radius: 10px;
  103. background-image: url(https://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=150);
  104. margin-left: 2em;
  105. margin-bottom: 1em;
  106. }
  107. #index-twitter-page {
  108. width: 100%;
  109. margin-left: auto;
  110. margin-right: auto;
  111. }
  112. iframe[id^='twitter-widget-'] {
  113. width: 100%;
  114. }
  115. div.fonts {
  116. display: inline;
  117. margin-top: 20px;
  118. margin-left: 23px;
  119. }
  120. span.font-big {
  121. font-size: 0.9em;
  122. }
  123. span.font-small {
  124. font-size: 0.6em;
  125. }
  126. .lightgallery {
  127. display: flex;
  128. justify-content: space-around;
  129. align-items: center;
  130. flex-wrap: wrap;
  131. }
  132. .border {
  133. overflow: hidden;
  134. height: max-content;
  135. display: inline-block;
  136. border-radius: 10px;
  137. vertical-align: middle;
  138. margin: 3px 0 3px 0;
  139. border: 2px solid purple; /* green; */ /* orange; */
  140. }
  141. .border .pic {
  142. transition: transform 0.1s;
  143. vertical-align: bottom;
  144. }
  145. .border:hover .pic {
  146. transform: scale(1.1, 1.1);
  147. filter: brightness(75%);
  148. }