12345678910111213141516171819202122232425262728293031 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-FAQ {
- font-family: var(--jp-content-font-family);
- line-height: var(--jp-content-line-height);
- font-size: var(--jp-content-font-size1);
- color: var(--jp-content-font-color1);
- outline: none;
- display: flex;
- flex-direction: column;
- min-width: 240px;
- min-height: 120px;
- }
- .jp-FAQ-toolbar {
- min-height: var(--jp-toolbar-micro-height);
- border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
- box-shadow: var(--jp-toolbar-box-shadow);
- background-color: var(--jp-layout-color1);
- }
- .jp-FAQ-content {
- overflow-y: auto;
- padding: 32px;
- }
|