index.css 2.3 KB

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