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

Side by Side Diff: chrome/browser/resources/security_warnings/interstitial_v2.css

Issue 519453002: Switch security warning font to Roboto if client has it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 @font-face {
5 font-family: 'Roboto2';
6 font-weight: 400;
7 src: local('Roboto'),
8 local('Roboto2-Regular'),
9 url(../roboto/roboto.woff2) format('woff2'),
10 url(../roboto/roboto.woff) format('woff');
11 }
4 12
5 a { 13 a {
6 color: #585858; 14 color: #585858;
7 } 15 }
8 16
9 body { 17 body {
10 background-color: #f7f7f7; 18 background-color: #f7f7f7;
11 color: #585858; 19 color: #585858;
20 font-family: 'Roboto2', serif;
Mathieu 2014/08/28 20:04:28 nit: I think the closest fallback to Roboto is 'sa
felt 2014/08/28 20:30:57 I actually removed this altogether; if I don't put
12 font-size: 125%; 21 font-size: 125%;
13 } 22 }
14 23
15 body.safe-browsing { 24 body.safe-browsing {
16 background-color: rgb(206, 52, 38); 25 background-color: rgb(206, 52, 38);
17 color: white; 26 color: white;
18 } 27 }
19 28
20 button { 29 button {
21 background: rgb(76, 142, 250); 30 background: rgb(76, 142, 250);
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 } 255 }
247 256
248 .nav-wrapper { 257 .nav-wrapper {
249 margin-top: 30px; 258 margin-top: 30px;
250 } 259 }
251 260
252 .small-link { 261 .small-link {
253 font-size: 1em; 262 font-size: 1em;
254 } 263 }
255 } 264 }
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698