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

Side by Side Diff: chrome/browser/resources/about_credits.tmpl

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 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Credits</title> 5 <title>Credits</title>
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
6 <style> 7 <style>
7 body { 8 body {
8 background-color: white; 9 background-color: white;
9 font-family: Helvetica, Arial, sans-serif;
10 font-size: 84%; 10 font-size: 84%;
11 max-width: 1020px; 11 max-width: 1020px;
12 } 12 }
13 .page-title { 13 .page-title {
14 font-size: 164%; 14 font-size: 164%;
15 font-weight: bold; 15 font-weight: bold;
16 } 16 }
17 .product { 17 .product {
18 background-color: #c3d9ff; 18 background-color: #c3d9ff;
19 border-radius: 5px; 19 border-radius: 5px;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 <body> 62 <body>
63 <span class="page-title" style="float:left;">Credits</span> 63 <span class="page-title" style="float:left;">Credits</span>
64 <a id="print-link" href="#" style="float:right;">Print</a> 64 <a id="print-link" href="#" style="float:right;">Print</a>
65 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects --> 65 <div style="clear:both; overflow:auto;"><!-- Chromium <3s the following projects -->
66 {{entries}} 66 {{entries}}
67 </div> 67 </div>
68 <script src="chrome://resources/js/cr.js"></script> 68 <script src="chrome://resources/js/cr.js"></script>
69 <script src="chrome://credits/credits.js"></script> 69 <script src="chrome://credits/credits.js"></script>
70 </body> 70 </body>
71 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698