Default.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. html {
  2. font-family: sans-serif;
  3. }
  4. a {
  5. cursor: pointer;
  6. }
  7. head,
  8. link,
  9. meta,
  10. script,
  11. style,
  12. title {
  13. display: none;
  14. }
  15. body {
  16. margin: 8px;
  17. }
  18. h1,
  19. h2 {
  20. font-family: Pebbleton;
  21. font-size: 14px;
  22. font-weight: bold;
  23. }
  24. h3,
  25. h4,
  26. h5,
  27. h6 {
  28. font-weight: bold;
  29. }
  30. pre {
  31. font-family: monospace;
  32. margin-bottom: 8px;
  33. margin-top: 8px;
  34. white-space: pre;
  35. }
  36. code {
  37. font-family: monospace;
  38. }
  39. u,
  40. ins {
  41. text-decoration: underline;
  42. }
  43. strong,
  44. b {
  45. font-weight: bold;
  46. }
  47. html,
  48. address,
  49. blockquote,
  50. body,
  51. dd,
  52. div,
  53. dl,
  54. dt,
  55. fieldset,
  56. form,
  57. frame,
  58. frameset,
  59. hgroup,
  60. h1,
  61. h2,
  62. h3,
  63. h4,
  64. h5,
  65. h6,
  66. noframes,
  67. ol,
  68. p,
  69. ul,
  70. center,
  71. dir,
  72. hr,
  73. menu,
  74. pre,
  75. header,
  76. footer,
  77. nav,
  78. main,
  79. article,
  80. aside,
  81. section {
  82. display: block;
  83. }
  84. center {
  85. text-align: -libweb-center;
  86. }
  87. h1,
  88. h2,
  89. h3 {
  90. margin: 8px 0 8px 0;
  91. }
  92. h4,
  93. p,
  94. blockquote,
  95. ul,
  96. fieldset,
  97. form,
  98. ol,
  99. dl,
  100. dir,
  101. menu {
  102. margin: 4px 0 4px 0;
  103. }
  104. h5,
  105. h6 {
  106. margin: 2px 0 2px 0;
  107. }
  108. li {
  109. display: list-item;
  110. margin-left: 8px;
  111. margin-top: 2px;
  112. margin-bottom: 2px;
  113. }
  114. a:link {
  115. color: -libweb-link;
  116. text-decoration: underline;
  117. }
  118. a:hover {
  119. color: red;
  120. }
  121. hr {
  122. margin-top: 0.5em;
  123. margin-bottom: 0.5em;
  124. border: 1px inset #888888;
  125. }
  126. blink {
  127. display: inline;
  128. }
  129. table {
  130. display: table;
  131. }
  132. thead {
  133. display: table-header-group;
  134. vertical-align: middle;
  135. border-color: inherit;
  136. }
  137. tbody {
  138. display: table-row-group;
  139. vertical-align: middle;
  140. border-color: inherit;
  141. }
  142. tfoot {
  143. display: table-footer-group;
  144. vertical-align: middle;
  145. border-color: inherit;
  146. }
  147. tr {
  148. display: table-row;
  149. }
  150. td,
  151. th {
  152. display: table-cell;
  153. }
  154. col {
  155. display: table-column;
  156. }
  157. colgroup {
  158. display: table-column-group;
  159. }
  160. basefont {
  161. display: block;
  162. }
  163. blockquote {
  164. margin-left: 25px;
  165. margin-right: 25px;
  166. }
  167. ul,
  168. ol {
  169. padding-left: 20px;
  170. }
  171. /* FIXME: This is a temporary hack until we can render a native-looking frame for these. */
  172. input[type=text] {
  173. border: 1px solid black;
  174. min-width: 80px;
  175. min-height: 16px;
  176. }
  177. option {
  178. display: none;
  179. }