Advertisement
NokitaKaze

CSS на стандартной странице ошибки ASP.NET

Nov 12th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.39 KB | None | 0 0
  1.             body {
  2.     font-family: 'Segoe UI', Tahoma, Arial, Helvetica, sans-serif;
  3.     font-size: .813em;
  4.     color: #222;
  5.     background-color: #fff;
  6. }
  7.  
  8. h1, h2, h3, h4, h5 {
  9.     /*font-family: 'Segoe UI',Tahoma,Arial,Helvetica,sans-serif;*/
  10.     font-weight: 100;
  11. }
  12.  
  13. h1 {
  14.     color: #44525e;
  15.     margin: 15px 0 15px 0;
  16. }
  17.  
  18. h2 {
  19.     margin: 10px 5px 0 0;
  20. }
  21.  
  22. h3 {
  23.     color: #363636;
  24.     margin: 5px 5px 0 0;
  25. }
  26.  
  27. code {
  28.     font-family: Consolas, "Courier New", courier, monospace;
  29. }
  30.  
  31. body .titleerror {
  32.     padding: 3px 3px 6px 3px;
  33.     display: block;
  34.     font-size: 1.5em;
  35.     font-weight: 100;
  36. }
  37.  
  38. body .location {
  39.     margin: 3px 0 10px 30px;
  40. }
  41.  
  42. #header {
  43.     font-size: 18px;
  44.     padding: 15px 0;
  45.     border-top: 1px #ddd solid;
  46.     border-bottom: 1px #ddd solid;
  47.     margin-bottom: 0;
  48. }
  49.  
  50.     #header li {
  51.         display: inline;
  52.         margin: 5px;
  53.         padding: 5px;
  54.         color: #a0a0a0;
  55.         cursor: pointer;
  56.     }
  57.  
  58.     #header .selected {
  59.         background: #44c5f2;
  60.         color: #fff;
  61.     }
  62.  
  63. #stackpage ul {
  64.     list-style: none;
  65.     padding-left: 0;
  66.     margin: 0;
  67.     /*border-bottom: 1px #ddd solid;*/
  68. }
  69.  
  70. #stackpage .details {
  71.     font-size: 1.2em;
  72.     padding: 3px;
  73.     color: #000;
  74. }
  75.  
  76. #stackpage .stackerror {
  77.     padding: 5px;
  78.     border-bottom: 1px #ddd solid;
  79. }
  80.  
  81.  
  82. #stackpage .frame {
  83.     padding: 0;
  84.     margin: 0 0 0 30px;
  85. }
  86.  
  87.     #stackpage .frame h3 {
  88.         padding: 2px;
  89.         margin: 0;
  90.     }
  91.  
  92. #stackpage .source {
  93.     padding: 0 0 0 30px;
  94. }
  95.  
  96.     #stackpage .source ol li {
  97.         font-family: Consolas, "Courier New", courier, monospace;
  98.         white-space: pre;
  99.         background-color: #fbfbfb;
  100.     }
  101.  
  102. #stackpage .frame .source .highlight li span {
  103.     color: #FF0000;
  104. }
  105.  
  106. #stackpage .source ol.collapsible li {
  107.     color: #888;
  108. }
  109.  
  110.     #stackpage .source ol.collapsible li span {
  111.         color: #606060;
  112.     }
  113.  
  114. .page table {
  115.     border-collapse: separate;
  116.     border-spacing: 0;
  117.     margin: 0 0 20px;
  118. }
  119.  
  120. .page th {
  121.     vertical-align: bottom;
  122.     padding: 10px 5px 5px 5px;
  123.     font-weight: 400;
  124.     color: #a0a0a0;
  125.     text-align: left;
  126. }
  127.  
  128. .page td {
  129.     padding: 3px 10px;
  130. }
  131.  
  132. .page th, .page td {
  133.     border-right: 1px #ddd solid;
  134.     border-bottom: 1px #ddd solid;
  135.     border-left: 1px transparent solid;
  136.     border-top: 1px transparent solid;
  137.     box-sizing: border-box;
  138. }
  139.  
  140.     .page th:last-child, .page td:last-child {
  141.         border-right: 1px transparent solid;
  142.     }
  143.  
  144. .page .length {
  145.     text-align: right;
  146. }
  147.  
  148. a {
  149.     color: #1ba1e2;
  150.     text-decoration: none;
  151. }
  152.  
  153.     a:hover {
  154.         color: #13709e;
  155.         text-decoration: underline;
  156.     }
  157.  
  158. .showRawException {
  159.     cursor: pointer;
  160.     color: #44c5f2;
  161.     background-color: transparent;
  162.     font-size: 1.2em;
  163.     text-align: left;
  164.     text-decoration: none;
  165.     display: inline-block;
  166.     border: 0;
  167.     padding: 0;
  168. }
  169.  
  170. .rawExceptionStackTrace {
  171.     font-size: 1.2em;
  172. }
  173.  
  174. .rawExceptionBlock {
  175.     border-top: 1px #ddd solid;
  176.     border-bottom: 1px #ddd solid;
  177. }
  178.  
  179. .showRawExceptionContainer {
  180.     margin-top: 10px;
  181.     margin-bottom: 10px;
  182. }
  183.  
  184. .expandCollapseButton {
  185.     cursor: pointer;
  186.     float: left;
  187.     height: 16px;
  188.     width: 16px;
  189.     font-size: 10px;
  190.     position: absolute;
  191.     left: 10px;
  192.     background-color: #eee;
  193.     padding: 0;
  194.     border: 0;
  195.     margin: 0;
  196. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement