index.css 463 B

12345678910111213141516171819
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-ImageWidget {
  6. overflow: auto;
  7. padding: 0 4px 4px 4px;
  8. }
  9. .jp-ImageWidget > div {
  10. transform-origin: top left;
  11. }
  12. .jp-ImageWidget img {
  13. max-width: 100%;
  14. max-height: 100%;
  15. margin: auto;
  16. }