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

style.css 2.3KB

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