| // 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-perf-stats { |
| --stroke-color: hsl(217, 39%, 94%); |
| position: fixed; |
| bottom: 0; |
| left: 0; |
| width: 600px; |
| color: var(--stroke-color); |
| font-family: var(--pf-font-monospace); |
| 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 { |
| 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; |
| } |
| } |