Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 Use of this source code is governed by a BSD-style license that can be | |
| 3 found in the LICENSE file. */ | |
| 4 | |
| 5 a { | |
| 6 color: #585858; | |
| 7 } | |
| 8 | |
| 9 body { | |
| 10 background-color: #f7f7f7; | |
| 11 color: #646464; | |
|
felt
2017/05/05 04:35:01
I think the preferred Chrome style is rgb for colo
| |
| 12 } | |
| 13 | |
| 14 #details-button { | |
| 15 background: inherit; | |
| 16 border: 0; | |
| 17 float: none; | |
| 18 margin: 0; | |
| 19 padding: 10px 0; | |
| 20 text-transform: uppercase; | |
| 21 } | |
| 22 | |
| 23 .hidden { | |
| 24 display: none; | |
| 25 } | |
| 26 | |
| 27 html { | |
| 28 -webkit-text-size-adjust: 100%; | |
| 29 font-size: 125%; | |
| 30 } | |
| 31 | |
| 32 .icon { | |
| 33 background-repeat: no-repeat; | |
| 34 background-size: 100%; | |
| 35 } | |
| OLD | NEW |