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

Side by Side Diff: sky/examples/city-list/index.sky

Issue 698653002: Add initial SkyElement & city-list example (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: moar cleanup Created 6 years, 1 month 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
(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 <!DOCTYPE html>
7 <html>
8 <head>
9 <meta charset="utf-8">
10 <meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-sca le=1.0, user-scalable=yes, width=device-width">
11 <link rel="import" href="city-list.sky" />
12 <style>
13 html, body {
14 margin: 0;
15 padding: 0;
16 font-family: "Roboto", "HelveticaNeue",sans-serif;
17 -webkit-font-smoothing: antialiased;
18 font-size: 13px;
19 color: #222;
20 width: 100%;
21 height: 100%;
22 -webkit-user-select: none;
23 }
24 </style>
25 </head>
26 <script>
27 window.startLoad = new Date().getTime();
28 </script>
29 <body>
30 <city-list></city-list>
31 </body>
32 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698