styles.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. a {
  2. color: black;
  3. font-weight: normal;
  4. }
  5. a.na:link, a.na:visited {
  6. color: #dddddd;
  7. text-decoration: line-through;
  8. }
  9. a:link, a:visited, a:active {
  10. color: gray;
  11. text-decoration: none;
  12. }
  13. a.local {
  14. font-weight: bold;
  15. }
  16. a:hover, a.na:hover {
  17. color: blue;
  18. }
  19. body {
  20. color: black; background-color: white;
  21. }
  22. .code {
  23. color: black; background-color: #dddddd;
  24. letter-spacing: 1px;
  25. border: 1px solid; border-color: black;
  26. padding-left: 12px; padding-right: 12px; padding-top: 5px; padding-bottom: 5px;
  27. margin-left: 20px;
  28. }
  29. dd {
  30. padding-left: 40px;
  31. margin-left: 0px; margin-bottom: 10px;
  32. }
  33. div {
  34. margin-top: 10px; margin-bottom: 10px; margin-left: 20px;
  35. }
  36. dl {
  37. margin-top: 0px; margin-bottom: 0px;
  38. }
  39. dt {
  40. font-style: italic;
  41. padding-left: 20px;
  42. margin-top: 10px;
  43. }
  44. h4, h5 {
  45. margin-top: 10px; margin-bottom: 10px;
  46. }
  47. hr {
  48. margin-top: 0px; margin-bottom: 0px;
  49. }
  50. .incompatibility {
  51. color: red;
  52. }
  53. .indent {
  54. margin-top: 0px; margin-bottom: 0px;
  55. }
  56. pre {
  57. letter-spacing: 1px;
  58. padding: 0px;
  59. margin: 0px;
  60. }
  61. pre a:hover {
  62. color: orange;
  63. }
  64. s {
  65. color: #dddddd;
  66. }
  67. .sig {
  68. font-style: italic;
  69. color: #aaaaaa;
  70. text-align: right;
  71. }
  72. span {
  73. display: block;
  74. margin: 0px;
  75. }
  76. ul {
  77. margin-top: 10px; margin-bottom: 10px; margin-left: 20px;
  78. padding-left: 17px;
  79. }
  80. /*
  81. © Copyright Housemarque Oy 2002
  82. © Copyright Paul Mensonides 2002
  83. Distributed under the Boost Software License, Version 1.0.
  84. (See accompanying file LICENSE_1_0.txt or copy at
  85. http://www.boost.org/LICENSE_1_0.txt)
  86. */