Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

170 lines
2.4 KiB

  1. /* body
  2. The document body, obviously. */
  3. hr {
  4. height: 1px;
  5. color: gray;
  6. }
  7. body {
  8. color: #000000;
  9. background: white;
  10. margin-top: 0em;
  11. margin-left: auto;
  12. margin-right: auto;
  13. padding-left: 1em;
  14. padding-right: 1em;
  15. font-family: sans-serif;
  16. }
  17. #searchlinks {
  18. overflow: scroll;
  19. float: right;
  20. height: 90%;
  21. width: 25%;
  22. }
  23. p.searchlinks {
  24. font-size: small;
  25. float: right;
  26. clear: right;
  27. border: 1px black solid;
  28. padding: 2px;
  29. margin-right: 4px;
  30. margin-left: 1em;
  31. }
  32. td { vertical-align: top; }
  33. /* Headers */
  34. /* I use <h1> for the page title... */
  35. h1 {
  36. font-size: 2em;
  37. font-weight: normal;
  38. color: #718c9d;
  39. text-align: left;
  40. margin-top: .1em;
  41. margin-bottom: 0em;
  42. padding: .1em;
  43. }
  44. h1 a:link { color: #006600; text-decoration: none; }
  45. h1 a:visited { color: #006600; }
  46. /* <h3> for dates and document titles on entries ... */
  47. h3 {
  48. clear: none;
  49. text-align: left;
  50. font-size: 1.25em;
  51. font-weight: normal;
  52. margin-top: .5em;
  53. margin-bottom: .5em;
  54. margin-left: 0em;
  55. }
  56. /* Block level elements */
  57. pre {
  58. font-family: "courier", monospace;
  59. }
  60. /* List items: */
  61. li {
  62. /* Make lists more legible. */
  63. margin-bottom: .3em;
  64. }
  65. dl {
  66. margin-left: 2em;
  67. }
  68. /* Paragraph formatting. */
  69. p {
  70. margin-bottom: 1em;
  71. text-indent: 0em;
  72. }
  73. p.centerpiece {
  74. text-align: center;
  75. clear: both;
  76. }
  77. p.left {
  78. float: left;
  79. clear: none;
  80. }
  81. p.right {
  82. float: right;
  83. clear: none;
  84. }
  85. /* Generalized link colors */
  86. a:link { color: #3333FF; text-decoration: none; }
  87. a:visited { color: #003399; text-decoration: none; }
  88. a:active { color: #FF0000; text-decoration: underline; }
  89. a:hover { text-decoration: underline; }
  90. /* Wala link colors */
  91. a.new {
  92. color: #AA0000;
  93. }
  94. a.external {
  95. color: #6666AA;
  96. }
  97. a strong {
  98. text-decoration: underline;
  99. }
  100. /* Other Stuff */
  101. /* Quoting stuff */
  102. blockquote {
  103. margin-left: 3em;
  104. margin-right: 3em;
  105. margin-bottom: 0.5em;
  106. }
  107. acronym:hover {
  108. color: green;
  109. }
  110. abbr:hover {
  111. color: green;
  112. }
  113. /* When text is inside overlapping <em> and <strong> tags,
  114. do something weird. */
  115. em strong, strong em {
  116. font-variant: small-caps;
  117. font-style: normal;
  118. font-weight: bolder;
  119. }
  120. /* inputbox stuff */
  121. textarea {
  122. display: block;
  123. font-family: monospace;
  124. border-color: #999 #FFF #FFF #999;
  125. }
  126. input, textarea {
  127. background-color: #eee;
  128. border-width: 1px;
  129. border-style: solid;
  130. float: none;
  131. }
  132. input {
  133. border-color: #FFF #999 #999 #FFF;
  134. }
  135. table.addbox {
  136. background-color: #BBBBBB;
  137. }