index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-Launcher-header {
  6. margin: auto;
  7. font-size: var(--jp-ui-font-size1);
  8. color: var(--jp-ui-font-color1);
  9. background: var(--jp-layout-color1);
  10. text-align: center;
  11. display: flex;
  12. align-items: center;
  13. justify-content: center;
  14. flex-direction: column;
  15. padding-top: 14px;
  16. padding-bottom: 14px;
  17. width: 100%;
  18. }
  19. .jp-Launcher-logo {
  20. flex: 0 0 50px;
  21. margin-left: auto;
  22. margin-right: auto;
  23. width: 232px;
  24. background-color: var(--jp-layout-color1);
  25. background-size: 232px 50px;
  26. background-repeat: no-repeat;
  27. background-position: center;
  28. }
  29. .jp-Launcher-subtitle {
  30. color: var(--md-grey-600);
  31. background-color: var(--jp-layout-color1);
  32. font-size: var(--jp-ui-font-size2);
  33. width: 200px;
  34. font-weight: 400;
  35. letter-spacing: .4px;
  36. text-align: left;
  37. padding-left: 68px;
  38. }
  39. .jp-Launcher-body-header {
  40. padding-top: 16px;
  41. padding-bottom: 4px;
  42. font-size: var(--jp-ui-font-size2);
  43. color: var(--md-grey-600);
  44. letter-spacing: .4px;
  45. }