index.css 845 B

12345678910111213141516171819202122232425262728293031
  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-content-font-family);
  7. line-height: var(--jp-content-line-height);
  8. font-size: var(--jp-content-font-size1);
  9. color: var(--jp-content-font-color1);
  10. outline: none;
  11. display: flex;
  12. flex-direction: column;
  13. min-width: 240px;
  14. min-height: 120px;
  15. }
  16. .jp-FAQ-toolbar {
  17. min-height: var(--jp-toolbar-micro-height);
  18. border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
  19. box-shadow: var(--jp-toolbar-box-shadow);
  20. background-color: var(--jp-layout-color1);
  21. }
  22. .jp-FAQ-content {
  23. overflow-y: auto;
  24. padding: 32px;
  25. }