123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*-----------------------------------------------------------------------------
- | 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;
- overflow-y: auto;
- }
- #faq-header {
- width: 412px;
- display: flex;
- margin: 40px auto 40px auto;
- text-align: center;
- }
- .jp-FAQ-content {
- margin: 0 auto 70px auto;
- display: block;
- width: 94%;
- max-width: 700px;
- }
- .jp-FAQ-h1 {
- font-size: 26px;
- font-weight: 400;
- color: #313940;
- margin: 10px 0 0 20px;
- }
- .jp-FAQ-h2 {
- font-size: 14px;
- font-weight: 400;
- color: var(--md-grey-500);
- margin: 28px 0 0 0;
- margin-bottom: 8px;
- }
- .jp-FAQ-ul {
- margin: 0 0 0 0;
- padding: 0;
- }
- .jp-FAQ-question:target {
- animation: highlight 0.9s cubic-bezier(0.15, 0.08, 0.54, 0.85);
- }
- @keyframes highlight {
- 0% {background-color: transparent;}
- 50% {background-color: var(--md-blue-100);}
- 100% {background-color: transparent;}
- }
- .jp-FAQ-question {
- color: var(--jp-ui-font-color0);
- list-style-type: none;
- padding: 4px 16px;
- margin-left: -16px;
- display: inline-block;
- }
- .jp-FAQ-question > a {
- font-size: 20px;
- color: var(--jp-ui-font-color0);
- font-weight: 400;
- line-height: 150%;
- list-style-type: none;
- margin: 28px 0 0 0;
- cursor: pointer;
- text-decoration: none;
- }
- .jp-FAQ-question > a:hover {
- color: var(--md-blue-500);
- }
- .jp-FAQ-answer{
- font-size: 15px;
- font-weight: 200;
- color: var(--md-grey-500);
- line-height: 160%;
- border-left: 2px solid var(--md-grey-500);
- padding-left: 25px;
- list-style-type: none;
- margin: 15px 0 15px 20px;
- }
- .jp-FAQ-toc {
- display: block;
- }
- .jp-FAQ-toc:focus{
- color: var(--md-blue-500);
- }
- li > jp-FAQ-answer {
- color: var(--md-grey-500);
- text-decoration: none;
- }
- .jp-FAQ-title {
- color: var(--jp-ui-font-color0);
- display: block;
- }
- .jp-FAQ-a {
- text-decoration: none;
- cursor: pointer;
- color: var(--jp-brand-color1);
- }
- .jp-QuestionMarkIcon.jp-FAQ-QuestionMark {
- height: 49px;
- width: 49px;
- }
|