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 972B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. body {
  2. font-size: 1.2em;
  3. font-family: 'Droid Sans', sans-serif;
  4. }
  5. #nav {
  6. border-bottom-style: solid;
  7. border-bottom-width: 2px;
  8. border-bottom-color: orange;
  9. margin-bottom: 2em;
  10. }
  11. #nav ul {
  12. list-style-type: none;
  13. }
  14. #nav ul li {
  15. display: inline;
  16. margin-right: 0.5em;
  17. }
  18. #home {
  19. font-size: 2.5em;
  20. margin-right: 0.5em;
  21. }
  22. #nav a:link {
  23. color: black;
  24. font-weight: bold;
  25. text-decoration: none;
  26. }
  27. #nav a:visited {
  28. color: black;
  29. font-weight: bold;
  30. text-decoration: none;
  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. iframe[id^='twitter-widget-'] {
  44. width: 100%;
  45. }
  46. #footer {
  47. color: gray;
  48. text-align: center;
  49. margin-top: 1em;
  50. font-size: small;
  51. }
  52. #footer a:link {
  53. color: gray;
  54. }
  55. #footer a:visited {
  56. color: gray;
  57. }