OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt |
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS
.txt |
6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.txt |
7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
9 --> | 9 --> |
10 <!doctype html> | 10 <!doctype html> |
11 <html lang="en"> | 11 <html lang="en"> |
12 <head> | 12 <head> |
13 | 13 |
14 <meta charset="UTF-8"> | 14 <meta charset="UTF-8"> |
15 <title>Core Field</title> | 15 <title>Core Field</title> |
16 | 16 |
17 <script src="../platform/platform.js"></script> | 17 <script src="../webcomponentsjs/webcomponents.js"></script> |
18 | 18 |
19 <link rel="import" href="core-field.html"> | 19 <link rel="import" href="core-field.html"> |
20 | 20 |
21 <style> | 21 <style> |
22 html { | 22 html { |
23 font-family: 'Helvetica Neue', 'Roboto', 'Arial', sans-serif; | 23 font-family: 'Helvetica Neue', 'Roboto', 'Arial', sans-serif; |
24 font-size: 14px; | 24 font-size: 14px; |
25 } | 25 } |
26 | 26 |
27 core-field { | 27 core-field { |
(...skipping 30 matching lines...) Expand all Loading... |
58 <label>I'm a label!</label> | 58 <label>I'm a label!</label> |
59 <input placeholder="I have a label" flex> | 59 <input placeholder="I have a label" flex> |
60 </core-field> | 60 </core-field> |
61 | 61 |
62 <core-field> | 62 <core-field> |
63 <input placeholder="I have no icon" flex> | 63 <input placeholder="I have no icon" flex> |
64 </core-field> | 64 </core-field> |
65 | 65 |
66 </body> | 66 </body> |
67 </html> | 67 </html> |
OLD | NEW |