2
1

stylesheet.css 952 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. body {
  2. margin: 0px 0px 0px 0px;
  3. color: white;
  4. background-color: #93c6f9;
  5. font: 12pt/18pt georgia;
  6. }
  7. div.main {
  8. margin: 10px 10px 10px 10px;
  9. padding: 10px 10px 10px 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 10px 10px 10px;
  18. }
  19. h1 {
  20. text-align: center;
  21. font: 26pt georgia;
  22. letter-spacing: 3px;
  23. }
  24. h2 {
  25. padding: 5px 5px 5px 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. }
  46. p {
  47. margin-left: 10px;
  48. margin-right: 10px;
  49. text-align: justify;
  50. }
  51. pre {
  52. border-left: 3px #aaa solid;
  53. margin-left: 1em;
  54. padding: 0 1em;
  55. color: #888;
  56. }