titlepanel.css 718 B

12345678910111213141516171819202122232425262728
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. :root {
  6. --jp-private-title-panel-height: 28px;
  7. }
  8. #jp-title-panel {
  9. min-height: var(--jp-private-title-panel-height);
  10. width: 100%;
  11. display: flex;
  12. background: var(--jp-layout-color1);
  13. }
  14. #jp-title-panel-title {
  15. margin-left: 8px;
  16. }
  17. #jp-title-panel-title h1 {
  18. font-size: 18px;
  19. color: var(--jp-ui-font-color0);
  20. margin: 0;
  21. font-weight: normal;
  22. font-family: var(--jp-ui-font-family);
  23. line-height: var(--jp-private-title-panel-height);
  24. }