summaryrefslogtreecommitdiff
path: root/website/local.css
blob: b2d86c7b0637b3ca52801c16505436a0a7f78132 (plain)
  1. /* CSS for web.monkeysphere.info
  2. Copyright: 2008,2009
  3. Authors:
  4. Dan Scott,
  5. Daniel Kahn Gillmor <dkg@fifthhorseman.net>,
  6. Jameson Graef Rollins <jrollins@finestructure.net>,
  7. Jamie McClelland <jm@mayfirst.org>
  8. License: This stylesheet is licensed under the GNU GPL, version 3 or
  9. later (your choice).
  10. The full text of the GPL can be found at:
  11. http://www.gnu.org/licenses/gpl.html
  12. */
  13. h1 {
  14. -moz-border-radius: 4px;
  15. background-color: #B67B4E;
  16. color: black;
  17. display: block;
  18. font-weight: bold;
  19. padding: 0 0 0 10px;
  20. font-size: 1.4em;
  21. }
  22. h2 {
  23. -moz-border-radius: 4px;
  24. background-color: #B67B4E;
  25. color: black;
  26. display: block;
  27. font-weight: bold;
  28. padding: 0 0 0 10px;
  29. font-size: 1.1em;
  30. }
  31. body {
  32. color: #3F403F;
  33. font-family: "Liberation Sans",sans-serif;
  34. font-size: 0.95em;
  35. }
  36. *|*:visited {
  37. color: #f6a464;
  38. }
  39. *|*:-moz-any-link {
  40. text-decoration: none;
  41. }
  42. :-moz-any-link {
  43. cursor: pointer;
  44. }
  45. a:link {
  46. color: #CC6600;
  47. text-deoration: none;
  48. }
  49. a:visited {
  50. color: #c2772b;
  51. }
  52. a:hover {
  53. text-decoration: underline;
  54. }
  55. pre {
  56. background: #ddd;
  57. border: 1px solid #aaa;
  58. padding: 3px 3px 3px 3px;
  59. margin-left: 38px;
  60. margin-right: 5em;
  61. overflow: auto;
  62. }
  63. table.sitenav {
  64. border-bottom: 2px solid black;
  65. padding: 0px;
  66. width: 100%;
  67. font-size: larger;
  68. }
  69. table.sitenav img.logo {
  70. margin: 0em;
  71. padding: 0px;
  72. vertical-align: bottom;
  73. }
  74. table.sitenav img.title {
  75. margin: 0px;
  76. padding: 0px;
  77. vertical-align: top;
  78. }
  79. table.sitenav a {
  80. font-weight: bold;
  81. margin-right: 1em;
  82. font-size: smaller;
  83. }
  84. table.sitenav span.selflink {
  85. font-weight: bold;
  86. text-decoration: underline;
  87. margin-right: 1em;
  88. font-variant: small-caps;
  89. }
  90. div.header {
  91. text-align: right;
  92. display: none;
  93. }
  94. div.actions {
  95. text-align: right;
  96. display: none;
  97. }
  98. #sidebar {
  99. line-height: normal;
  100. width: 100%;
  101. float: none;
  102. margin: 0;
  103. padding: 0;
  104. }
  105. /* align main paragraphs to the right side of the monkey's finger */
  106. div#content > p {
  107. margin-left: 18px;
  108. margin-right: 5em;
  109. }