getid3.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. /**
  2. * Common elements
  3. */
  4. body {
  5. font: 12px Verdana, sans-serif;
  6. background-color: white;
  7. color: black;
  8. margin-top: 6px;
  9. margin-bottom: 30px;
  10. margin-left: 12px;
  11. margin-right: 12px;
  12. }
  13. h1 {
  14. font: bold 18px Verdana, sans-serif;
  15. line-height: 26px;
  16. margin-top: 12px;
  17. margin-bottom: 15px;
  18. margin-left: 0;
  19. margin-right: 7px;
  20. background-color: #e6eaf6;
  21. padding-left: 10px;
  22. padding-top: 2px;
  23. padding-bottom: 4px;
  24. }
  25. h3 {
  26. font: bold 13px Verdana, sans-serif;
  27. line-height: 26px;
  28. margin-top: 12px;
  29. margin-bottom: 0;
  30. margin-left: 0;
  31. margin-right: 7px;
  32. padding-left: 4px;
  33. }
  34. ul {
  35. margin-top: 0;
  36. }
  37. p, li {
  38. font: 9pt/135% sans-serif;
  39. margin-top: 1px;
  40. margin-bottom: 0;
  41. }
  42. a, a:link, a:visited {
  43. color: #0000cc;
  44. }
  45. hr {
  46. height: 0;
  47. border: solid gray 0;
  48. border-top-width: thin;
  49. width: 700px;
  50. }
  51. table.table td {
  52. font: 9pt sans-serif;
  53. padding-top: 1px;
  54. padding-bottom: 1px;
  55. padding-left: 5px;
  56. padding-right: 5px;
  57. }
  58. table.table td.header {
  59. background-color: #cccccc;
  60. padding-top: 2px;
  61. padding-bottom: 2px;
  62. font-weight: bold;
  63. }
  64. table.table tr.even_files {
  65. background-color: #fefefe;
  66. }
  67. table.table tr.odd_files {
  68. background-color: #e9e9e9;
  69. }
  70. table.dump {
  71. border-top: solid 1px #cccccc;
  72. border-left: solid 1px #cccccc;
  73. margin: 2px;
  74. }
  75. table.dump td {
  76. font: 9pt sans-serif;
  77. padding-top: 1px;
  78. padding-bottom: 1px;
  79. padding-left: 5px;
  80. padding-right: 5px;
  81. border-right: solid 1px #cccccc;
  82. border-bottom: solid 1px #cccccc;
  83. }
  84. td.dump_string {
  85. font-weight: bold;
  86. color: #006600;
  87. font-family: Zawgyi-One,sans-serif;
  88. }
  89. td.dump_integer {
  90. color: #CC0000;
  91. font-weight: bold;
  92. }
  93. td.dump_double {
  94. color: #FF9900;
  95. font-weight: bold;
  96. }
  97. td.dump_boolean {
  98. color: #0000FF;
  99. font-weight: bold;
  100. }
  101. .error {
  102. color: red
  103. }
  104. /**
  105. * Tool Tips
  106. */
  107. .tooltip {
  108. font: 9pt sans-serif;
  109. background: #ffffe1;
  110. color: black;
  111. border: black 1px solid;
  112. margin: 2px;
  113. padding: 7px;
  114. position: absolute;
  115. top: 10px;
  116. left: 10px;
  117. z-index: 10000;
  118. visibility: hidden;
  119. }
  120. .tooltip p {
  121. margin-top: -2px;
  122. margin-bottom: 4px;
  123. }
  124. /**
  125. * Forms
  126. */
  127. table.form td {
  128. font: 9pt/135% sans-serif;
  129. padding: 2px;
  130. }
  131. select, input {
  132. font: 9pt/135% sans-serif;
  133. }
  134. .select, .field {
  135. width: 260px;
  136. }
  137. #sel_field {
  138. width: 85px;
  139. }
  140. .button {
  141. margin-top: 10px;
  142. }