style.css 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. body {
  2. margin: 0;
  3. margin-bottom: 25px;
  4. padding: 0;
  5. background-color: #ddd;
  6. background-image: url("/images/perldancer-bg.jpg");
  7. background-repeat: no-repeat;
  8. background-position: top left;
  9. font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
  10. font-size: 13px;
  11. color: #333;
  12. }
  13. h1 {
  14. font-size: 28px;
  15. color: #000;
  16. }
  17. a {color: #03c}
  18. a:hover {
  19. background-color: #03c;
  20. color: white;
  21. text-decoration: none;
  22. }
  23. #page {
  24. background-color: #ddd;
  25. width: 750px;
  26. margin: auto;
  27. margin-left: auto;
  28. padding-left: 0px;
  29. margin-right: auto;
  30. }
  31. #content {
  32. background-color: white;
  33. border: 3px solid #aaa;
  34. border-top: none;
  35. padding: 25px;
  36. width: 500px;
  37. }
  38. #sidebar {
  39. float: right;
  40. width: 175px;
  41. }
  42. #header, #about, #getting-started {
  43. padding-left: 75px;
  44. padding-right: 30px;
  45. }
  46. #header {
  47. background-image: url("/images/perldancer.jpg");
  48. background-repeat: no-repeat;
  49. background-position: top left;
  50. height: 64px;
  51. }
  52. #header h1, #header h2 {margin: 0}
  53. #header h2 {
  54. color: #888;
  55. font-weight: normal;
  56. font-size: 16px;
  57. }
  58. #about h3 {
  59. margin: 0;
  60. margin-bottom: 10px;
  61. font-size: 14px;
  62. }
  63. #about-content {
  64. background-color: #ffd;
  65. border: 1px solid #fc0;
  66. margin-left: -11px;
  67. }
  68. #about-content table {
  69. margin-top: 10px;
  70. margin-bottom: 10px;
  71. font-size: 11px;
  72. border-collapse: collapse;
  73. }
  74. #about-content td {
  75. padding: 10px;
  76. padding-top: 3px;
  77. padding-bottom: 3px;
  78. }
  79. #about-content td.name {color: #555}
  80. #about-content td.value {color: #000}
  81. #about-content.failure {
  82. background-color: #fcc;
  83. border: 1px solid #f00;
  84. }
  85. #about-content.failure p {
  86. margin: 0;
  87. padding: 10px;
  88. }
  89. #getting-started {
  90. border-top: 1px solid #ccc;
  91. margin-top: 25px;
  92. padding-top: 15px;
  93. }
  94. #getting-started h1 {
  95. margin: 0;
  96. font-size: 20px;
  97. }
  98. #getting-started h2 {
  99. margin: 0;
  100. font-size: 14px;
  101. font-weight: normal;
  102. color: #333;
  103. margin-bottom: 25px;
  104. }
  105. #getting-started ol {
  106. margin-left: 0;
  107. padding-left: 0;
  108. }
  109. #getting-started li {
  110. font-size: 18px;
  111. color: #888;
  112. margin-bottom: 25px;
  113. }
  114. #getting-started li h2 {
  115. margin: 0;
  116. font-weight: normal;
  117. font-size: 18px;
  118. color: #333;
  119. }
  120. #getting-started li p {
  121. color: #555;
  122. font-size: 13px;
  123. }
  124. #search {
  125. margin: 0;
  126. padding-top: 10px;
  127. padding-bottom: 10px;
  128. font-size: 11px;
  129. }
  130. #search input {
  131. font-size: 11px;
  132. margin: 2px;
  133. }
  134. #search-text {width: 170px}
  135. #sidebar ul {
  136. margin-left: 0;
  137. padding-left: 0;
  138. }
  139. #sidebar ul h3 {
  140. margin-top: 25px;
  141. font-size: 16px;
  142. padding-bottom: 10px;
  143. border-bottom: 1px solid #ccc;
  144. }
  145. #sidebar li {
  146. list-style-type: none;
  147. }
  148. #sidebar ul.links li {
  149. margin-bottom: 5px;
  150. }
  151. h1, h2, h3, h4, h5 {
  152. font-family: sans-serif;
  153. margin: 1.2em 0 0.6em 0;
  154. }
  155. p {
  156. line-height: 1.5em;
  157. margin: 1.6em 0;
  158. }
  159. code, tt {
  160. font-family: 'Andale Mono', Monaco, 'Liberation Mono', 'Bitstream Vera Sans Mono', 'DejaVu Sans Mono', monospace;
  161. }
  162. #footer {
  163. clear: both;
  164. padding-top: 2em;
  165. text-align: center;
  166. padding-right: 160px;
  167. font-family: sans-serif;
  168. font-size: 10px;
  169. }