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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 html, 6 @font-face {
7 body { 7 font-family: 'Roboto2';
8 font-weight: 400;
9 src: local('Roboto'), local('Roboto2-Regular'),
10 url(../../../ui/webui/resources/roboto.woff2") format('woff2'),
11 url(../../../ui/webui/resources/roboto.woff") format('woff');
12 }
13
14 html, body {
8 width: 100%; 15 width: 100%;
9 height: 100%; 16 height: 100%;
10 margin: 0; 17 margin: 0;
11 padding: 0; 18 padding: 0;
12 overflow: hidden; 19 overflow: hidden;
20 font-family: 'Roboto2', sans-serif;
13 } 21 }
14 22
15 canvas { 23 #logs {
16 width: 100%; 24 width: 40%;
17 height: 100%; 25 border-left: 1px solid rgba(0,0,0,0.12);
18 margin: 0;
19 } 26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698