params.css 864 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #menu {
  2. width: 10em;
  3. margin-top: 1em;
  4. margin-right: 0.5em;
  5. border: solid thin;
  6. border-spacing: 0px;
  7. border-collapse: collapse;
  8. text-align: center;
  9. color: black;
  10. background-color: #edf2f2;
  11. font-weight: normal;
  12. }
  13. #menu a:link, #menu a:visited {
  14. color: #039;
  15. background-color: transparent;
  16. }
  17. #menu a:hover, #menu a:active {
  18. color: red;
  19. background-color: transparent;
  20. }
  21. #menu td {
  22. border: solid thin;
  23. padding: 0.2em 0.5em;
  24. }
  25. table td {
  26. vertical-align: top;
  27. }
  28. td.selected_section {
  29. color: #090;
  30. background-color: white;
  31. }
  32. td.index {
  33. color: black;
  34. background-color: #edf;
  35. }
  36. dt {
  37. font-weight: bold;
  38. }
  39. dd {
  40. margin-bottom: 1.5em;
  41. }
  42. .sortlist_separator {
  43. font-weight: bold;
  44. font-size: 80%;
  45. background-color: #dddddd;
  46. }
  47. .contribute {
  48. border: 1px dotted black;
  49. padding: .5em;
  50. font-size: small;
  51. }