OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.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/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.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/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
9 --> | 9 --> |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 | 23 |
24 3. [shadow.html](https://github.com/PolymerElements/paper-styles/blob/master/sha
dow.html): Material Design | 24 3. [shadow.html](https://github.com/PolymerElements/paper-styles/blob/master/sha
dow.html): Material Design |
25 [elevation](https://www.google.com/design/spec/what-is-material/elevation-shadow
s.html) and shadow styles | 25 [elevation](https://www.google.com/design/spec/what-is-material/elevation-shadow
s.html) and shadow styles |
26 | 26 |
27 4. [typography.html](https://github.com/PolymerElements/paper-styles/blob/master
/typography.html): | 27 4. [typography.html](https://github.com/PolymerElements/paper-styles/blob/master
/typography.html): |
28 Material Design [font](http://www.google.com/design/spec/style/typography.html#t
ypography-styles) styles and sizes | 28 Material Design [font](http://www.google.com/design/spec/style/typography.html#t
ypography-styles) styles and sizes |
29 | 29 |
30 5. [demo-pages.html](https://github.com/PolymerElements/paper-styles/blob/master
/demo-pages.html): generic styles | 30 5. [demo-pages.html](https://github.com/PolymerElements/paper-styles/blob/master
/demo-pages.html): generic styles |
31 used in the PolymerElements demo pages | 31 used in the PolymerElements demo pages |
32 | 32 |
33 @group Iron Elements | 33 We recommend importing each of these individual files, and using the style mixin
s |
| 34 available in each ones, rather than the aggregated `paper-styles.html` as a whol
e. |
| 35 |
| 36 @group Paper Elements |
34 @pseudoElement paper-styles | 37 @pseudoElement paper-styles |
35 @demo demo/index.html | 38 @demo demo/index.html |
36 --> | 39 --> |
37 | 40 |
38 <link rel="import" href="color.html"> | 41 <link rel="import" href="color.html"> |
39 <link rel="import" href="default-theme.html"> | 42 <link rel="import" href="default-theme.html"> |
40 <link rel="import" href="shadow.html"> | 43 <link rel="import" href="shadow.html"> |
41 <link rel="import" href="typography.html"> | 44 <link rel="import" href="typography.html"> |
OLD | NEW |