Default.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. html {
  2. font-family: Katica;
  3. }
  4. head, link, meta, script, style, title {
  5. display: none;
  6. }
  7. body {
  8. margin: 8px;
  9. }
  10. h1, h2 {
  11. font-family: Pebbleton;
  12. font-weight: bold;
  13. }
  14. h3 {
  15. font-weight: bold;
  16. }
  17. pre {
  18. font-family: Csilla;
  19. font-weight: lighter;
  20. margin-bottom: 8px;
  21. margin-top: 8px;
  22. white-space: pre;
  23. }
  24. code {
  25. font-family: Csilla;
  26. font-weight: lighter;
  27. }
  28. u, ins {
  29. text-decoration: underline;
  30. }
  31. strong, b {
  32. font-weight: bold;
  33. }
  34. html, address,
  35. blockquote,
  36. body, dd, div,
  37. dl, dt, fieldset, form,
  38. frame, frameset,
  39. hgroup,
  40. h1, h2, h3, h4,
  41. h5, h6, noframes,
  42. ol, p, ul, center,
  43. dir, hr, menu, pre,
  44. header, footer, nav, main,
  45. article, aside, section {
  46. display: block;
  47. }
  48. center {
  49. text-align: -libweb-center;
  50. }
  51. h1, h2, h3 {
  52. margin: 8px 0 8px 0;
  53. }
  54. h4, p,
  55. blockquote, ul,
  56. fieldset, form,
  57. ol, dl, dir,
  58. menu {
  59. margin: 4px 0 4px 0;
  60. }
  61. h5, h6 {
  62. margin: 2px 0 2px 0;
  63. }
  64. li {
  65. display: list-item;
  66. margin-left: 8px;
  67. margin-top: 2px;
  68. margin-bottom: 2px;
  69. }
  70. a:link {
  71. color: -libweb-link;
  72. text-decoration: underline;
  73. }
  74. a:hover {
  75. color: red;
  76. }
  77. hr {
  78. margin-top: 0.5em;
  79. margin-bottom: 0.5em;
  80. border: 1px inset #888888;
  81. }
  82. blink {
  83. display: inline;
  84. }
  85. table {
  86. display: table;
  87. }
  88. thead {
  89. display: table-header-group;
  90. vertical-align: middle;
  91. border-color: inherit;
  92. }
  93. tbody {
  94. display: table-row-group;
  95. vertical-align: middle;
  96. border-color: inherit;
  97. }
  98. tfoot {
  99. display: table-footer-group;
  100. vertical-align: middle;
  101. border-color: inherit;
  102. }
  103. tr {
  104. display: table-row;
  105. }
  106. td, th {
  107. display: table-cell;
  108. }
  109. col {
  110. display: table-column;
  111. }
  112. colgroup {
  113. display: table-column-group;
  114. }
  115. basefont {
  116. display: block;
  117. }
  118. blockquote {
  119. margin-left: 25px;
  120. margin-right: 25px;
  121. }
  122. /* FIXME: I think this should only apply in quirks mode. */
  123. table {
  124. text-align: left;
  125. }