12345678910111213141516171819202122232425262728 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- :root {
- --jp-private-title-panel-height: 28px;
- }
- #jp-title-panel {
- min-height: var(--jp-private-title-panel-height);
- width: 100%;
- display: flex;
- background: var(--jp-layout-color1);
- }
- #jp-title-panel-title {
- margin-left: 8px;
- }
- #jp-title-panel-title h1 {
- font-size: 18px;
- color: var(--jp-ui-font-color0);
- margin: 0;
- font-weight: normal;
- font-family: var(--jp-ui-font-family);
- line-height: var(--jp-private-title-panel-height);
- }
|