My static website generator using poole https://www.xythobuz.de
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

style.css 2.8KB

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