Default.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. html {
  2. font-family: Katica;
  3. }
  4. head, link, meta, script, style, title {
  5. display: none;
  6. }
  7. body {
  8. margin-left: 8;
  9. margin-top: 8;
  10. margin-right: 8;
  11. margin-bottom: 8;
  12. }
  13. h1, h2 {
  14. font-family: Pebbleton;
  15. font-weight: bold;
  16. }
  17. h3 {
  18. font-weight: bold;
  19. }
  20. pre {
  21. margin-bottom: 8;
  22. margin-top: 8;
  23. white-space: pre;
  24. }
  25. code {
  26. font-family: Csilla;
  27. font-weight: lighter;
  28. }
  29. u, ins {
  30. text-decoration: underline;
  31. }
  32. strong, b {
  33. font-weight: bold;
  34. }
  35. html, address,
  36. blockquote,
  37. body, dd, div,
  38. dl, dt, fieldset, form,
  39. frame, frameset,
  40. h1, h2, h3, h4,
  41. h5, h6, noframes,
  42. ol, p, ul, center,
  43. dir, hr, menu, pre,
  44. header, footer {
  45. display: block;
  46. }
  47. center {
  48. text-align: center;
  49. }
  50. h1, h2, h3 {
  51. margin-top: 8;
  52. margin-bottom: 8;
  53. margin-left: 0;
  54. margin-right: 0;
  55. }
  56. h4, p,
  57. blockquote, ul,
  58. fieldset, form,
  59. ol, dl, dir,
  60. menu {
  61. margin-top: 4;
  62. margin-bottom: 4;
  63. margin-left: 0;
  64. margin-right: 0;
  65. }
  66. h5, h6 {
  67. margin-top: 2;
  68. margin-bottom: 2;
  69. margin-left: 0;
  70. margin-right: 0;
  71. }
  72. li {
  73. display: list-item;
  74. margin-left: 8;
  75. margin-top: 2;
  76. margin-bottom: 2;
  77. }
  78. a:link {
  79. color: -libhtml-link;
  80. text-decoration: underline;
  81. }
  82. a:hover {
  83. color: red;
  84. }
  85. hr {
  86. margin-top: 4;
  87. margin-bottom: 4;
  88. border-top-width: 1;
  89. border-left-width: 1;
  90. border-right-width: 1;
  91. border-bottom-width: 1;
  92. border-top-color: #888888;
  93. border-left-color: #888888;
  94. border-right-color: #888888;
  95. border-bottom-color: #888888;
  96. border-top-style: inset;
  97. border-left-style: inset;
  98. border-right-style: inset;
  99. border-bottom-style: inset;
  100. }
  101. blink {
  102. display: inline;
  103. }
  104. table {
  105. display: table;
  106. }
  107. tr {
  108. display: table-row;
  109. }
  110. td {
  111. display: table-cell;
  112. }