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; | |
|
Dan Beam
2017/01/24 18:41:50
how does this work in RTL?
gonzalon
2017/01/24 20:43:29
Done.
| |
| 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 #logo { | |
| 29 float: left; | |
| 30 margin-left: auto; | |
| 31 margin-right: auto; | |
| 32 text-align: right; | |
| 33 } | |
| 34 | |
| 35 .app-name { | |
| 36 -webkit-padding-end: 5px; | |
| 37 font-size: 1.2em; | |
| 38 font-weight: bold; | |
| 39 text-align: start; | |
| 40 white-space: nowrap; | |
| 41 } | |
| 42 | |
| 43 .app-property-label { | |
| 44 -webkit-padding-end: 5px; | |
| 45 font-weight: bold; | |
| 46 text-align: start; | |
| 47 white-space: nowrap; | |
| 48 } | |
| OLD | NEW |