Base for a static organization website

cake.generic.css 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. @charset "utf-8";
  2. /**
  3. * Generic CSS for CakePHP
  4. *
  5. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  6. * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  7. *
  8. * Licensed under The MIT License
  9. * For full copyright and license information, please see the LICENSE.txt
  10. * Redistributions of files must retain the above copyright notice.
  11. *
  12. * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
  13. * @link http://cakephp.org CakePHP(tm) Project
  14. * @package app.webroot.css
  15. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  16. */
  17. * {
  18. margin:0;
  19. padding:0;
  20. }
  21. /** General Style Info **/
  22. body {
  23. background: #003d4c;
  24. color: #fff;
  25. font-family:'lucida grande',verdana,helvetica,arial,sans-serif;
  26. font-size:90%;
  27. margin: 0;
  28. }
  29. a {
  30. color: #003d4c;
  31. text-decoration: underline;
  32. font-weight: bold;
  33. }
  34. a:hover {
  35. color: #367889;
  36. text-decoration:none;
  37. }
  38. a img {
  39. border:none;
  40. }
  41. h1, h2, h3, h4 {
  42. font-weight: normal;
  43. margin-bottom:0.5em;
  44. }
  45. h1 {
  46. background:#fff;
  47. color: #003d4c;
  48. font-size: 100%;
  49. }
  50. h2 {
  51. background:#fff;
  52. color: #e32;
  53. font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
  54. font-size: 190%;
  55. }
  56. h3 {
  57. color: #2c6877;
  58. font-family:'Gill Sans','lucida grande', helvetica, arial, sans-serif;
  59. font-size: 165%;
  60. }
  61. h4 {
  62. color: #993;
  63. font-weight: normal;
  64. }
  65. ul, li {
  66. margin: 0 12px;
  67. }
  68. p {
  69. margin: 0 0 1em 0;
  70. }
  71. /** Layout **/
  72. #container {
  73. text-align: left;
  74. }
  75. #header{
  76. padding: 10px 20px;
  77. }
  78. #header h1 {
  79. line-height:20px;
  80. background: #003d4c url('../img/cake.icon.png') no-repeat left;
  81. color: #fff;
  82. padding: 0 30px;
  83. }
  84. #header h1 a {
  85. color: #fff;
  86. background: #003d4c;
  87. font-weight: normal;
  88. text-decoration: none;
  89. }
  90. #header h1 a:hover {
  91. color: #fff;
  92. background: #003d4c;
  93. text-decoration: underline;
  94. }
  95. #content{
  96. background: #fff;
  97. clear: both;
  98. color: #333;
  99. padding: 10px 20px 40px 20px;
  100. overflow: auto;
  101. }
  102. #footer {
  103. clear: both;
  104. padding: 6px 10px;
  105. text-align: right;
  106. }
  107. #header a, #footer a {
  108. color: #fff;
  109. }
  110. /** containers **/
  111. div.form,
  112. div.index,
  113. div.view {
  114. float:right;
  115. width:76%;
  116. border-left:1px solid #666;
  117. padding:10px 2%;
  118. }
  119. div.actions {
  120. float:left;
  121. width:16%;
  122. padding:10px 1.5%;
  123. }
  124. div.actions h3 {
  125. padding-top:0;
  126. color:#777;
  127. }
  128. /** Tables **/
  129. table {
  130. border-right:0;
  131. clear: both;
  132. color: #333;
  133. margin-bottom: 10px;
  134. width: 100%;
  135. }
  136. th {
  137. border:0;
  138. border-bottom:2px solid #555;
  139. text-align: left;
  140. padding:4px;
  141. }
  142. th a {
  143. display: block;
  144. padding: 2px 4px;
  145. text-decoration: none;
  146. }
  147. th a.asc:after {
  148. content: ' ⇣';
  149. }
  150. th a.desc:after {
  151. content: ' ⇡';
  152. }
  153. table tr td {
  154. padding: 6px;
  155. text-align: left;
  156. vertical-align: top;
  157. border-bottom:1px solid #ddd;
  158. }
  159. table tr:nth-child(even) {
  160. background: #f9f9f9;
  161. }
  162. td.actions {
  163. text-align: center;
  164. white-space: nowrap;
  165. }
  166. table td.actions a {
  167. margin: 0 6px;
  168. padding:2px 5px;
  169. }
  170. /* SQL log */
  171. .cake-sql-log {
  172. background: #fff;
  173. }
  174. .cake-sql-log td {
  175. padding: 4px 8px;
  176. text-align: left;
  177. font-family: Monaco, Consolas, "Courier New", monospaced;
  178. }
  179. .cake-sql-log caption {
  180. color:#fff;
  181. }
  182. /** Paging **/
  183. .paging {
  184. background:#fff;
  185. color: #ccc;
  186. margin-top: 1em;
  187. clear:both;
  188. }
  189. .paging .current,
  190. .paging .disabled,
  191. .paging a {
  192. text-decoration: none;
  193. padding: 5px 8px;
  194. display: inline-block
  195. }
  196. .paging > span {
  197. display: inline-block;
  198. border: 1px solid #ccc;
  199. border-left: 0;
  200. }
  201. .paging > span:hover {
  202. background: #efefef;
  203. }
  204. .paging .prev {
  205. border-left: 1px solid #ccc;
  206. -moz-border-radius: 4px 0 0 4px;
  207. -webkit-border-radius: 4px 0 0 4px;
  208. border-radius: 4px 0 0 4px;
  209. }
  210. .paging .next {
  211. -moz-border-radius: 0 4px 4px 0;
  212. -webkit-border-radius: 0 4px 4px 0;
  213. border-radius: 0 4px 4px 0;
  214. }
  215. .paging .disabled {
  216. color: #ddd;
  217. }
  218. .paging .disabled:hover {
  219. background: transparent;
  220. }
  221. .paging .current {
  222. background: #efefef;
  223. color: #c73e14;
  224. }
  225. /** Scaffold View **/
  226. dl {
  227. line-height: 2em;
  228. margin: 0em 0em;
  229. width: 60%;
  230. }
  231. dl dd:nth-child(4n+2),
  232. dl dt:nth-child(4n+1) {
  233. background: #f4f4f4;
  234. }
  235. dt {
  236. font-weight: bold;
  237. padding-left: 4px;
  238. vertical-align: top;
  239. width: 10em;
  240. }
  241. dd {
  242. margin-left: 10em;
  243. margin-top: -2em;
  244. vertical-align: top;
  245. }
  246. /** Forms **/
  247. form {
  248. clear: both;
  249. margin-right: 20px;
  250. padding: 0;
  251. width: 95%;
  252. }
  253. fieldset {
  254. border: none;
  255. margin-bottom: 1em;
  256. padding: 16px 10px;
  257. }
  258. fieldset legend {
  259. color: #e32;
  260. font-size: 160%;
  261. font-weight: bold;
  262. }
  263. fieldset fieldset {
  264. margin-top: 0;
  265. padding: 10px 0 0;
  266. }
  267. fieldset fieldset legend {
  268. font-size: 120%;
  269. font-weight: normal;
  270. }
  271. fieldset fieldset div {
  272. clear: left;
  273. margin: 0 20px;
  274. }
  275. form div {
  276. clear: both;
  277. margin-bottom: 1em;
  278. padding: .5em;
  279. vertical-align: text-top;
  280. }
  281. form .input {
  282. color: #444;
  283. }
  284. form .required {
  285. font-weight: bold;
  286. }
  287. form .required label:after {
  288. color: #e32;
  289. content: '*';
  290. display:inline;
  291. }
  292. form div.submit {
  293. border: 0;
  294. clear: both;
  295. margin-top: 10px;
  296. }
  297. label {
  298. display: block;
  299. font-size: 110%;
  300. margin-bottom:3px;
  301. }
  302. input, textarea {
  303. clear: both;
  304. font-size: 140%;
  305. font-family: "frutiger linotype", "lucida grande", "verdana", sans-serif;
  306. padding: 1%;
  307. width:98%;
  308. }
  309. select {
  310. clear: both;
  311. font-size: 120%;
  312. vertical-align: text-bottom;
  313. }
  314. select[multiple=multiple] {
  315. width: 100%;
  316. }
  317. option {
  318. font-size: 120%;
  319. padding: 0 3px;
  320. }
  321. input[type=checkbox] {
  322. clear: left;
  323. float: left;
  324. margin: 0 6px 7px 2px;
  325. width: auto;
  326. }
  327. div.checkbox label {
  328. display: inline;
  329. }
  330. input[type=radio] {
  331. float:left;
  332. width:auto;
  333. margin: 6px 0;
  334. padding: 0;
  335. line-height: 26px;
  336. }
  337. .radio label {
  338. margin: 0 0 6px 20px;
  339. line-height: 26px;
  340. }
  341. input[type=submit] {
  342. display: inline;
  343. font-size: 110%;
  344. width: auto;
  345. }
  346. form .submit input[type=submit] {
  347. background:#62af56;
  348. background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
  349. background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
  350. background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
  351. border-color: #2d6324;
  352. color: #fff;
  353. text-shadow: rgba(0, 0, 0, 0.5) 0 -1px 0;
  354. padding: 8px 10px;
  355. }
  356. form .submit input[type=submit]:hover {
  357. background: #5BA150;
  358. }
  359. /* Form errors */
  360. form .error {
  361. background: #FFDACC;
  362. -moz-border-radius: 4px;
  363. -webkit-border-radius: 4px;
  364. border-radius: 4px;
  365. font-weight: normal;
  366. }
  367. form .error-message {
  368. -moz-border-radius: none;
  369. -webkit-border-radius: none;
  370. border-radius: none;
  371. border: none;
  372. background: none;
  373. margin: 0;
  374. padding-left: 4px;
  375. padding-right: 0;
  376. }
  377. form .error,
  378. form .error-message {
  379. color: #9E2424;
  380. -webkit-box-shadow: none;
  381. -moz-box-shadow: none;
  382. -ms-box-shadow: none;
  383. -o-box-shadow: none;
  384. box-shadow: none;
  385. text-shadow: none;
  386. }
  387. /** Notices and Errors **/
  388. .message {
  389. clear: both;
  390. color: #fff;
  391. font-size: 140%;
  392. font-weight: bold;
  393. margin: 0 0 1em 0;
  394. padding: 5px;
  395. }
  396. .success,
  397. .message,
  398. .cake-error,
  399. .cake-debug,
  400. .notice,
  401. p.error,
  402. .error-message {
  403. background: #ffcc00;
  404. background-repeat: repeat-x;
  405. background-image: -moz-linear-gradient(top, #ffcc00, #E6B800);
  406. background-image: -ms-linear-gradient(top, #ffcc00, #E6B800);
  407. background-image: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#E6B800));
  408. background-image: -webkit-linear-gradient(top, #ffcc00, #E6B800);
  409. background-image: -o-linear-gradient(top, #ffcc00, #E6B800);
  410. background-image: linear-gradient(top, #ffcc00, #E6B800);
  411. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  412. border: 1px solid rgba(0, 0, 0, 0.2);
  413. margin-bottom: 18px;
  414. padding: 7px 14px;
  415. color: #404040;
  416. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  417. -webkit-border-radius: 4px;
  418. -moz-border-radius: 4px;
  419. border-radius: 4px;
  420. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  421. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  422. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  423. }
  424. .success,
  425. .message,
  426. .cake-error,
  427. p.error,
  428. .error-message {
  429. clear: both;
  430. color: #fff;
  431. background: #c43c35;
  432. border: 1px solid rgba(0, 0, 0, 0.5);
  433. background-repeat: repeat-x;
  434. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  435. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  436. background-image: -webkit-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  437. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  438. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  439. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  440. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  441. }
  442. .success {
  443. clear: both;
  444. color: #fff;
  445. border: 1px solid rgba(0, 0, 0, 0.5);
  446. background: #3B8230;
  447. background-repeat: repeat-x;
  448. background-image: -webkit-gradient(linear, left top, left bottom, from(#76BF6B), to(#3B8230));
  449. background-image: -webkit-linear-gradient(top, #76BF6B, #3B8230);
  450. background-image: -moz-linear-gradient(top, #76BF6B, #3B8230);
  451. background-image: -ms-linear-gradient(top, #76BF6B, #3B8230);
  452. background-image: -o-linear-gradient(top, #76BF6B, #3B8230);
  453. background-image: linear-gradient(top, #76BF6B, #3B8230);
  454. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  455. }
  456. p.error {
  457. font-family: Monaco, Consolas, Courier, monospace;
  458. font-size: 120%;
  459. padding: 0.8em;
  460. margin: 1em 0;
  461. }
  462. p.error em {
  463. font-weight: normal;
  464. line-height: 140%;
  465. }
  466. .notice {
  467. color: #000;
  468. display: block;
  469. font-size: 120%;
  470. padding: 0.8em;
  471. margin: 1em 0;
  472. }
  473. .success {
  474. color: #fff;
  475. }
  476. /** Actions **/
  477. .actions ul {
  478. margin: 0;
  479. padding: 0;
  480. }
  481. .actions li {
  482. margin:0 0 0.5em 0;
  483. list-style-type: none;
  484. white-space: nowrap;
  485. padding: 0;
  486. }
  487. .actions ul li a {
  488. font-weight: normal;
  489. display: block;
  490. clear: both;
  491. }
  492. /* Buttons and button links */
  493. input[type=submit],
  494. .actions ul li a,
  495. .actions a {
  496. font-weight:normal;
  497. padding: 4px 8px;
  498. background: #dcdcdc;
  499. background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  500. background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
  501. background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
  502. background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
  503. background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
  504. background-image: linear-gradient(top, #fefefe, #dcdcdc);
  505. color:#333;
  506. border:1px solid #bbb;
  507. -webkit-border-radius: 4px;
  508. -moz-border-radius: 4px;
  509. border-radius: 4px;
  510. text-decoration: none;
  511. text-shadow: #fff 0 1px 0;
  512. min-width: 0;
  513. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.2);
  514. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.2);
  515. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.2);
  516. -webkit-user-select: none;
  517. user-select: none;
  518. }
  519. .actions ul li a:hover,
  520. .actions a:hover {
  521. background: #ededed;
  522. border-color: #acacac;
  523. text-decoration: none;
  524. }
  525. input[type=submit]:active,
  526. .actions ul li a:active,
  527. .actions a:active {
  528. background: #eee;
  529. background-image: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#eee));
  530. background-image: -webkit-linear-gradient(top, #dfdfdf, #eee);
  531. background-image: -moz-linear-gradient(top, #dfdfdf, #eee);
  532. background-image: -ms-linear-gradient(top, #dfdfdf, #eee);
  533. background-image: -o-linear-gradient(top, #dfdfdf, #eee);
  534. background-image: linear-gradient(top, #dfdfdf, #eee);
  535. text-shadow: #eee 0 1px 0;
  536. -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  537. -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  538. box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3);
  539. border-color: #aaa;
  540. text-decoration: none;
  541. }
  542. /** Related **/
  543. .related {
  544. clear: both;
  545. display: block;
  546. }
  547. /** Debugging **/
  548. pre {
  549. color: #000;
  550. background: #f0f0f0;
  551. padding: 15px;
  552. -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  553. -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  554. box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  555. }
  556. .cake-debug-output {
  557. padding: 0;
  558. position: relative;
  559. }
  560. .cake-debug-output > span {
  561. position: absolute;
  562. top: 5px;
  563. right: 5px;
  564. background: rgba(255, 255, 255, 0.3);
  565. -moz-border-radius: 4px;
  566. -webkit-border-radius: 4px;
  567. border-radius: 4px;
  568. padding: 5px 6px;
  569. color: #000;
  570. display: block;
  571. float: left;
  572. -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  573. -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  574. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  575. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  576. }
  577. .cake-debug,
  578. .cake-error {
  579. font-size: 16px;
  580. line-height: 20px;
  581. clear: both;
  582. }
  583. .cake-error > a {
  584. text-shadow: none;
  585. }
  586. .cake-error {
  587. white-space: normal;
  588. }
  589. .cake-stack-trace {
  590. background: rgba(255, 255, 255, 0.7);
  591. color: #333;
  592. margin: 10px 0 5px 0;
  593. padding: 10px 10px 0 10px;
  594. font-size: 120%;
  595. line-height: 140%;
  596. overflow: auto;
  597. position: relative;
  598. -moz-border-radius: 4px;
  599. -webkit-border-radius: 4px;
  600. border-radius: 4px;
  601. }
  602. .cake-stack-trace a {
  603. text-shadow: none;
  604. background: rgba(255, 255, 255, 0.7);
  605. padding: 5px;
  606. -moz-border-radius: 10px;
  607. -webkit-border-radius: 10px;
  608. border-radius: 10px;
  609. margin: 0 4px 10px 2px;
  610. font-family: sans-serif;
  611. font-size: 14px;
  612. line-height: 14px;
  613. display: inline-block;
  614. text-decoration: none;
  615. -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.3);
  616. -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.3);
  617. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.3);
  618. }
  619. .cake-code-dump pre {
  620. position: relative;
  621. overflow: auto;
  622. }
  623. .cake-context {
  624. margin-bottom: 10px;
  625. }
  626. .cake-stack-trace pre {
  627. color: #000;
  628. background-color: #F0F0F0;
  629. margin: 0 0 10px 0;
  630. padding: 1em;
  631. overflow: auto;
  632. text-shadow: none;
  633. }
  634. .cake-stack-trace li {
  635. padding: 10px 5px 0;
  636. margin: 0 0 4px 0;
  637. font-family: monospace;
  638. border: 1px solid #bbb;
  639. -moz-border-radius: 4px;
  640. -wekbkit-border-radius: 4px;
  641. border-radius: 4px;
  642. background: #dcdcdc;
  643. background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  644. background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
  645. background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
  646. background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
  647. background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
  648. background-image: linear-gradient(top, #fefefe, #dcdcdc);
  649. }
  650. /* excerpt */
  651. .cake-code-dump pre,
  652. .cake-code-dump pre code {
  653. clear: both;
  654. font-size: 12px;
  655. line-height: 15px;
  656. margin: 4px 2px;
  657. padding: 4px;
  658. overflow: auto;
  659. }
  660. .cake-code-dump .code-highlight {
  661. display: block;
  662. background-color: rgba(255, 255, 0, 0.5);
  663. }
  664. .code-coverage-results div.code-line {
  665. padding-left:5px;
  666. display:block;
  667. margin-left:10px;
  668. }
  669. .code-coverage-results div.uncovered span.content {
  670. background:#ecc;
  671. }
  672. .code-coverage-results div.covered span.content {
  673. background:#cec;
  674. }
  675. .code-coverage-results div.ignored span.content {
  676. color:#aaa;
  677. }
  678. .code-coverage-results span.line-num {
  679. color:#666;
  680. display:block;
  681. float:left;
  682. width:20px;
  683. text-align:right;
  684. margin-right:5px;
  685. }
  686. .code-coverage-results span.line-num strong {
  687. color:#666;
  688. }
  689. .code-coverage-results div.start {
  690. border:1px solid #aaa;
  691. border-width:1px 1px 0 1px;
  692. margin-top:30px;
  693. padding-top:5px;
  694. }
  695. .code-coverage-results div.end {
  696. border:1px solid #aaa;
  697. border-width:0px 1px 1px 1px;
  698. margin-bottom:30px;
  699. padding-bottom:5px;
  700. }
  701. .code-coverage-results div.realstart {
  702. margin-top:0px;
  703. }
  704. .code-coverage-results p.note {
  705. color:#bbb;
  706. padding:5px;
  707. margin:5px 0 10px;
  708. font-size:10px;
  709. }
  710. .code-coverage-results span.result-bad {
  711. color: #a00;
  712. }
  713. .code-coverage-results span.result-ok {
  714. color: #fa0;
  715. }
  716. .code-coverage-results span.result-good {
  717. color: #0a0;
  718. }
  719. /** Elements **/
  720. #url-rewriting-warning {
  721. display:none;
  722. }