My static website generator using poole https://www.xythobuz.de
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

style.css 843B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body {
  2. font-size: 1.2em;
  3. font-family: 'Droid Sans', sans-serif;
  4. }
  5. #nav ul {
  6. list-style-type: none;
  7. }
  8. #nav ul li {
  9. display: inline;
  10. margin-right: 0.5em;
  11. }
  12. #home {
  13. font-size: 2.5em;
  14. margin-right: 0.5em;
  15. }
  16. #nav a:link {
  17. color: black;
  18. font-weight: bold;
  19. text-decoration: none;
  20. }
  21. #nav a:visited {
  22. color: black;
  23. font-weight: bold;
  24. text-decoration: none;
  25. }
  26. pre {
  27. max-height: 300px;
  28. overflow: scroll;
  29. font-size: 0.9em;
  30. padding: 10px;
  31. margin: 1em;
  32. border-style: solid;
  33. border-width: 2px;
  34. border-color: orange;
  35. border-radius: 10px;
  36. }
  37. iframe[id^='twitter-widget-'] {
  38. width: 100%;
  39. }
  40. #footer {
  41. color: gray;
  42. text-align: center;
  43. margin-top: 1em;
  44. font-size: small;
  45. }
  46. #footer a:link {
  47. color: gray;
  48. }
  49. #footer a:visited {
  50. color: gray;
  51. }