index.css 840 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*-----------------------------------------------------------------------------
  2. | Copyright (c) Jupyter Development Team.
  3. | Distributed under the terms of the Modified BSD License.
  4. |----------------------------------------------------------------------------*/
  5. .jp-FAQ {
  6. font-family: var(--jp-ui-font-family);
  7. outline: none;
  8. display: flex;
  9. flex-direction: column;
  10. }
  11. .jp-FAQ-toolbar {
  12. min-height: var(--jp-toolbar-micro-height);
  13. border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
  14. box-shadow: var(--jp-toolbar-box-shadow);
  15. background-color: var(--jp-layout-color1);
  16. }
  17. .jp-FAQ-content {
  18. overflow-y: auto;
  19. padding: 16px 32px;
  20. }
  21. .jp-FAQ-content h2 {
  22. font-size: 20px;
  23. font-weight: 500;
  24. }
  25. .jp-FAQ-content h3 {
  26. font-weight: 500;
  27. }
  28. .jp-FAQ-content a {
  29. color: var(--jp-brand-color1);
  30. }