Advertisement
valdeir2000

StackOverflow 266968 - CSS.php

Jan 4th, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.19 KB | None | 0 0
  1. /** Debugging **/
  2. pre {
  3.     color: #000;
  4.     background: #f0f0f0;
  5.     padding: 15px;
  6.     -moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  7.     -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  8.     box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  9. }
  10. .cake-debug-output {
  11.     padding: 0;
  12.     position: relative;
  13. }
  14. .cake-debug-output > span {
  15.     position: absolute;
  16.     top: 5px;
  17.     right: 5px;
  18.     background: rgba(255, 255, 255, 0.3);
  19.     -moz-border-radius: 4px;
  20.     -webkit-border-radius: 4px;
  21.     border-radius: 4px;
  22.     padding: 5px 6px;
  23.     color: #000;
  24.     display: block;
  25.     float: left;
  26.     -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  27.     -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  28.     box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.5);
  29.     text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  30. }
  31. .cake-debug,
  32. .cake-error {
  33.     font-size: 16px;
  34.     line-height: 20px;
  35.     clear: both;
  36. }
  37. .cake-error > a {
  38.     text-shadow: none;
  39. }
  40. .cake-error {
  41.     white-space: normal;
  42. }
  43. .cake-stack-trace {
  44.     background: rgba(255, 255, 255, 0.7);
  45.     color: #333;
  46.     margin: 10px 0 5px 0;
  47.     padding: 10px 10px 0 10px;
  48.     font-size: 120%;
  49.     line-height: 140%;
  50.     overflow: auto;
  51.     position: relative;
  52.     -moz-border-radius: 4px;
  53.     -webkit-border-radius: 4px;
  54.     border-radius: 4px;
  55. }
  56. .cake-stack-trace a {
  57.     text-shadow: none;
  58.     background: rgba(255, 255, 255, 0.7);
  59.     padding: 5px;
  60.     -moz-border-radius: 10px;
  61.     -webkit-border-radius: 10px;
  62.     border-radius: 10px;
  63.     margin: 0px 4px 10px 2px;
  64.     font-family: sans-serif;
  65.     font-size: 14px;
  66.     line-height: 14px;
  67.     display: inline-block;
  68.     text-decoration: none;
  69.     -moz-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  70.     -webkit-box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  71.     box-shadow: inset 0px 1px 0 rgba(0, 0, 0, 0.3);
  72. }
  73. .cake-code-dump pre {
  74.     position: relative;
  75.     overflow: auto;
  76. }
  77. .cake-context {
  78.     margin-bottom: 10px;
  79. }
  80. .cake-stack-trace pre {
  81.     color: #000;
  82.     background-color: #F0F0F0;
  83.     margin: 0px 0 10px 0;
  84.     padding: 1em;
  85.     overflow: auto;
  86.     text-shadow: none;
  87. }
  88. .cake-stack-trace li {
  89.     padding: 10px 5px 0px;
  90.     margin: 0 0 4px 0;
  91.     font-family: monospace;
  92.     border: 1px solid #bbb;
  93.     -moz-border-radius: 4px;
  94.     -wekbkit-border-radius: 4px;
  95.     border-radius: 4px;
  96.     background: #dcdcdc;
  97.     background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dcdcdc));
  98.     background-image: -webkit-linear-gradient(top, #fefefe, #dcdcdc);
  99.     background-image: -moz-linear-gradient(top, #fefefe, #dcdcdc);
  100.     background-image: -ms-linear-gradient(top, #fefefe, #dcdcdc);
  101.     background-image: -o-linear-gradient(top, #fefefe, #dcdcdc);
  102.     background-image: linear-gradient(top, #fefefe, #dcdcdc);
  103. }
  104. /* excerpt */
  105. .cake-code-dump pre,
  106. .cake-code-dump pre code {
  107.     clear: both;
  108.     font-size: 12px;
  109.     line-height: 15px;
  110.     margin: 4px 2px;
  111.     padding: 4px;
  112.     overflow: auto;
  113. }
  114. .cake-code-dump .code-highlight {
  115.     display: block;
  116.     background-color: rgba(255, 255, 0, 0.5);
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement