OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <!-- | |
3 Copyright 2013 The Polymer Authors. All rights reserved. | |
4 Use of this source code is governed by a BSD-style | |
5 license that can be found in the LICENSE file. | |
6 --> | |
7 <html> | |
8 <head> | |
9 <title>paper-item</title> | |
10 | |
11 <meta charset="utf-8"> | |
12 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
13 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> | |
14 | |
15 <script src="../platform/platform.js"></script> | |
16 <link href="../font-roboto/roboto.html" rel="import"> | |
17 <link href="../core-icons/core-icons.html" rel="import"> | |
18 <link href="paper-item.html" rel="import"> | |
19 <style shim-shadowdom> | |
20 body { | |
21 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; | |
22 margin: 20px; | |
23 } | |
24 | |
25 paper-item { | |
26 max-width: 320px; | |
27 } | |
28 </style> | |
29 </head> | |
30 <body unresolved> | |
31 | |
32 <h2>items with icon and label:</h2> | |
33 <paper-item icon="refresh" label="Refresh"></paper-item> | |
34 <paper-item icon="favorite" label="Favorite"></paper-item> | |
35 <paper-item icon="delete" label="Delete"></paper-item> | |
36 <paper-item icon="bookmark" label="Bookmark"></paper-item> | |
37 | |
38 <br><br> | |
39 | |
40 <h2>links (via <a>):</h2> | |
41 <paper-item label="Polymer Project link"> | |
42 <a href="http://www.polymer-project.org" target="_blank"></a> | |
43 </paper-item> | |
44 <paper-item label="GitHub link"> | |
45 <a href="https://github.com/Polymer" target="_blank"></a> | |
46 </paper-item> | |
47 <paper-item label="WebComponents.org link"> | |
48 <a href="http://webcomponents.org/" target="_blank"></a> | |
49 </paper-item> | |
50 </body> | |
51 </html> | |
OLD | NEW |