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