Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

186 linhas
2.9 KiB

  1. /*
  2. * CSS for libcaca
  3. * $Id$
  4. */
  5. /* Common attributes */
  6. html, body {
  7. padding: 0;
  8. border: 0;
  9. margin: 0;
  10. height: 100%;
  11. }
  12. body {
  13. color: black;
  14. background: url('/browser/web/trunk/static/img/back3.png?format=raw') repeat left top;
  15. background-color: black;
  16. }
  17. body, td, h1, h2, h3, p {
  18. font-family: serif;
  19. }
  20. h1 {
  21. font-size: 1.6em;
  22. font-variant: small-caps;
  23. color: #002200;
  24. background-color: inherit;
  25. }
  26. h2, h3 {
  27. text-indent: 0.5em;
  28. border-style: solid;
  29. border-color: #88aa77;
  30. background-color: inherit;
  31. }
  32. h2 {
  33. font-size: 1.3em;
  34. font-variant: small-caps;
  35. color: #224422;
  36. border-width: 0 0 2px 0;
  37. }
  38. h3 {
  39. font-size: 1.1em;
  40. color: #335533;
  41. border-width: 0 0 1px 0;
  42. }
  43. p {
  44. text-indent: 1em;
  45. text-align: inherit;
  46. }
  47. /* Layout-specific attributes */
  48. div.gradleft {
  49. /* no longer used */
  50. }
  51. div.gradright {
  52. /* no longer used */
  53. }
  54. div.top, div.main, div.bottom {
  55. width: 800px;
  56. display: table-caption;
  57. color: inherit;
  58. background-color: #dddddd;
  59. background: url('/browser/web/trunk/static/img/back4.png?format=raw') repeat left top;
  60. padding: 0 10px 0 10px;
  61. border-style: solid;
  62. border-width: 2px 2px 0 2px;
  63. border-color: black;
  64. margin: 0 auto 0 auto;
  65. text-align: justify;
  66. }
  67. div.top {
  68. border-width: 2px;
  69. margin-top: 10px;
  70. }
  71. div.main {
  72. padding: 5px 10px 5px 10px;
  73. height: 100%;
  74. }
  75. div.bottom {
  76. clear: both;
  77. position: relative;
  78. border-width: 0 2px 2px 2px;
  79. margin-bottom: 5px;
  80. }
  81. div.bottombar {
  82. font-family: monospace;
  83. font-weight: bold;
  84. font-size: smaller;
  85. padding: 0;
  86. border-style: solid;
  87. border-width: 2px 0 0 0;
  88. border-color: #88aa77;
  89. }
  90. img.caca {
  91. border: solid 2px #88aa77;
  92. margin: 10px 20px 10px 20px;
  93. float: right;
  94. }
  95. img.inline, img.inlinetop {
  96. border: solid 2px #88aa77;
  97. padding: 2px;
  98. }
  99. img.inlinetop {
  100. vertical-align: top;
  101. }
  102. img.math {
  103. vertical-align: middle;
  104. margin-left: 10px;
  105. margin-right: 10px;
  106. }
  107. img.matrix {
  108. vertical-align: top;
  109. margin-right: 30px;
  110. margin-top: 10px;
  111. }
  112. div.toilet {
  113. border: solid 2px #88aa77;
  114. padding-left: 10px;
  115. padding-right: 10px;
  116. }
  117. p.toilet {
  118. text-indent: 0;
  119. }
  120. p.dashit {
  121. float: right;
  122. text-align: right;
  123. font-size: smaller;
  124. font-style: italic;
  125. }
  126. a:link { color: #33aa55; background-color: inherit; }
  127. a:visited { color: #117722; background-color: inherit; }
  128. a:hover { color: #aa22dd; background-color: inherit; text-decoration: none; }
  129. a:active { color: #cc22ff; background-color: inherit; }
  130. /* Top menubar handling */
  131. div.menubar {
  132. text-align: center;
  133. color: inherit;
  134. padding: 8px 0px;
  135. }
  136. a.menubutton {
  137. color: black;
  138. background: url('/browser/web/trunk/static/img/back4.png?format=raw') repeat left top;
  139. background-color: #dddddd;
  140. text-decoration: none;
  141. font-weight: bold;
  142. border: solid black 2px;
  143. padding: 4px 10px 4px 10px;
  144. margin: 0 5px 0 5px;
  145. }
  146. a.menubutton:link {
  147. color: black;
  148. }
  149. a.menubutton:hover {
  150. color: #ffffff;
  151. border-color: #ffffff;
  152. background: inherit;
  153. }