Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
| /* | |
| # Copyright 2025 Google LLC | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| */ | |
| .pageContainer { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| gap: 24px; | |
| transform: scale(0.8); | |
| transform-origin: center; | |
| } | |
| .topNav { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| flex-shrink: 0; | |
| width: 1550px; | |
| } | |
| .contentBox { | |
| width: 1550px; | |
| height: 772px; /* Adjusted height */ | |
| background: white; | |
| border-radius: 28px; | |
| border: 2px #E9E9E9 solid; | |
| padding: 24px; | |
| box-sizing: border-box; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| .loadingContainer { | |
| display: flex; | |
| flex-direction: column; | |
| justify-content: center; | |
| align-items: center; | |
| height: 100%; | |
| font-family: var(--font-family-display); | |
| } | |
| .backButton, .detailsButton { | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| gap: 8px; | |
| padding: 6px 16px; | |
| border-radius: 100px; | |
| font-family: var(--font-family-text); | |
| font-size: var(--font-size-md); | |
| font-weight: var(--font-weight-medium); | |
| cursor: pointer; | |
| transition: background-color 0.2s; | |
| height: 40px; | |
| } | |
| .backButton { | |
| background: none; | |
| border: 1px solid #C4C7C5; | |
| color: #444746; | |
| padding: 0 16px 0 12px; | |
| } | |
| .backButton:hover { | |
| background-color: #f5f5f5; | |
| } | |
| .detailsButton { | |
| background: #C2E7FF; | |
| border: none; | |
| color: #004A77; | |
| } | |
| .detailsButton:hover { | |
| background-color: #a9d8f7; | |
| } | |
| .detailsIcon { | |
| width: 20px; | |
| height: 20px; | |
| } | |
| .mainLayout { | |
| display: flex; | |
| flex: 1; | |
| gap: 20px; | |
| overflow: hidden; | |
| } | |
| .leftPanel { | |
| flex: 1; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .caseImage { | |
| width: 100%; | |
| max-width: 755px; | |
| height: auto; | |
| object-fit: contain; | |
| border-radius: 8px; | |
| } | |
| .rightPanel { | |
| flex: 1; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 16px; | |
| } | |
| .summaryContentWrapper { | |
| flex-grow: 1; | |
| overflow-y: auto; | |
| padding: 0 20px; | |
| } | |
| .mainTitle { | |
| font-family: var(--font-family-display); | |
| font-size: var(--font-size-xxl); | |
| font-weight: var(--font-weight-regular); | |
| color: #000; | |
| margin-bottom: 24px; | |
| } | |
| .summarySection { | |
| margin-bottom: 24px; | |
| } | |
| .sectionTitle { | |
| font-family: var(--font-family-text); | |
| font-size: var(--font-size-md); | |
| font-weight: var(--font-weight-medium); | |
| color: #000; | |
| margin: 0 0 4px 0; | |
| } | |
| .sectionText { | |
| font-family: var(--font-family-text); | |
| font-size: var(--font-size-md); | |
| font-weight: var(--font-weight-regular); | |
| color: #3c4043; | |
| line-height: 1.5; | |
| margin: 0; | |
| } | |
| .sectionText a { | |
| color: #3c4043; | |
| text-decoration: underline; | |
| } | |
| .rationaleContainer { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 16px; | |
| } | |
| .rationaleItem { | |
| background-color: #f8f9fa; | |
| border-radius: 8px; | |
| padding: 12px; | |
| border-left: 4px solid #0B57D0; | |
| } | |
| .rationaleItem.correct { | |
| border-left-color: #34A853; | |
| } | |
| .rationaleItem.incorrect { | |
| border-left-color: #EA4335; | |
| } | |
| .rationaleQuestion, .rationaleOutcome { | |
| font-family: var(--font-family-text); | |
| font-size: var(--font-size-md); | |
| margin: 0; | |
| line-height: 1.5; | |
| } | |
| .rationaleQuestion { | |
| color: #202124; | |
| margin-bottom: 4px; | |
| } | |
| .rationaleOutcome { | |
| color: #5f6368; | |
| } | |
| .disclaimerBox { | |
| margin-top: auto; | |
| background: #FEF7E0; | |
| border-radius: 8px; | |
| padding: 16px; | |
| display: flex; | |
| align-items: center; | |
| gap: 12px; | |
| flex-shrink: 0; | |
| } | |
| .disclaimerIcon { | |
| width: 24px; | |
| height: 24px; | |
| color: #444746; | |
| flex-shrink: 0; | |
| } | |
| .disclaimerText { | |
| font-family: var(--font-family-display); | |
| font-size: var(--font-size-sm); | |
| line-height: 1.5; | |
| color: #000; | |
| } | |