base.css 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. body {
  2. font-family: Cantarell;
  3. letter-spacing: -0.01em;
  4. }
  5. a:link, a:visited {
  6. text-decoration: none;
  7. }
  8. h1 {
  9. font-weight: bold;
  10. font-size: 220%;
  11. float: left;
  12. margin-top: 5px;
  13. }
  14. h2 {
  15. font-size:200%;
  16. margin-bottom:10px;
  17. }
  18. h2.ribbon {
  19. padding: 15px 30px;
  20. position: relative;
  21. left: -55px;
  22. float: left;
  23. margin: 20px 0;
  24. border-radius: 3px 3px 3px 0px;
  25. -moz-border-radius: 3px 3px 3px 0px;
  26. -webkit-border-radius: 3px 3px 3px 0px;
  27. width: 890px;
  28. }
  29. .triangle-ribbon {
  30. /* border-right-color is overwritten by theme */
  31. border: 13px solid transparent;
  32. height: 0;
  33. position: relative;
  34. width: 0;
  35. float: left;
  36. clear: left;
  37. left: -67px;
  38. top: -33px;
  39. margin-bottom: -20px;
  40. z-index: -1;
  41. }
  42. h2 span {
  43. position:absolute;
  44. right:25px;
  45. font-size:80%;
  46. margin:3px 0 0;
  47. }
  48. h3 {
  49. font-size:180%;
  50. font-weight: bold;
  51. margin-bottom:15px;
  52. }
  53. h4 {
  54. font-size:128%;
  55. font-weight: bold;
  56. margin-bottom:20px;
  57. color:#333333;
  58. }
  59. h5 {
  60. font-size:100%;
  61. }
  62. h5.inline {
  63. float:left;
  64. margin-right:10px;
  65. }
  66. h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
  67. margin-right:5px;
  68. vertical-align:-2px;
  69. }
  70. .cl {
  71. background: none;
  72. border: 0;
  73. clear: both;
  74. display: block;
  75. float: none;
  76. font-size: 0;
  77. list-style: none;
  78. margin: 0;
  79. padding: 0;
  80. overflow: hidden;
  81. visibility: hidden;
  82. width: 0;
  83. height: 0;
  84. }
  85. nav {
  86. float: left;
  87. }
  88. nav ul {
  89. line-height: 100%;
  90. margin: 0 auto;
  91. padding: 10px;
  92. width: 100%;
  93. }
  94. nav ul li {
  95. display: inline-block;
  96. list-style: none;
  97. z-index: 100;
  98. margin-left: 15px;
  99. }
  100. nav a {
  101. font-weight: bold;
  102. text-decoration: none;
  103. display: block;
  104. padding: 8px 12px;
  105. font-size:113%;
  106. -webkit-border-radius: 3px;
  107. -moz-border-radius: 3px;
  108. border-radius: 3px;
  109. }
  110. nav a:hover {
  111. background: #000;
  112. color: #000;
  113. }
  114. nav .current a, nav li:hover > a {
  115. background: #e5e5e5;
  116. color: #444;
  117. border-top: solid 1px #cccccc;
  118. border-left: solid 1px #cccccc;
  119. border-right:1px solid #e0e0e0;
  120. border-bottom:1px solid #e0e0e0;
  121. padding:7px 11px 8px;
  122. text-shadow:0 1px 0 #FFFFFF;
  123. }
  124. nav ul li:first-child > a {
  125. -webkit-border-top-left-radius: 3px;
  126. -moz-border-radius-topleft: 3px;
  127. -webkit-border-top-right-radius: 3px;
  128. -moz-border-radius-topright: 3px;
  129. }
  130. nav ul li:last-child > a {
  131. -webkit-border-bottom-left-radius: 3px;
  132. -moz-border-radius-bottomleft: 3px;
  133. -webkit-border-bottom-right-radius: 3px;
  134. -moz-border-radius-bottomright: 3px;
  135. }
  136. header {
  137. width: 980px;
  138. margin: 25px auto 20px;
  139. }
  140. footer {
  141. padding: 10px 0;
  142. width: 980px;
  143. margin: 25px auto 20px;
  144. }
  145. #page {
  146. background: #fff;
  147. color: #191919;
  148. border: 1px solid #d9d9d9;
  149. padding: 40px;
  150. position: relative;
  151. width: 898px;
  152. margin: 0 auto;
  153. z-index: 1;
  154. border-radius: 3px;
  155. -moz-border-radius: 3px;
  156. -webkit-border-radius: 3px;
  157. }
  158. #page-content.two-col {
  159. float:left;
  160. padding-right:35px;
  161. width:600px;
  162. display:inline;
  163. }
  164. .breadcrumbs {
  165. margin:0 0 20px;
  166. list-style:none;
  167. padding:10px 15px;
  168. background:#f2f2f2;
  169. border:1px solid #D9D9D9;
  170. font-size:93%;
  171. color:#333333;
  172. border-radius:3px;
  173. -moz-border-radius:3px;
  174. -webkit-border-radius:3px;
  175. }
  176. .breadcrumbs li {
  177. display:inline;
  178. }
  179. .inlinepic {
  180. background:#fafafa;
  181. border:1px solid #ccc;
  182. padding:5px;
  183. box-shadow:0 0 5px #D9D9D9;
  184. -moz-box-shadow:0 0 5px #D9D9D9;
  185. -webkit-box-shadow:0 0 5px #D9D9D9;
  186. }
  187. blockquote {
  188. background:url("../img/quote.gif") no-repeat 0 5px;
  189. color:#444444;
  190. line-height:1.6;
  191. padding:5px 20px 10px 45px;
  192. margin-bottom:20px;
  193. }
  194. blockquote cite {
  195. color:#666666;
  196. font-size:12px;
  197. font-style:italic;
  198. }
  199. p {
  200. line-height:1.6;
  201. margin-bottom:20px;
  202. }
  203. .list {
  204. margin-bottom:15px;
  205. }
  206. .list li {
  207. margin-bottom:5px;
  208. padding:0;
  209. }
  210. .list ul {
  211. margin-bottom:15px;
  212. }
  213. .tags {
  214. margin:0 0 15px;
  215. list-style:none;
  216. }
  217. .tags li {
  218. display:inline;
  219. background:#D9D9D9;
  220. margin-right:10px;
  221. font-size:85%;
  222. padding:3px 6px;
  223. border-radius:20px;
  224. -moz-border-radius:20px;
  225. -webkit-border-radius:20px;
  226. }
  227. form.navsearch {
  228. float: right;
  229. margin-top: 5px;
  230. }
  231. body.ie7 form, body.ie8 {
  232. margin-bottom:40px;
  233. }
  234. form p {
  235. margin-bottom:15px;
  236. }
  237. form input, form textarea, form select {
  238. padding: 7px 5px;
  239. border: 1px solid #ccc;
  240. border-radius: 3px;
  241. -moz-border-radius: 3px;
  242. -webkit-border-radius: 3px;
  243. }
  244. form select {
  245. padding: 6px 5px;
  246. }
  247. input[type="button"], input[type="submit"], button {
  248. padding: 6px 5px; /* looks high in FF at inherited 7 5 */
  249. line-height: 18px; /* looks small in webkit at 6 5 */
  250. cursor: pointer;
  251. display: inline-block;
  252. font-weight: 700;
  253. outline: none;
  254. color: #444;
  255. text-shadow: 0 -1px 0 #eee;
  256. border-radius: 3px;
  257. -moz-border-radius: 3px;
  258. -webkit-border-radius: 3px;
  259. }
  260. div#login {
  261. text-align: center;
  262. }
  263. div#login label, input {
  264. margin: 5px;
  265. }
  266. .notification.success {
  267. background:#f1ffbf url('../img/icons/success.png') no-repeat 10px 10px;
  268. border-color:#a6d50f;
  269. }
  270. .notification.success span.strong {
  271. color:#283304;
  272. }
  273. .notification.error {
  274. background:#fecdc6 url('../img/icons/error.png') no-repeat 10px 10px;
  275. border-color:#f45d43;
  276. }
  277. .notification.error span.strong {
  278. color:#33130e;
  279. }
  280. .notification.warning {
  281. background:#ffecb0 url('../img/icons/warning.png') no-repeat 10px 10px;
  282. border-color:#ffbc2a;
  283. }
  284. .notification.warning span.strong {
  285. color:#332508;
  286. }
  287. .notification.info {
  288. background:#d4e7f5 url('../img/icons/information.png') no-repeat 10px 10px;
  289. border-color:#589ad7;
  290. }
  291. .notification.info span.strong {
  292. color:#152433;
  293. }
  294. .notification.tip {
  295. background:#ffeccd url('../img/icons/tip.png') no-repeat 10px 10px;
  296. border-color:#dd9854;
  297. }
  298. .notification.tip span.strong {
  299. color:#332313;
  300. }
  301. .notification {
  302. padding:10px 10px 10px 35px;
  303. border:1px solid #fff;
  304. margin-bottom:10px;
  305. position:relative;
  306. font-size:100%;
  307. border-radius:3px;
  308. -moz-border-radius:3px;
  309. -webkit-border-radius:3px;
  310. }
  311. .notification p {
  312. margin-bottom:0;
  313. }
  314. .notification .close {
  315. background:url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
  316. cursor:pointer;
  317. display:block;
  318. height:16px;
  319. position:absolute;
  320. right:10px;
  321. top:10px;
  322. width:16px;
  323. }
  324. .notification .close:hover {
  325. opacity:1;
  326. }
  327. .notification.nopic {
  328. background-image:none;
  329. padding:10px;
  330. }
  331. .notification span.strong {
  332. margin-right:10px;
  333. }
  334. .table {
  335. border:1px solid #CCCCCC;
  336. width:100%;
  337. margin-bottom:20px;
  338. }
  339. .table thead th, .table thead td {
  340. padding:6px 10px;
  341. font-weight: 700;
  342. color: #333;
  343. background: #E2E2E2;
  344. border-bottom: 1px solid #cccccc;
  345. border-right:1px solid #CCCCCC;
  346. }
  347. .table thead th.last, .table thead td.last {
  348. border-right:0;
  349. }
  350. .table thead th.checkbox, .table thead td.checkbox {
  351. width:25px;
  352. }
  353. .table tbody th, .table tbody td {
  354. background:#fff;
  355. border-right:1px dotted #CCCCCC;
  356. vertical-align:middle;
  357. padding:10px;
  358. font-size:93%;
  359. }
  360. .table tbody tr.alt td {
  361. background:#F2F2F2;
  362. }
  363. .table tbody th.last, .table tbody td.last {
  364. border-right:0 none;
  365. }
  366. .table tbody tr.last td {
  367. border-bottom:0 none;
  368. }
  369. .table tbody tr:hover th, .table tbody tr:hover td {
  370. background:#d3ecf9;
  371. }