index.css 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. min-width: 240px;
  11. min-height: 120px;
  12. }
  13. .jp-FAQ-toolbar {
  14. min-height: var(--jp-toolbar-micro-height);
  15. border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
  16. box-shadow: var(--jp-toolbar-box-shadow);
  17. background-color: var(--jp-layout-color1);
  18. }
  19. .jp-FAQ-content {
  20. overflow-y: auto;
  21. padding: 16px 32px;
  22. }
  23. .jp-FAQ-content h2 {
  24. font-size: 20px;
  25. font-weight: 500;
  26. }
  27. .jp-FAQ-content h3 {
  28. font-weight: 500;
  29. }
  30. .jp-FAQ-content a {
  31. color: var(--jp-brand-color1);
  32. }