Advertisement
TheMolkaPL

JSONView

Apr 30th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.82 KB | None | 0 0
  1. body {
  2.   white-space: pre;
  3.   font-family: monospace;
  4.   color: #fff; /* custom */
  5.   background-color: #000; /* custom */
  6. }
  7.  
  8. .property {
  9.   font-weight: bold;
  10. }
  11.  
  12. .type-null {
  13.   color: gray;
  14. }
  15.  
  16. .type-boolean {
  17.   color: firebrick;
  18. }
  19.  
  20. .type-number {
  21.   color: blue;
  22. }
  23.  
  24. .type-string {
  25.   color: green;
  26. }
  27.  
  28. .callback-function {
  29.   color: gray;
  30. }
  31.  
  32. .collapser:after {
  33.   content: "-";
  34. }
  35.  
  36. .collapsed > .collapser:after {
  37.   content: "+";
  38. }
  39.  
  40. .ellipsis:after {
  41.   content: " … ";
  42. }
  43.  
  44. .collapsible {
  45.   margin-left: 2em;
  46. }
  47.  
  48. .hoverable {
  49.   padding-top: 1px;
  50.   padding-bottom: 1px;
  51.   padding-left: 2px;
  52.   padding-right: 2px;
  53.   border-radius: 2px;
  54. }
  55.  
  56. .hovered {
  57.   background-color: rgba(235, 238, 249, 1);
  58.   background-color: #440 /* custom */
  59. }
  60.  
  61. .collapser {
  62.   padding-right: 6px;
  63.   padding-left: 6px;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement