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

Side by Side Diff: ui/webui/resources/css/roboto.css

Issue 1516233003: Incognito NTP style tweaks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reinstate Roboto and add text_defaults_md.css Created 4 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
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 @font-face { 5 @font-face {
6 font-family: 'Roboto'; 6 font-family: 'Roboto';
7 font-style: normal; 7 font-style: normal;
8 font-weight: 300;
9 src: local('Roboto Light'), local('Roboto-Light'),
10 url(chrome://resources/roboto/roboto-light.woff2) format('woff2');
Dan Beam 2016/01/12 23:05:52 this will probably piss off some bots (it's gonna
edwardjung 2016/01/13 21:24:07 What's the procedure for getting this through? Any
Dan Beam 2016/01/13 21:51:41 not sure. maybe it wont trip the bots? but you c
11 }
12
13 @font-face {
14 font-family: 'Roboto';
15 font-style: normal;
8 font-weight: 400; 16 font-weight: 400;
9 src: local('Roboto'), local('Roboto-Regular'), 17 src: local('Roboto'), local('Roboto-Regular'),
10 url(chrome://resources/roboto/roboto-regular.woff2) format('woff2'); 18 url(chrome://resources/roboto/roboto-regular.woff2) format('woff2');
11 } 19 }
12 20
13 @font-face { 21 @font-face {
14 font-family: 'Roboto'; 22 font-family: 'Roboto';
15 font-style: normal; 23 font-style: normal;
16 font-weight: 500; 24 font-weight: 500;
17 src: local('Roboto Medium'), local('Roboto-Medium'), 25 src: local('Roboto Medium'), local('Roboto-Medium'),
18 url(chrome://resources/roboto/roboto-medium.woff2) format('woff2'); 26 url(chrome://resources/roboto/roboto-medium.woff2) format('woff2');
19 } 27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698