base.css 7.2 KB

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