| /* Copyright 2020 The Chromium Authors. All rights reserved. |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. */ |
| |
| * { |
| box-sizing: border-box; |
| } |
| |
| html { |
| height: 100%; |
| } |
| |
| body { |
| color: rgb(48, 57, 66); |
| display: flex; |
| flex-direction: column; |
| font-family: Roboto, sans-seriif; |
| font-size: 13px; |
| height: 100%; |
| margin: 15px; |
| overflow: auto; |
| } |
| |
| #page-heading { |
| color: rgb(92, 97, 102); |
| font-size: 1.5rem; |
| padding-bottom: 10px; |
| } |
| |
| #feature-status-content { |
| font-weight: bold; |
| } |
| |
| .content { |
| background-color: #fbfbfb; |
| border: 1px solid #cecece; |
| border-radius: 3px; |
| line-height: 1.5; |
| overflow-x: scroll; |
| padding: 19px; |
| } |
| |
| .table-wrapper { |
| background-color: #fff; |
| border-color: rgba(0,0,0,.12); |
| border-radius: 4px; |
| border-style: solid; |
| border-width: 1px; |
| display: inline-block; |
| |
| } |
| |
| table { |
| border: 0; |
| border-collapse: collapse; |
| } |
| |
| table tr { |
| border-top-color: rgba(0,0,0,.12); |
| border-top-style: solid; |
| border-top-width: 1px; |
| } |
| |
| .header-row { |
| border: 0; |
| } |
| |
| table td, |
| table th { |
| padding-inline-end: 16px; |
| padding-inline-start: 16px; |
| } |
| |
| button { |
| font: inherit; |
| } |