stylesheet.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. body {
  2. margin: 0px;
  3. color: white;
  4. background-color: #93c6f9;
  5. font: 12pt/18pt georgia;
  6. }
  7. div.main {
  8. margin: 10px;
  9. padding: 10px;
  10. color: black;
  11. background-color: white;
  12. }
  13. div.titre {
  14. text-align: center;
  15. background-color: #336699;
  16. color: white;
  17. padding: 10px;
  18. }
  19. h1 {
  20. text-align: center;
  21. font: 26pt georgia;
  22. letter-spacing: 3px;
  23. }
  24. h2 {
  25. padding: 5px;
  26. background-color: #c2e0ff;
  27. color: #336699;
  28. }
  29. a:link, a:visited {
  30. font-weight: bold;
  31. text-decoration: none;
  32. color: #336699;
  33. }
  34. a:hover, a:active {
  35. text-decoration: underline;
  36. color: #9685BA;
  37. }
  38. h3 {
  39. font: italic normal 14pt georgia;
  40. letter-spacing: 1px;
  41. margin-bottom: 0px;
  42. margin-left: 10px;
  43. margin-right: 10px;
  44. color: #336699;
  45. border-bottom: 2px solid #336699;
  46. }
  47. h4 {
  48. font: italic normal 14pt georgia;
  49. letter-spacing: 1px;
  50. margin-bottom: 0px;
  51. margin-left: 10px;
  52. margin-right: 10px;
  53. border-bottom: 1px dashed black;
  54. }
  55. p {
  56. margin-left: 10px;
  57. margin-right: 10px;
  58. text-align: justify;
  59. }
  60. pre {
  61. border-left: 3px #aaa solid;
  62. margin-left: 1em;
  63. padding: 0 1em;
  64. color: #888;
  65. }