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

Side by Side Diff: chrome/browser/resources/contextual_search/promo.css

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 /* TODO: Need to clean up @font-face after we remove font-family from body. */
5 @font-face { 6 @font-face {
6 font-family: 'Roboto2'; 7 font-family: 'Roboto2';
7 font-weight: 400; 8 font-weight: 400;
8 src: local('Roboto'), local('Roboto2-Regular'), 9 src: local('Roboto'), local('Roboto2-Regular'),
9 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff'); 10 url(/roboto.woff2) format('woff2'), url(/roboto.woff) format('woff');
10 } 11 }
11 12
12 body { 13 body {
13 color: #414141; 14 color: #414141;
14 font-family: 'Roboto2', sans-serif; 15 font-family: 'Roboto2', sans-serif;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 margin-right: 24px; 102 margin-right: 24px;
102 } 103 }
103 104
104 #optin-label a { 105 #optin-label a {
105 color: white; 106 color: white;
106 } 107 }
107 108
108 #optout-label a { 109 #optout-label a {
109 color: rgb(66, 133, 244); 110 color: rgb(66, 133, 244);
110 } 111 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698