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 |
11 <link rel="import" href="../polymer/polymer.html"> | 11 <link rel="import" href="../polymer/polymer.html"> |
12 | 12 |
| 13 <!-- |
| 14 The `<iron-flex-layout>` component provides simple ways to use [CSS flexible box
layout](https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Flexible_boxes),
also known as flexbox. This component provides two different ways to use flexbo
x: |
| 15 |
| 16 1. [Layout classes](https://github.com/PolymerElements/iron-flex-layout/tree/mas
ter/classes). The layout class stylesheet provides a simple set of class-based f
lexbox rules. Layout classes let you specify layout properties directly in marku
p. |
| 17 |
| 18 2. [Custom CSS mixins](https://github.com/PolymerElements/iron-flex-layout/blob/
master/iron-flex-layout.html). The mixin stylesheet includes custom CSS mixins t
hat can be applied inside a CSS rule using the `@apply` function. |
| 19 |
| 20 A complete [guide](https://elements.polymer-project.org/guides/flex-layout) to `
<iron-flex-layout>` is available. |
| 21 |
| 22 @group Iron Elements |
| 23 @pseudoElement iron-flex-layout |
| 24 @demo demo/index.html |
| 25 --> |
| 26 |
13 <style> | 27 <style> |
14 /* IE 10 support for HTML5 hidden attr */ | 28 /* IE 10 support for HTML5 hidden attr */ |
15 [hidden] { | 29 [hidden] { |
16 display: none !important; | 30 display: none !important; |
17 } | 31 } |
18 </style> | 32 </style> |
19 | 33 |
20 <style is="custom-style"> | 34 <style is="custom-style"> |
21 :root { | 35 :root { |
22 | 36 |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 --layout-fixed-left: { | 321 --layout-fixed-left: { |
308 position: fixed; | 322 position: fixed; |
309 top: 0; | 323 top: 0; |
310 bottom: 0; | 324 bottom: 0; |
311 left: 0; | 325 left: 0; |
312 }; | 326 }; |
313 | 327 |
314 } | 328 } |
315 | 329 |
316 </style> | 330 </style> |
OLD | NEW |