OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <!-- | 2 <!-- |
3 Copyright 2013 The Polymer Authors. All rights reserved. | 3 Copyright 2013 The Polymer Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style | 4 Use of this source code is governed by a BSD-style |
5 license that can be found in the LICENSE file. | 5 license that can be found in the LICENSE file. |
6 --> | 6 --> |
7 <html> | 7 <html> |
8 <head> | 8 <head> |
9 | 9 |
10 <meta charset="utf-8"> | 10 <meta charset="utf-8"> |
11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 11 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
12 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> | 12 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> |
13 | 13 |
14 <title>paper-fab</title> | 14 <title>paper-fab</title> |
15 | 15 |
16 <script src="../platform/platform.js"></script> | 16 <script src="../webcomponentsjs/webcomponents.js"></script> |
17 | 17 |
18 <link href="../font-roboto/roboto.html" rel="import"> | 18 <link href="../font-roboto/roboto.html" rel="import"> |
19 <link href="../core-icons/core-icons.html" rel="import"> | 19 <link href="../core-icons/core-icons.html" rel="import"> |
20 <link href="paper-fab.html" rel="import"> | 20 <link href="paper-fab.html" rel="import"> |
21 | 21 |
22 <style shim-shadowdom> | 22 <style shim-shadowdom> |
23 | 23 |
24 body { | 24 body { |
25 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; | 25 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; |
26 font-size: 14px; | 26 font-size: 14px; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 </style> | 63 </style> |
64 | 64 |
65 </head> | 65 </head> |
66 <body unresolved> | 66 <body unresolved> |
67 | 67 |
68 <section> | 68 <section> |
69 | 69 |
70 <div>Regular</div> | 70 <div>Regular</div> |
71 | 71 |
72 <paper-fab icon="arrow-forward"></paper-fab> | 72 <paper-fab icon="arrow-forward" title="arrow-forward"></paper-fab> |
73 <paper-fab icon="create" class="blue"></paper-fab> | 73 <paper-fab icon="create" class="blue" title="create"></paper-fab> |
74 | 74 |
75 </section> | 75 </section> |
76 | 76 |
77 <section> | 77 <section> |
78 | 78 |
79 <div>Mini</div> | 79 <div>Mini</div> |
80 | 80 |
81 <paper-fab mini icon="done" class="green"></paper-fab> | 81 <paper-fab mini icon="done" class="green" title="done"></paper-fab> |
82 <paper-fab mini icon="reply" class="yellow"></paper-fab> | 82 <paper-fab mini icon="reply" class="yellow" title="reply"></paper-fab> |
83 | 83 |
84 </section> | 84 </section> |
85 | 85 |
86 </body> | 86 </body> |
87 </html> | 87 </html> |
OLD | NEW |