style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. Dragora CSS file.
  3. Under the terms of the Apache License version 2.0.
  4. */
  5. body {
  6. max-width: 980px;
  7. margin: 0 auto;
  8. font-size: 100%;
  9. font-family: "Verdana", Helvetica, sans-serif, serif;
  10. color: #1d1d1d;
  11. background-color: #fefefe;
  12. }
  13. p {
  14. font-size: 1.15em;
  15. text-align: justify;
  16. }
  17. /*
  18. Header and footer
  19. */
  20. #header {
  21. font-size: 1.2em;
  22. font-family: "Courier New", Courier, monospace;
  23. text-align: center;
  24. color: #f5f5f5; /* whitesmoke */
  25. background: url(./img/header.png) repeat;
  26. background-color: #2e8b57;
  27. margin: 0.05em 0ex 0.5ex 0;
  28. border-radius: 8px;
  29. }
  30. /* A custom header */
  31. #body h4 {
  32. color: #a52a2a;
  33. }
  34. #footer {
  35. font-style: italic;
  36. font-size: 95%;
  37. }
  38. /*
  39. Link propierties
  40. */
  41. a {
  42. text-decoration: none;
  43. }
  44. a:visited {
  45. color: #8b008b;
  46. }
  47. a:hover {
  48. text-decoration: underline;
  49. color: #ff8c00;
  50. }
  51. /*
  52. List
  53. */
  54. ul, ol {
  55. font-size: 1.20em;
  56. font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  57. line-height: 1.4;
  58. }
  59. /*
  60. Code and cite
  61. */
  62. blockquote {
  63. font-size: 1.19em;
  64. font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  65. line-height: 1.4;
  66. }
  67. /*
  68. Table
  69. */
  70. table {
  71. border: 0;
  72. margin-left: auto;
  73. margin-right: auto;
  74. margin-bottom: 10px;
  75. }
  76. th,td {
  77. padding: 2px;
  78. }
  79. th {
  80. background-color: #f5f59e;
  81. }