index.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-LauncherWidget {
  6. background: var(--jp-layout-color1);
  7. display: flex;
  8. flex-direction: column;
  9. flex-wrap: wrap;
  10. align-items: center;
  11. margin: 0;
  12. padding: 0;
  13. overflow: auto;
  14. outline: none;
  15. }
  16. .jp-LauncherWidget-body {
  17. padding-bottom: 12px;
  18. font-size: var(--jp-ui-font-size1);
  19. color: var(--jp-ui-font-color1);
  20. margin-left: auto;
  21. margin-right: auto;
  22. text-align: center;
  23. display: flex;
  24. align-items: center;
  25. flex-direction: column;
  26. flex-wrap: wrap;
  27. }
  28. .jp-LauncherWidget-logo {
  29. flex: 0 0 50px;
  30. margin-left: auto;
  31. margin-right: auto;
  32. width: 100%;
  33. background-color: var(--jp-layout-color1);
  34. background-size: 232px 50px;
  35. background-repeat: no-repeat;
  36. background-position: center;
  37. margin-top: 20px;
  38. }
  39. .jp-LauncherWidget-subtitle {
  40. background-color: var(--jp-layout-color1);
  41. font-size: var(--jp-ui-font-size2);
  42. width: 100%;
  43. margin-top: 4px;
  44. font-weight: 300;
  45. }
  46. .jp-LauncherWidget-header {
  47. padding-top: 16px;
  48. padding-bottom: 4px;
  49. }
  50. .jp-LauncherWidget-body {
  51. width: 100%;
  52. display: flex;
  53. flex-wrap: wrap;
  54. flex-direction: row;
  55. margin-top: 8px;
  56. }
  57. .jp-LauncherWidget-item {
  58. width: 100px;
  59. }
  60. .jp-LauncherWidget-image {
  61. flex: 0 0 auto;
  62. margin: 0 auto;
  63. min-height: 72px;
  64. min-width: 56px;
  65. max-width: 56px;
  66. background-size: 56px 72px;
  67. background-repeat: no-repeat;
  68. cursor: pointer;
  69. }
  70. .jp-LauncherWidget-text {
  71. flex: 0 0 auto;
  72. text-overflow: ellipsis;
  73. }
  74. .jp-LauncherWidget-tour {
  75. margin-top: 14px;
  76. height: 14px;
  77. width: 100%;
  78. cursor: pointer;
  79. padding-bottom: 14px;
  80. border-bottom: var(--jp-border-width) solid var(--jp-border-color1);
  81. background-position: top center;
  82. background-repeat: no-repeat;
  83. }