| // Copyright (C) 2025 The Android Open Source Project |
| // |
| // 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. |
| |
| .pf-ui-main { |
| display: grid; |
| grid-template-areas: |
| "sidebar topbar" |
| "sidebar loading" |
| "sidebar alerts" |
| "sidebar page" |
| "statusbar statusbar"; |
| grid-template-rows: auto auto auto 1fr auto; |
| grid-template-columns: auto 1fr; |
| color: #121212; |
| overflow: hidden; |
| |
| &__loading { |
| grid-area: loading; |
| } |
| |
| &__page-container { |
| grid-area: page; |
| overflow: hidden; |
| } |
| } |
| |
| .pf-perf-stats { |
| --stroke-color: hsl(217, 39%, 94%); |
| position: fixed; |
| bottom: 0; |
| left: 0; |
| width: 600px; |
| color: var(--stroke-color); |
| font-family: var(--monospace-font); |
| padding: 10px 24px; |
| z-index: 100; |
| background-color: rgba(27, 28, 29, 0.9); |
| button { |
| text-decoration: underline; |
| color: hsl(45, 100%, 48%); |
| &:hover { |
| color: hsl(6, 70%, 53%); |
| } |
| } |
| .close-button { |
| position: absolute; |
| right: 20px; |
| top: 10px; |
| width: 20px; |
| height: 20px; |
| color: var(--stroke-color); |
| } |
| & > section { |
| padding: 5px; |
| border-bottom: 1px solid var(--stroke-color); |
| } |
| div { |
| margin: 2px 0; |
| } |
| table, |
| td, |
| th { |
| border: 1px solid var(--stroke-color); |
| text-align: center; |
| padding: 4px; |
| margin: 4px 0; |
| } |
| table { |
| border-collapse: collapse; |
| } |
| } |