Advertisement
Guest User

Untitled

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