index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. outline: none;
  9. }
  10. .jp-Help::before {
  11. content: '';
  12. display: block;
  13. height: var(--jp-toolbar-micro-height);
  14. background: var(--jp-toolbar-background);
  15. border-bottom: 1px solid var(--jp-toolbar-border-color);
  16. box-shadow: var(--jp-toolbar-box-shadow);
  17. z-index: 1;
  18. }
  19. .jp-Help > iframe {
  20. border: none;
  21. }
  22. .jp-About-body {
  23. display: flex;
  24. font-family: var(--jp-ui-font-family);
  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(--md-grey-600);
  44. font-size: var(--jp-ui-font-size2);
  45. width: 200px;
  46. font-weight: 400;
  47. letter-spacing: .4px;
  48. text-align: left;
  49. padding-top: 8px;
  50. line-height: 1.12;
  51. }
  52. .jp-Dialog .jp-Dialog-content .jp-Dialog-footer .jp-Dialog-button.jp-About-button {
  53. margin-right: 0px;
  54. }
  55. .jp-About-release, .jp-About-version {
  56. display: block;
  57. color: var(--jp-ui-font-color0);
  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: -48px;
  76. }
  77. .jp-About-header {
  78. display: flex;
  79. flex-direction: row;
  80. align-items: center;
  81. }
  82. .jp-About-header-info {
  83. display: flex;
  84. flex-direction: column;
  85. margin-left: 16px;
  86. }
  87. .jp-About-header-logo {
  88. height: 94px;
  89. width: 77px;
  90. background-image: var(--jp-about-header-logo);
  91. background-repeat: no-repeat;
  92. background-size: 58px auto;
  93. background-position: center;
  94. }