1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /*-----------------------------------------------------------------------------
- | 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;
- 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: 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);
- }
|