123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-LauncherWidget {
- background: var(--jp-layout-color1);
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- align-items: center;
- margin: 0;
- padding: 0;
- }
- .jp-LauncherWidget-dialog {
- padding-bottom: 12px;
- font-size: var(--jp-ui-font-size1);
- color: var(--jp-ui-font-color1);
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- display: flex;
- align-items: center;
- flex-direction: column;
- flex-wrap: wrap;
- }
- .jp-LauncherWidget-logo {
- flex: 0 0 50px;
- margin-left: auto;
- margin-right: auto;
- width: 100%;
- background-color: var(--jp-layout-color1);
- background-size: 232px 50px;
- background-repeat: no-repeat;
- background-position: center;
- margin-top: 20px;
- }
- .jp-LauncherWidget-subtitle {
- background-color: var(--jp-layout-color1);
- font-size: var(--jp-ui-font-size2);
- width: 100%;
- margin-top: 4px;
- font-weight: 300;
- }
- .jp-LauncherWidget-header {
- padding-top: 16px;
- padding-bottom: 4px;
- }
- .jp-LauncherWidget-body {
- width: 100%;
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- }
- .jp-LauncherWidget-item {
- width: 100px;
- height: 100px;
- display: flex;
- flex-direction: column;
- }
- .jp-LauncherWidget-image {
- flex: 0 0 auto;
- margin: 0 auto;
- min-height: 72px;
- min-width: 56px;
- max-width: 56px;
- background-size: 56px 72px;
- background-repeat: no-repeat;
- cursor: pointer;
- }
- .jp-LauncherWidget-text {
- flex: 0 0 auto;
- padding-top: 8px;
- }
- .jp-LauncherWidget-tour {
- margin-top: 14px;
- height: 14px;
- width: 100%;
- cursor: pointer;
- padding-bottom: 14px;
- border-bottom: var(--jp-border-width) solid var(--jp-border-color1);
- background-position: top center;
- background-repeat: no-repeat;
- }
- .jp-LauncherWidget-folder {
- margin-right: 0;
- display: inline-block;
- background-origin: content-box;
- background-repeat: no-repeat;
- clear: none;
- padding-left: 12px;
- height: 1em;
- width: 1em;
- line-height: 1em;
- }
- .jp-LauncherWidget-folder:empty:before {
- content: "\00a0";
- }
- .jp-LauncherWidget-path {
- padding-left: 8px;
- color: var(--jp-ui-font-color2);
- }
- .jp-LauncherWidget-cwd {
- float: left;
- padding-top: 14px;
- margin-right: auto;
- }
|