1
0

jquery.json-editor.css 907 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .json-editor {
  2. background-color: #FFF;
  3. position: relative; }
  4. .json-editor textarea {
  5. width: 100%;
  6. font-family: monospace; }
  7. .json-editor .builder {
  8. background-color: white;
  9. overflow: auto;
  10. font-size: 0.9em; }
  11. .json-editor .builder .key {
  12. font-weight: bold; }
  13. .json-editor .builder .key .edit_field {
  14. width: 150px; }
  15. .json-editor .builder .val .edit_field {
  16. width: 200px; }
  17. .json-editor blockquote {
  18. margin: 0;
  19. padding: 0;
  20. clear: both;
  21. padding-left: 7px; }
  22. .json-editor div {
  23. background-color: #cfc;
  24. margin: 1px;
  25. padding: 2px; }
  26. .json-editor .val {
  27. font-style: italic; }
  28. .json-editor .key a, .json-editor .val a {
  29. color: black;
  30. text-decoration: none; }
  31. .json-editor .icon {
  32. display: block;
  33. float: right;
  34. text-decoration: none;
  35. padding-left: 5px;
  36. border: 0;
  37. color: blue; }