base.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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-About-version-info {
  25. color: var(--jp-ui-font-color1);
  26. /* Dialog-header sets the font size to 3, we reset to 1 */
  27. font-size: var(--jp-ui-font-size1);
  28. width: 200px;
  29. font-weight: 400;
  30. letter-spacing: 0.4px;
  31. text-align: left;
  32. line-height: 1.12;
  33. }
  34. .jp-Dialog
  35. .jp-Dialog-content
  36. .jp-Dialog-footer
  37. .jp-Dialog-button.jp-About-button {
  38. margin-right: 0px;
  39. }
  40. .jp-About-version {
  41. display: block;
  42. }
  43. .jp-About-version {
  44. padding-top: 8px;
  45. }
  46. .jp-About-externalLinks {
  47. display: flex;
  48. flex-direction: column;
  49. justify-content: flex-start;
  50. align-items: flex-start;
  51. padding-top: 12px;
  52. }
  53. .jp-About-externalLinks .jp-Button-flat {
  54. color: #f37726;
  55. }
  56. .jp-About-copyright {
  57. padding-top: 25px;
  58. }
  59. .jp-About-header {
  60. display: flex;
  61. flex-direction: row;
  62. align-items: center;
  63. }
  64. .jp-About-body pre {
  65. white-space: pre-wrap;
  66. }
  67. .jp-About-header-info {
  68. display: flex;
  69. flex-direction: column;
  70. margin-left: 16px;
  71. }