base.css 778 B

123456789101112131415161718192021222324252627282930313233
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. |
  4. | Distributed under the terms of the Modified BSD License.
  5. |----------------------------------------------------------------------------*/
  6. #jp-MainLogo {
  7. width: calc(var(--jp-private-sidebar-tab-width) + var(--jp-border-width));
  8. }
  9. .jp-skiplink {
  10. position: absolute;
  11. top: -100em;
  12. }
  13. .jp-skiplink:focus-within {
  14. position: absolute;
  15. z-index: 10000;
  16. top: 0;
  17. left: 46%;
  18. margin: 0 auto;
  19. padding: 1em;
  20. width: 15%;
  21. box-shadow: var(--jp-elevation-z4);
  22. border-radius: 4px;
  23. background: var(--jp-layout-color0);
  24. text-align: center;
  25. }
  26. .jp-skiplink:focus-within a {
  27. text-decoration: underline;
  28. color: var(--jp-content-link-color);
  29. }