index.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-Landing {
  6. outline: none;
  7. position: absolute;
  8. top: 0px;
  9. left: 0px;
  10. margin: 0;
  11. padding: 0;
  12. overflow: auto;
  13. }
  14. .jp-Landing-wrapper {
  15. display: flex;
  16. flex-direction: column;
  17. align-items: center;
  18. justify-content: center;
  19. margin: 20px 0;
  20. width: 100%;
  21. }
  22. .jp-Landing-dialog {
  23. padding-bottom: 12px;
  24. font-size: var(--jp-ui-font-size1);
  25. color: var(--jp-ui-font-color1);
  26. background: var(--jp-layout-color1);
  27. margin-left: auto;
  28. margin-right: auto;
  29. text-align: center;
  30. display: flex;
  31. align-items: center;
  32. justify-content: center;
  33. flex-direction: column;
  34. box-shadow: 0 2px 7px 1px #BDBDBD;
  35. }
  36. .jp-Landing-logo {
  37. flex: 0 0 50px;
  38. margin-left: auto;
  39. margin-right: auto;
  40. width: 100%;
  41. background-color: var(--jp-layout-color1);
  42. background-size: 232px 50px;
  43. background-repeat: no-repeat;
  44. background-position: center;
  45. margin-top: 20px;
  46. }
  47. .jp-Landing-subtitle {
  48. background-color: var(--jp-layout-color1);
  49. font-size: var(--jp-ui-font-size2);
  50. width: 100%;
  51. margin-top: 4px;
  52. font-weight: 300;
  53. }
  54. .jp-Landing-header {
  55. padding-top: 16px;
  56. padding-bottom: 4px;
  57. }
  58. .jp-Landing-body {
  59. display: flex;
  60. flex-direction: row;
  61. padding-left: 20px;
  62. padding-right: 20px;
  63. }
  64. .jp-Landing-column {
  65. padding-left: 20px;
  66. padding-right: 20px;
  67. display: flex;
  68. flex-direction: column;
  69. }
  70. .jp-Landing-image {
  71. flex: 0 0 auto;
  72. min-height: 72px;
  73. min-width: 56px;
  74. max-width: 56px;
  75. background-size: 56px 72px;
  76. background-repeat: no-repeat;
  77. }
  78. .jp-Landing-image:hover {
  79. cursor: pointer;
  80. }
  81. .jp-Landing-text {
  82. flex: 0 0 auto;
  83. padding-top: 8px;
  84. }
  85. .jp-Landing-tour {
  86. margin-top: 14px;
  87. height: 14px;
  88. width: 100%;
  89. cursor: pointer;
  90. padding-bottom: 14px;
  91. border-bottom: var(--jp-border-width) solid var(--jp-border-color1);
  92. background-position: top center;
  93. background-repeat: no-repeat;
  94. }
  95. .jp-Landing-folder {
  96. margin-right: 0;
  97. display: inline-block;
  98. background-origin: content-box;
  99. background-repeat: no-repeat;
  100. clear: none;
  101. height: 1em;
  102. width: 1em;
  103. line-height: 1em;
  104. }
  105. .jp-Landing-folder:empty:before {
  106. content: "\00a0";
  107. }
  108. .jp-Landing-path {
  109. padding-left: 8px;
  110. color: var(--jp-ui-font-color2);
  111. }
  112. .jp-Landing-cwd {
  113. float: left;
  114. padding-top: 24px;
  115. padding-left: 14px;
  116. margin-right: auto;
  117. }