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. */ | |
|
Dan Beam
2017/05/08 17:58:04
nit:
/* Copyright 2017 The Chromium Authors. All
edwardjung
2017/05/08 23:21:10
Done.
| |
| 4 | |
| 5 a { | |
| 6 color: rgb(88, 88, 88); | |
| 7 } | |
| 8 | |
| 9 body { | |
| 10 background-color: rgb(247,247,247); | |
|
Dan Beam
2017/05/08 17:58:04
nit: spaces between numbers
edwardjung
2017/05/08 23:21:10
Done.
| |
| 11 color: rgb(100, 100, 100); | |
| 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 |