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

Unified Diff: components/proximity_auth/webui/resources/proximity_auth.css

Issue 1108713002: Add chrome://proximity-auth UI implemented with Polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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/proximity_auth/webui/resources/proximity_auth.css
diff --git a/components/proximity_auth/webui/resources/proximity_auth.css b/components/proximity_auth/webui/resources/proximity_auth.css
index 25ecca35154bd0e8d2f43fdd5e3e9a0ff5da6237..40ad6c2ba01fb409b2eb9f1d1e4336bd5565646a 100644
--- a/components/proximity_auth/webui/resources/proximity_auth.css
+++ b/components/proximity_auth/webui/resources/proximity_auth.css
@@ -3,17 +3,24 @@
* found in the LICENSE file.
*/
-html,
-body {
+@font-face {
+ font-family: 'Roboto2';
+ font-weight: 400;
+ src: local('Roboto'), local('Roboto2-Regular'),
+ url(../../../ui/webui/resources/roboto.woff2") format('woff2'),
+ url(../../../ui/webui/resources/roboto.woff") format('woff');
+}
+
+html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
+ font-family: 'Roboto2', sans-serif;
}
-canvas {
- width: 100%;
- height: 100%;
- margin: 0;
+#logs {
+ width: 40%;
+ border-left: 1px solid rgba(0,0,0,0.12);
}

Powered by Google App Engine
This is Rietveld 408576698