style_example.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright 2009, Free Software Foundation, Inc.
  3. *
  4. * Copying and distribution of this file, with or without
  5. * modification, are permitted in any medium without royalty provided
  6. * the copyright notice and this notice are preserved.
  7. */
  8. body {
  9. font: 1em/1.5em georgia,serif;
  10. max-width: 50em;
  11. margin: auto;
  12. padding: 0;
  13. padding: 30px 0 60px 0;
  14. }
  15. h1, h2, h3, h4, h5 {
  16. font-family: "Trebuchet MS", "Tahoma","Helvetica","Arial",sans-serif;
  17. letter-spacing: 0px;
  18. word-spacing: 0px;
  19. font-weight: normal;
  20. }
  21. h2.unnumbered {
  22. font-size: 34px;
  23. margin: 30px 0 60px 0;
  24. text-align: right;
  25. }
  26. /*
  27. h2.unnumbered + p, h2.unnumbered + p + p {
  28. font-size: 14px;
  29. }
  30. */
  31. h2.chapter {
  32. font-size: 26px;
  33. margin: 30px 0;
  34. text-align: left;
  35. }
  36. h3 {
  37. font-size: 22px;
  38. }
  39. h4 {
  40. font-size: 18px;
  41. }
  42. a {
  43. color: midnightblue;
  44. }
  45. a:visited {
  46. color: indigo;
  47. }
  48. a:active, a:hover, a:visited:hover {
  49. color: crimson;
  50. }
  51. p, dd {
  52. text-align: justify;
  53. }
  54. dt {
  55. font-style: italic;
  56. }
  57. pre, tt, code, kbd, samp {
  58. font-size: 12px;
  59. line-height: 20px;
  60. }