| /** |
| * Copyright 2019 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. |
| */ |
| |
| .overview-completed-view { |
| overflow: auto; |
| --overview-default-padding: 28px; |
| } |
| |
| .overview-completed-view .summary ul, |
| .overview-completed-view .colors ul { |
| list-style: none; |
| padding: 0; |
| margin: 0; |
| } |
| |
| .overview-completed-view .summary ul { |
| display: grid; |
| grid-template-columns: repeat(auto-fill, 140px); |
| grid-gap: 16px; |
| } |
| |
| .overview-completed-view .colors ul li { |
| display: inline-block; |
| padding: 0; |
| margin: 0 0 16px 0; |
| } |
| |
| .overview-completed-view .summary ul li { |
| display: flex; |
| flex-direction: column; |
| grid-column-start: auto; |
| } |
| |
| .overview-completed-view li .label { |
| font-size: 12px; |
| padding-bottom: 2px; |
| } |
| |
| .overview-completed-view li .value { |
| font-size: 17px; |
| } |
| |
| .overview-completed-view ul li span { |
| font-weight: bold; |
| } |
| |
| .media-query-grid .header-container, |
| .media-query-grid .data-container, |
| .media-query-grid table.data, |
| .unused-rules-grid .header-container, |
| .unused-rules-grid .data-container, |
| .unused-rules-grid table.data { |
| position: relative; |
| } |
| |
| .unused-rules-grid .data-container, |
| .media-query-grid .data-container { |
| top: 0; |
| max-height: 350px; |
| } |
| |
| .unused-rules-grid, |
| .media-query-grid { |
| border-left: none; |
| border-right: none; |
| } |
| |
| /** Ensure links are rendered at the correct height */ |
| .unused-rules-grid .monospace { |
| display: block; |
| height: 18px; |
| } |
| |
| .element-grid { |
| flex: 1; |
| border-left: none; |
| border-right: none; |
| overflow: auto; |
| } |
| |
| .block { |
| width: 65px; |
| height: 25px; |
| border-radius: 3px; |
| margin-right: 16px; |
| cursor: pointer; |
| } |
| |
| .block-title { |
| padding-top: 4px; |
| font-size: 12px; |
| color: #303942; |
| text-transform: uppercase; |
| letter-spacing: 0; |
| } |
| |
| .results-section { |
| flex-shrink: 0; |
| border-bottom: 1px solid #E6E6E6; |
| padding: var(--overview-default-padding) 0 var(--overview-default-padding) 0; |
| } |
| |
| .horizontally-padded { |
| padding-left: var(--overview-default-padding); |
| padding-right: var(--overview-default-padding); |
| } |
| |
| .results-section h1 { |
| font-size: 15px; |
| font-weight: normal; |
| padding: 0; |
| margin: 0 0 20px 0; |
| padding-left: var(--overview-default-padding); |
| } |
| |
| .results-section.horizontally-padded h1 { |
| padding-left: 0; |
| } |
| |
| .results-section.colors h2 { |
| margin-top: 20px; |
| font-size: 13px; |
| font-weight: normal; |
| } |