| /* |
| * Copyright 2023 The Chromium Authors |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #container { |
| padding: 6px 12px; |
| border-bottom: 1px solid var(--sys-color-divider); |
| align-items: center; |
| display: flex; |
| } |
| |
| #contents .key { |
| grid-column-start: span 2; |
| font-weight: bold; |
| } |
| |
| #contents .value { |
| grid-column-start: span 2; |
| margin-top: var(--sys-size-6); |
| } |
| |
| #footer { |
| margin-top: var(--sys-size-6); |
| margin-bottom: var(--sys-size-2); |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| grid-column-start: span 2; |
| } |
| |
| x-link { |
| color: var(--sys-color-primary); |
| text-decoration-line: underline; |
| } |