index.css 807 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import url("../static/vendor/codemirror/codemirror.css");
  2. @import url("../static/css/bootstrap.min.css");
  3. body {
  4. background-color: #fff;
  5. }
  6. .wp-json {
  7. width:auto;
  8. }
  9. .wp-json .mod-json {
  10. position: absolute;
  11. top: 60px;
  12. bottom: 0;
  13. right:20px;
  14. left:20px;
  15. }
  16. .wp-json .mod-json .panel-txt {
  17. position: absolute;
  18. width: 500px;
  19. top: 15px;
  20. bottom: 0;
  21. }
  22. .wp-json .panel-body {
  23. padding:15px 0;
  24. }
  25. .box-wrapper-left {
  26. height: 100%;
  27. padding:0 5px 0 0;
  28. }
  29. .box-wrapper-right {
  30. height: 100%;
  31. padding:0 0 0 5px;
  32. }
  33. #jsonSourceLeft, #jsonSourceRight, .CodeMirror {
  34. height: calc(100%);
  35. font-size: 10px;
  36. }
  37. .x-error {
  38. float: right;
  39. color: #0c0;
  40. font-size: 14px;
  41. }
  42. .x-error.x-hlt {
  43. color:#f00;
  44. }