OLD | NEW |
| (Empty) |
1 <!-- | |
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 | |
4 found in the LICENSE file. | |
5 | |
6 The favicons are from the awesome famfamfam.com, which is the website of Mark | |
7 James, a web developer from Birmingham, UK. | |
8 --> | |
9 <!DOCTYPE html> | |
10 <head> | |
11 <title>Sheriff-O-Matic</title> | |
12 <meta charset="utf-8"> | |
13 <meta name="viewport" content="width=device-width, user-scalable=no"> | |
14 <!-- | |
15 Add a base element so our custom URLs don't break imports and links. | |
16 This assumes the application is run from the web server root. | |
17 --> | |
18 <base href="/"> | |
19 <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:4
00,700"> | |
20 <style> | |
21 html, body { | |
22 height: 100%; | |
23 } | |
24 body { | |
25 background-color: white; /* workaround for web2cast: http://goo.gl/tQiSPW */ | |
26 font-family: 'Open Sans'; | |
27 font-size: 14px; | |
28 margin: 0px; | |
29 } | |
30 </style> | |
31 <script src="bower_components/platform/platform.js"></script> | |
32 <link rel="import" href="bower_components/polymer/polymer.html"> | |
33 <link rel="import" href="ui/ct-sheriff-o-matic.html"> | |
34 <ct-sheriff-o-matic></ct-sheriff-o-matic> | |
35 </head> | |
OLD | NEW |