123456789101112131415161718192021222324 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- @import url('~xterm/src/xterm.css');
- .jp-Terminal {
- min-width: 240px;
- min-height: 120px;
- background: black;
- }
- .jp-Terminal.jp-mod-light {
- background: white;
- }
- .jp-Terminal-body {
- padding: 8px;
- }
|