base.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  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. div#login {
  259. text-align: center;
  260. }
  261. div#login label, input {
  262. margin: 5px;
  263. }
  264. .notification.success {
  265. background:#f1ffbf url('../img/icons/success.png') no-repeat 10px 10px;
  266. border-color:#a6d50f;
  267. }
  268. .notification.success span.strong {
  269. color:#283304;
  270. }
  271. .notification.error {
  272. background:#fecdc6 url('../img/icons/error.png') no-repeat 10px 10px;
  273. border-color:#f45d43;
  274. }
  275. .notification.error span.strong {
  276. color:#33130e;
  277. }
  278. .notification.warning {
  279. background:#ffecb0 url('../img/icons/warning.png') no-repeat 10px 10px;
  280. border-color:#ffbc2a;
  281. }
  282. .notification.warning span.strong {
  283. color:#332508;
  284. }
  285. .notification.info {
  286. background:#d4e7f5 url('../img/icons/information.png') no-repeat 10px 10px;
  287. border-color:#589ad7;
  288. }
  289. .notification.info span.strong {
  290. color:#152433;
  291. }
  292. .notification.tip {
  293. background:#ffeccd url('../img/icons/tip.png') no-repeat 10px 10px;
  294. border-color:#dd9854;
  295. }
  296. .notification.tip span.strong {
  297. color:#332313;
  298. }
  299. .notification {
  300. padding:10px 10px 10px 35px;
  301. border:1px solid #fff;
  302. margin-bottom:10px;
  303. position:relative;
  304. font-size:100%;
  305. border-radius:3px;
  306. -moz-border-radius:3px;
  307. -webkit-border-radius:3px;
  308. }
  309. .notification p {
  310. margin-bottom:0;
  311. }
  312. .notification .close {
  313. background:url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
  314. cursor:pointer;
  315. display:block;
  316. height:16px;
  317. position:absolute;
  318. right:10px;
  319. top:10px;
  320. width:16px;
  321. }
  322. .notification .close:hover {
  323. opacity:1;
  324. }
  325. .notification.nopic {
  326. background-image:none;
  327. padding:10px;
  328. }
  329. .notification span.strong {
  330. margin-right:10px;
  331. }
  332. .pagination {
  333. display: inline-block;
  334. font-size: 77%;
  335. text-decoration: none;
  336. }
  337. .pagination a, .pagination .dots {
  338. background:url("../img/grad-grey.gif") repeat-x scroll center top #C3C3C3;
  339. border:1px solid #C3C3C3;
  340. display: inline-block;
  341. color:#444444 !important;
  342. margin-right: 2px;
  343. padding: 6px 8px;
  344. text-decoration:none;
  345. -moz-border-radius: 3px;
  346. -webkit-border-radius: 3px;
  347. border-radius: 3px;
  348. }
  349. .pagination a:hover {
  350. background: url("../img/grad-grey-hover.gif") repeat-x scroll center top #C3C3C3;
  351. color: #444444;
  352. }
  353. .pagination a.current {
  354. background: url("../img/grad-grey-rev.gif") repeat-x scroll center top #C3C3C3;
  355. color: #444444;
  356. }
  357. .pagination a.number.current {
  358. color: #444;
  359. }
  360. .table {
  361. border:1px solid #CCCCCC;
  362. width:100%;
  363. margin-bottom:20px;
  364. }
  365. .table thead th, .table thead td {
  366. padding:6px 10px;
  367. font-weight: 700;
  368. color: #333;
  369. background: #E2E2E2;
  370. border-bottom: 1px solid #cccccc;
  371. border-right:1px solid #CCCCCC;
  372. }
  373. .table thead th.last, .table thead td.last {
  374. border-right:0;
  375. }
  376. .table thead th.checkbox, .table thead td.checkbox {
  377. width:25px;
  378. }
  379. .table tbody th, .table tbody td {
  380. background:#fff;
  381. border-right:1px dotted #CCCCCC;
  382. vertical-align:middle;
  383. padding:10px;
  384. font-size:93%;
  385. }
  386. .table tbody tr.alt td {
  387. background:#F2F2F2;
  388. }
  389. .table tbody th.last, .table tbody td.last {
  390. border-right:0 none;
  391. }
  392. .table tbody tr.last td {
  393. border-bottom:0 none;
  394. }
  395. .table tbody tr:hover th, .table tbody tr:hover td {
  396. background:#d3ecf9;
  397. }