Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(200)

Side by Side Diff: components/webapks_ui/resources/about_webapks.css

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Removes strings from i18n file Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698