base.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. /*-----------------------------------------------------------------------------
  6. | Variables
  7. |----------------------------------------------------------------------------*/
  8. :root {
  9. --jp-private-inspector-tab-height: 24px;
  10. --jp-private-inspector-tab-width: 60px;
  11. }
  12. /*-----------------------------------------------------------------------------
  13. | Inspector
  14. |----------------------------------------------------------------------------*/
  15. .jp-Inspector {
  16. outline: none;
  17. min-width: 120px;
  18. min-height: 120px;
  19. }
  20. .jp-Inspector-content {
  21. background: var(--jp-layout-color1);
  22. border: none;
  23. }
  24. .jp-Inspector-content {
  25. padding: 8px;
  26. width: 100%;
  27. height: 100%;
  28. overflow: auto;
  29. }
  30. .jp-Inspector-content pre {
  31. font-size: var(--jp-code-font-size);
  32. line-height: var(--jp-code-line-height);
  33. margin: 0;
  34. white-space: pre-wrap;
  35. }
  36. .jp-Inspector-default-content {
  37. display: flex;
  38. align-items: center;
  39. justify-content: center;
  40. font-size: xx-large;
  41. font-style: italic;
  42. color: darkgray;
  43. }