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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. body {
  2. font-size: 1.2em;
  3. font-family: 'Droid Sans', sans-serif;
  4. margin: 0px;
  5. padding: 0px;
  6. }
  7. #nav {
  8. border-bottom-style: solid;
  9. border-bottom-width: 2px;
  10. border-bottom-color: orange;
  11. background-color: white;
  12. width: 100%;
  13. }
  14. #content {
  15. width: 75%;
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. @media (min-height: 750px) {
  20. #nav {
  21. position: fixed;
  22. top: 0;
  23. left: 0;
  24. }
  25. #content {
  26. padding-top: 5em;
  27. }
  28. #index-avatar {
  29. margin-top: 1.5em;
  30. }
  31. }
  32. pre {
  33. max-height: 300px;
  34. overflow: scroll;
  35. font-size: 0.9em;
  36. padding: 10px;
  37. margin: 1em;
  38. border-style: solid;
  39. border-width: 2px;
  40. border-color: orange;
  41. border-radius: 10px;
  42. }
  43. #home {
  44. font-size: 2.5em;
  45. margin-right: 0.5em;
  46. }
  47. #nav ul {
  48. list-style-type: none;
  49. }
  50. #nav ul li {
  51. display: inline;
  52. margin-right: 0.5em;
  53. }
  54. #nav a:link {
  55. color: black;
  56. font-weight: bold;
  57. text-decoration: none;
  58. }
  59. #nav a:visited {
  60. color: black;
  61. font-weight: bold;
  62. text-decoration: none;
  63. }
  64. #footer {
  65. color: gray;
  66. text-align: center;
  67. margin-top: 1em;
  68. font-size: small;
  69. }
  70. #footer a:link {
  71. color: gray;
  72. }
  73. #footer a:visited {
  74. color: gray;
  75. }
  76. #index-avatar {
  77. width: 150px;
  78. height: 150px;
  79. float: right; border: 2px, solid, #000000;
  80. border-radius: 10px;
  81. background-image: url(http://www.gravatar.com/avatar/8d18fec40a74782052fb4c007d212475?s=150);
  82. margin-left: 2em;
  83. margin-bottom: 1em;
  84. }
  85. #index-twitter-page {
  86. width: 100%;
  87. margin-left: auto;
  88. margin-right: auto;
  89. }
  90. iframe[id^='twitter-widget-'] {
  91. width: 100%;
  92. }