mavlink.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. body {
  2. font-family:'Helvetica',Arial;
  3. font-size:90%;
  4. margin: 80px;
  5. }
  6. h1 {
  7. margin-top: 2em;
  8. }
  9. h2 {
  10. margin-top: 1em;
  11. }
  12. h3 {
  13. margin-top: 0.8em;
  14. font-size:150%;
  15. }
  16. p.description {
  17. font-style:italic;
  18. }
  19. table {
  20. margin-bottom: 5em;
  21. }
  22. table.sortable {
  23. border: 1px solid #656575;
  24. width: 100%;
  25. }
  26. table.sortable th {
  27. margin: 5px;
  28. }
  29. #tr:nth-child(odd) { background-color:#eee; }
  30. #tr:nth-child(even) { background-color:#fff; }
  31. table.sortable thead {
  32. background-color:#eee;
  33. color:#666666;
  34. font-weight: bold;
  35. cursor: default;
  36. }
  37. table.sortable td {
  38. margin: 5px 5px 20px 5px;
  39. vertical-align: top;
  40. }
  41. table.sortable td.mavlink_name {
  42. color:#226633;
  43. font-weight: bold;
  44. width: 25%;
  45. vertical-align: top;
  46. }
  47. table.sortable td.mavlink_mission_param {
  48. color:#334455;
  49. font-weight: bold;
  50. width: 25%;
  51. }
  52. table.sortable td.mavlink_type {
  53. color:#323232;
  54. font-weight: normal;
  55. width: 12%;
  56. }
  57. table.sortable td.mavlink_comment {
  58. color:#555555;
  59. font-weight: normal;
  60. width: 60%;
  61. }
  62. p.description {
  63. color:#808080;
  64. font-weight: normal;
  65. }