1<!--
2@license
3Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
4This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7Code distributed by Google as part of the polymer project is also
8subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9-->
10
11<link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
12<link rel="import" href="../iron-flex-layout/classes/iron-flex-layout.html">
13
14<!--
15The `<paper-styles>` component provides simple ways to use Material Design CSS styles
16in your application. The following imports are available:
17
181. [color.html](https://github.com/PolymerElements/paper-styles/blob/master/color.html):
19a complete list of the colors defined in the Material Design [palette](https://www.google.com/design/spec/style/color.html)
20
212. [default-theme.html](https://github.com/PolymerElements/paper-styles/blob/master/default-theme.html): text,
22background and accent colors that match the default Material Design theme
23
243. [shadow.html](https://github.com/PolymerElements/paper-styles/blob/master/shadow.html): Material Design
25[elevation](https://www.google.com/design/spec/what-is-material/elevation-shadows.html) and shadow styles
26
274. [typography.html](https://github.com/PolymerElements/paper-styles/blob/master/typography.html):
28Material Design [font](http://www.google.com/design/spec/style/typography.html#typography-styles) styles and sizes
29
305. [demo-pages.html](https://github.com/PolymerElements/paper-styles/blob/master/demo-pages.html): generic styles
31used in the PolymerElements demo pages
32
33We recommend importing each of these individual files, and using the style mixins
34available in each ones, rather than the aggregated `paper-styles.html` as a whole.
35
36@group Paper Elements
37@pseudoElement paper-styles
38@demo demo/index.html
39-->
40
41<link rel="import" href="color.html">
42<link rel="import" href="default-theme.html">
43<link rel="import" href="shadow.html">
44<link rel="import" href="typography.html">
45