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

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