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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: components/webapks_ui/resources/about_webapks.css
diff --git a/components/webapks_ui/resources/about_webapks.css b/components/webapks_ui/resources/about_webapks.css
new file mode 100644
index 0000000000000000000000000000000000000000..c9dc4af03fc212fcde920874eece01bf0b126760
--- /dev/null
+++ b/components/webapks_ui/resources/about_webapks.css
@@ -0,0 +1,58 @@
+/* Copyright (c) 2017 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+body {
+ background-color: white;
+ color: black;
+ font-size: 100%;
+ margin: 0;
+}
+
+#outer {
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: 10px;
+ text-align: left;
+ width: 90%;
+}
+
+.label {
+ -webkit-padding-end: 5px;
+ font-size: 1.5em;
+ font-weight: bold;
+ text-align: start;
+ white-space: nowrap;
+}
+
+.label::after {
+ content: ':';
+}
+
+#logo {
+ float: left;
+ margin-left: auto;
+ margin-right: auto;
+ text-align: right;
+}
+
+.app-name {
+ -webkit-padding-end: 5px;
+ font-size: 1.2em;
+ font-weight: bold;
+ text-align: start;
+ vertical-align: top;
pkotwicz 2017/01/19 19:37:18 Stupid question: Do you need vertical-align: top ?
+ white-space: nowrap;
+}
+
+.app-property-label {
+ -webkit-padding-end: 5px;
+ font-weight: bold;
+ text-align: start;
+ vertical-align: top;
+ white-space: nowrap;
+}
+
+.app-property-label::after {
+ content: ':';
+}

Powered by Google App Engine
This is Rietveld 408576698