index.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 > iframe {
  12. border: none;
  13. }
  14. .jp-About-body {
  15. display: flex;
  16. font-size: var(--jp-ui-font-size1);
  17. color: var(--jp-ui-font-color1);
  18. text-align: left;
  19. flex-direction: column;
  20. width: 100%;
  21. min-width: 360px;
  22. overflow: visible;
  23. }
  24. .jp-Dialog .jp-Dialog-content div.jp-About-header-wordmark {
  25. flex: 0 0 auto;
  26. height: 44px;
  27. width: auto;
  28. background-image: var(--jp-about-header-wordmark);
  29. background-size: 196px 50px;
  30. background-repeat: no-repeat;
  31. padding-bottom: 0px;
  32. }
  33. .jp-About-version-info {
  34. color: var(--jp-ui-font-color1);
  35. /* Dialog-header sets the font size to 3, we reset to 1 */
  36. font-size: var(--jp-ui-font-size1);
  37. width: 200px;
  38. font-weight: 400;
  39. letter-spacing: 0.4px;
  40. text-align: left;
  41. padding-top: 8px;
  42. line-height: 1.12;
  43. }
  44. .jp-Dialog
  45. .jp-Dialog-content
  46. .jp-Dialog-footer
  47. .jp-Dialog-button.jp-About-button {
  48. margin-right: 0px;
  49. }
  50. .jp-About-version {
  51. display: block;
  52. }
  53. .jp-About-version {
  54. padding-top: 8px;
  55. }
  56. .jp-About-externalLinks {
  57. display: flex;
  58. flex-direction: column;
  59. justify-content: flex-start;
  60. align-items: flex-start;
  61. padding-top: 12px;
  62. }
  63. .jp-About-externalLinks .jp-Button-flat {
  64. color: #f37726;
  65. }
  66. .jp-About-copyright {
  67. padding-top: 25px;
  68. }
  69. .jp-About-header {
  70. display: flex;
  71. flex-direction: row;
  72. align-items: center;
  73. }
  74. .jp-About-body pre {
  75. white-space: pre-wrap;
  76. }
  77. .jp-About-header-info {
  78. display: flex;
  79. flex-direction: column;
  80. margin-left: 16px;
  81. }
  82. .jp-About-header-logo {
  83. height: 94px;
  84. width: 77px;
  85. background-image: var(--jp-about-header-logo);
  86. background-repeat: no-repeat;
  87. background-size: 58px auto;
  88. background-position: center;
  89. }