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

Side by Side Diff: components/proximity_auth/webui/resources/proximity_auth.css

Issue 1142893002: Add Roboto-Medium webfont and factor out common Roboto WebUI CSS file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rearrange properties in promo.css to abate presubmit Created 5 years, 7 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 @font-face {
7 font-family: "Roboto2";
8 font-weight: 400;
9 src: local("Roboto"), local("Roboto2-Regular"),
10 url(chrome://resources/roboto/roboto.woff2) format("woff2"),
11 url(chrome://resources/roboto/roboto.woff) format("woff");
12 }
13
14 html, body { 6 html, body {
15 width: 100%; 7 width: 100%;
16 height: 100%; 8 height: 100%;
17 margin: 0; 9 margin: 0;
18 padding: 0; 10 padding: 0;
19 overflow: hidden; 11 overflow: hidden;
20 font-family: "Roboto2", sans-serif; 12 font-family: "Roboto", sans-serif;
21 } 13 }
22 14
23 #logs { 15 #logs {
24 width: 40%; 16 width: 40%;
25 border-left: 1px solid rgba(0,0,0,0.12); 17 border-left: 1px solid rgba(0,0,0,0.12);
26 } 18 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/pdf/index-material.html ('k') | components/proximity_auth/webui/resources/proximity_auth.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698