123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- .jp-FAQ {
- font-family: var(--jp-ui-font-family);
- outline: none;
- display: flex;
- flex-direction: column;
- }
- .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: 16px 32px;
- }
- .jp-FAQ-content h2 {
- font-size: 20px;
- font-weight: 500;
- }
- .jp-FAQ-content h3 {
- font-weight: 500;
- }
- .jp-FAQ-content a {
- color: var(--jp-brand-color1);
- }
|