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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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;
  89. border: 2px, solid, #000000;
  90. border-radius: 10px;
  91. background-image: url(https://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=150);
  92. margin-left: 2em;
  93. margin-bottom: 1em;
  94. }
  95. #index-twitter-page {
  96. width: 100%;
  97. margin-left: auto;
  98. margin-right: auto;
  99. }
  100. iframe[id^='twitter-widget-'] {
  101. width: 100%;
  102. }
  103. div.fonts {
  104. display: inline;
  105. margin-top: 20px;
  106. margin-left: 23px;
  107. }
  108. span.font-big {
  109. font-size: 0.9em;
  110. }
  111. span.font-small {
  112. font-size: 0.6em;
  113. }
  114. .border {
  115. overflow: hidden;
  116. height: auto;
  117. display: inline-block;
  118. border-radius: 10px;
  119. vertical-align: middle;
  120. margin: 3px 0 3px 0;
  121. }
  122. .border .pic {
  123. transition: transform 0.1s;
  124. vertical-align: bottom;
  125. }
  126. .border:hover .pic {
  127. transform: scale(1.1, 1.1);
  128. filter: brightness(75%);
  129. }