index.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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-family: var(--jp-ui-font-family);
  26. font-size: var(--jp-ui-font-size1);
  27. color: var(--jp-ui-font-color1);
  28. text-align: left;
  29. flex-direction: column;
  30. width: 100%;
  31. min-width: 360px;
  32. overflow: visible;
  33. }
  34. .jp-Dialog .jp-Dialog-content div.jp-About-header-wordmark {
  35. flex: 0 0 auto;
  36. height: 44px;
  37. width: auto;
  38. background-image: var(--jp-about-header-wordmark);
  39. background-size: 196px 50px;
  40. background-repeat: no-repeat;
  41. padding-bottom: 0px;
  42. }
  43. .jp-About-version-info {
  44. color: var(--md-grey-600);
  45. font-size: var(--jp-ui-font-size2);
  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. color: var(--jp-ui-font-color0);
  59. }
  60. .jp-About-version {
  61. padding-top: 8px;
  62. }
  63. .jp-About-externalLinks {
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: flex-start;
  67. align-items: flex-start;
  68. padding-top: 12px;
  69. margin-bottom: -15px;
  70. }
  71. .jp-About-externalLinks .jp-Button-flat {
  72. color: #F37726;
  73. }
  74. .jp-About-copyright {
  75. position: relative;
  76. bottom: -48px;
  77. }
  78. .jp-About-header {
  79. display: flex;
  80. flex-direction: row;
  81. align-items: center;
  82. }
  83. .jp-About-header-info {
  84. display: flex;
  85. flex-direction: column;
  86. margin-left: 16px;
  87. }
  88. .jp-About-header-logo {
  89. height: 94px;
  90. width: 77px;
  91. background-image: var(--jp-about-header-logo);
  92. background-repeat: no-repeat;
  93. background-size: 58px auto;
  94. background-position: center;
  95. }