12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- body {
- background: white;
- margin: 0;
- padding: 0;
- }
- #main {
- position: absolute;
- top: 4px;
- left: 4px;
- right: 4px;
- bottom: 4px;
- border-bottom: 1px solid #e0e0e0;
- }
- .jp-Toolbar {
- min-height: 27px;
- }
- .jp-CodeCell {
- display: flex;
- flex-direction: column;
- }
- .jp-Cell-inputWrapper {
- flex: 0 0 auto;
- }
- .jp-Cell-outputWrapper {
- flex: 1 1 auto;
- }
- .jp-OutputArea {
- overflow: visible;
- }
|