index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-Help {
  6. min-width: 480px;
  7. background: white;
  8. }
  9. .jp-Help::before {
  10. content: '';
  11. display: block;
  12. height: var(--jp-toolbar-micro-height);
  13. background: var(--jp-toolbar-background);
  14. border-bottom: 1px solid var(--jp-toolbar-border-color);
  15. box-shadow: var(--jp-toolbar-box-shadow);
  16. z-index: 1;
  17. }
  18. .jp-Help > iframe {
  19. border: none;
  20. }
  21. .jp-About-body {
  22. display: flex;
  23. font-family: var(--jp-ui-font-family);
  24. font-size: var(--jp-ui-font-size1);
  25. color: var(--jp-ui-font-color1);
  26. text-align: left;
  27. flex-direction: column;
  28. width: 100%;
  29. min-width: 360px;
  30. overflow: visible;
  31. }
  32. .jp-Dialog .jp-Dialog-content div.jp-About-header-wordmark {
  33. flex: 0 0 auto;
  34. height: 44px;
  35. width: auto;
  36. background-image: url(../../theming/style/images/jupyterlab-wordmark.svg);
  37. background-size: 196px 50px;
  38. background-repeat: no-repeat;
  39. padding-bottom: 0px;
  40. }
  41. .jp-About-version-info {
  42. color: var(--md-grey-600);
  43. font-size: var(--jp-ui-font-size2);
  44. width: 200px;
  45. font-weight: 400;
  46. letter-spacing: .4px;
  47. text-align: left;
  48. padding-top: 8px;
  49. line-height: 1.12;
  50. }
  51. .jp-Dialog .jp-Dialog-content .jp-Dialog-footer .jp-Dialog-button.jp-About-button {
  52. margin-right: 0px;
  53. }
  54. .jp-About-release, .jp-About-version {
  55. display: block;
  56. }
  57. .jp-About-version {
  58. padding-top: 8px;
  59. }
  60. .jp-About-externalLinks {
  61. display: flex;
  62. flex-direction: column;
  63. justify-content: flex-start;
  64. align-items: flex-start;
  65. padding-top: 12px;
  66. margin-bottom: -15px;
  67. }
  68. .jp-About-externalLinks .jp-Button-flat {
  69. color: #F37726;
  70. }
  71. .jp-About-copyright {
  72. position: relative;
  73. bottom: -48px;
  74. }
  75. .jp-About-header {
  76. display: flex;
  77. flex-direction: row;
  78. align-items: center;
  79. }
  80. .jp-About-header-info {
  81. display: flex;
  82. flex-direction: column;
  83. margin-left: 16px;
  84. }
  85. .jp-About-header-logo {
  86. height: 94px;
  87. width: 77px;
  88. background-image: url(../../theming/style/icons/jupyter/jupyter.svg);
  89. background-repeat: no-repeat;
  90. background-size: 58px auto;
  91. background-position: center;
  92. }