Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 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 body { | |
| 6 background-color: white; | |
| 7 color: black; | |
| 8 font-size: 100%; | |
| 9 margin: 0; | |
| 10 } | |
| 11 | |
| 12 #outer { | |
| 13 margin-left: auto; | |
| 14 margin-right: auto; | |
| 15 margin-top: 10px; | |
| 16 text-align: left; | |
| 17 width: 90%; | |
| 18 } | |
| 19 | |
| 20 .label { | |
| 21 -webkit-padding-end: 5px; | |
| 22 font-size: 1.5em; | |
| 23 font-weight: bold; | |
| 24 text-align: start; | |
| 25 white-space: nowrap; | |
| 26 } | |
| 27 | |
| 28 .label::after { | |
| 29 content: ':'; | |
| 30 } | |
| 31 | |
| 32 #logo { | |
| 33 float: left; | |
| 34 margin-left: auto; | |
| 35 margin-right: auto; | |
| 36 text-align: right; | |
| 37 } | |
| 38 | |
| 39 .app-name { | |
| 40 -webkit-padding-end: 5px; | |
| 41 font-size: 1.2em; | |
| 42 font-weight: bold; | |
| 43 text-align: start; | |
| 44 vertical-align: top; | |
|
pkotwicz
2017/01/19 19:37:18
Stupid question: Do you need vertical-align: top ?
| |
| 45 white-space: nowrap; | |
| 46 } | |
| 47 | |
| 48 .app-property-label { | |
| 49 -webkit-padding-end: 5px; | |
| 50 font-weight: bold; | |
| 51 text-align: start; | |
| 52 vertical-align: top; | |
| 53 white-space: nowrap; | |
| 54 } | |
| 55 | |
| 56 .app-property-label::after { | |
| 57 content: ':'; | |
| 58 } | |
| OLD | NEW |