OLD | NEW |
---|---|
1 <!-- | 1 <!-- |
2 Copyright 2014 The Chromium Authors. All rights reserved. | 2 Copyright 2014 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 found in the LICENSE file. |
5 | 5 |
6 The favicons are from the awesome famfamfam.com, which is the website of Mark | 6 The favicons are from the awesome famfamfam.com, which is the website of Mark |
7 James, a web developer from Birmingham, UK. | 7 James, a web developer from Birmingham, UK. |
8 --> | 8 --> |
9 <!DOCTYPE html> | 9 <!DOCTYPE html> |
10 <head> | 10 <head> |
11 <title>Sheriff-O-Matic</title> | 11 <title>Sheriff-O-Matic</title> |
12 <meta charset="utf-8"> | 12 <meta charset="utf-8"> |
13 <meta name="viewport" content="width=device-width, user-scalable=no"> | 13 <meta name="viewport" content="width=device-width, user-scalable=no"> |
14 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> | 14 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40 0,700"> |
15 <style> | 15 <style> |
16 html { | 16 html, body { |
17 overflow-y: scroll; | 17 height: 100%; |
18 } | 18 } |
19 body { | 19 body { |
20 font-family: 'Open Sans'; | 20 font-family: 'Open Sans'; |
abarth-chromium
2014/07/21 06:17:37
Should we use Roboto?
ojan
2014/07/21 06:34:31
Sure, I'm going to land this now so I can go to be
| |
21 font-size: 14px; | 21 font-size: 14px; |
22 margin: 0px; | 22 margin: 0px; |
23 } | 23 } |
24 </style> | 24 </style> |
25 <script src="bower_components/platform/platform.js"></script> | 25 <script src="bower_components/platform/platform.js"></script> |
26 <link rel="import" href="bower_components/polymer/polymer.html"> | 26 <link rel="import" href="bower_components/polymer/polymer.html"> |
27 <link rel="import" href="ui/ct-sheriff-o-matic.html"> | 27 <link rel="import" href="ui/ct-sheriff-o-matic.html"> |
28 <ct-sheriff-o-matic></ct-sheriff-o-matic> | 28 <ct-sheriff-o-matic></ct-sheriff-o-matic> |
29 </head> | 29 </head> |
OLD | NEW |