| |
| @use 'app-pages'; |
| @use '../base/narrow-ios-form-font-tail' as ios-form-font; |
|
|
| |
| .intro-section { |
| margin-bottom: 15px; |
| |
| p { |
| margin: 8px 0; |
| } |
| } |
|
|
| .intro-brief { |
| font-size: 11pt; |
| } |
|
|
| .intro-brief .intro-token { |
| background-color: rgba(var(--intro-rgb), var(--a, 0)); |
| border-radius: 6px; |
| } |
|
|
| |
| .intro-more { |
| margin-top: 10px; |
| } |
|
|
| |
| .intro-section .intro-more:not([open]) { |
| display: block; |
| width: fit-content; |
| } |
|
|
| |
| .intro-more[open] { |
| display: block; |
| margin-left: 0; |
| border: 1px solid var(--border-color); |
| border-radius: 10px; |
| background: var(--panel-bg); |
| overflow: hidden; |
| } |
|
|
| .intro-more > summary { |
| list-style: none; |
| cursor: pointer; |
| user-select: none; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 10px; |
| padding: 10px 12px; |
| font-weight: 500; |
| border-radius: 10px; |
| background: transparent; |
| color: var(--text-muted); |
| transition: background-color 0.15s ease, color 0.15s ease; |
|
|
| &::-webkit-details-marker { |
| display: none; |
| } |
|
|
| &::marker { |
| content: ""; |
| } |
|
|
| &::after { |
| content: "›"; |
| font-size: 18px; |
| line-height: 1; |
| opacity: 0.45; |
| transition: transform 0.15s ease, opacity 0.15s ease; |
| } |
|
|
| &:hover { |
| background-color: var(--hover-bg-color); |
| color: var(--text-color); |
| } |
| } |
|
|
| .intro-more:not([open]) > summary { |
| display: inline-flex; |
| width: fit-content; |
| padding: 4px 10px; |
| gap: 6px; |
| font-size: 9pt; |
| border: 1px solid var(--border-color); |
| border-radius: 10px; |
|
|
| &::after { |
| font-size: 16px; |
| } |
| } |
|
|
| .intro-more[open] > summary { |
| border-bottom-left-radius: 0; |
| border-bottom-right-radius: 0; |
| background: var(--button-bg); |
| color: var(--text-color); |
|
|
| &::after { |
| transform: rotate(90deg); |
| opacity: 0.85; |
| } |
| } |
|
|
| |
| .intro-more > summary .intro-summary-when-open { |
| display: none; |
| } |
|
|
| .intro-more[open] > summary .intro-summary-when-closed { |
| display: none; |
| } |
|
|
| .intro-more[open] > summary .intro-summary-when-open { |
| display: inline; |
| font-size: 90%; |
| font-weight: 400; |
| color: var(--text-muted); |
| } |
|
|
| .intro-more .intro-block { |
| padding: 10px 12px; |
|
|
| h4 { |
| margin: 0 0 6px 0; |
| font-size: 11pt; |
| } |
|
|
| pre { |
| white-space: pre-wrap; |
| word-wrap: break-word; |
| overflow-wrap: break-word; |
| overflow-x: auto; |
| max-width: 100%; |
| margin: 8px 0; |
| } |
| } |
|
|
| .intro-more .intro-block + .intro-block { |
| border-top: 1px dashed var(--border-color); |
| } |
| |
| .analyze-progress { |
| display: none; |
| font-size: 9pt; |
| color: var(--text-muted, #666); |
| white-space: nowrap; |
| line-height: 1.2; |
| position: absolute; |
| left: 100%; |
| margin-left: 30px; |
| z-index: 10; |
| |
| |
| :root[data-theme="dark"] & { |
| color: var(--text-muted, #999); |
| } |
| } |
| |
| .stats-container { |
| text-align: center; |
| } |
|
|
| |
| .histogram-item { |
| display: block; |
| text-align: center; |
| margin-bottom: 20px; |
| } |
| #all_result{ |
| display: flex; |
| flex-flow: column; |
| width: 100%; |
| max-width: 100%; |
| box-sizing: border-box; |
| opacity: 0; |
| transition-duration: 0.5s; |
| margin-top: 20px; |
| } |
|
|
| |
| #stats { |
| width: 100%; |
| max-width: 100%; |
| box-sizing: border-box; |
| padding: 0; |
| |
| svg { |
| max-width: 100%; |
| box-sizing: border-box; |
| } |
| } |
|
|
| |
| @include ios-form-font.apply; |
|
|