Base for a static organization website

cake.generic.css 15KB

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