OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 @license |
| 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 |
| 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 |
| 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 |
| 9 --> |
| 10 |
| 11 <link rel="import" href="../polymer/polymer.html"> |
| 12 |
| 13 <link rel="import" href="classes/layout.html"> |
| 14 |
| 15 <style is="x-style"> |
| 16 |
| 17 * { |
| 18 |
| 19 --layout: { |
| 20 display: -ms-flexbox; |
| 21 display: -webkit-flex; |
| 22 display: flex; |
| 23 } |
| 24 |
| 25 --layout-horizontal: { |
| 26 display: -ms-flexbox; |
| 27 display: -webkit-flex; |
| 28 display: flex; |
| 29 |
| 30 -ms-flex-direction: row; |
| 31 -webkit-flex-direction: row; |
| 32 flex-direction: row; |
| 33 } |
| 34 |
| 35 --layout-vertical: { |
| 36 display: -ms-flexbox; |
| 37 display: -webkit-flex; |
| 38 display: flex; |
| 39 |
| 40 -ms-flex-direction: column; |
| 41 -webkit-flex-direction: column; |
| 42 flex-direction: column; |
| 43 } |
| 44 |
| 45 --layout-flex: { |
| 46 -ms-flex: 1; |
| 47 -webkit-flex: 1; |
| 48 flex: 1; |
| 49 } |
| 50 |
| 51 --layout-center: { |
| 52 -ms-flex-align: center; |
| 53 -webkit-align-items: center; |
| 54 align-items: center; |
| 55 } |
| 56 |
| 57 --layout-center-justified: { |
| 58 -ms-flex-pack: center; |
| 59 -webkit-justify-content: center; |
| 60 justify-content: center; |
| 61 } |
| 62 |
| 63 /******************************* |
| 64 Other Layout |
| 65 *******************************/ |
| 66 |
| 67 --fit: { |
| 68 position: absolute; |
| 69 top: 0; |
| 70 right: 0; |
| 71 bottom: 0; |
| 72 left: 0; |
| 73 } |
| 74 |
| 75 } |
| 76 |
| 77 </style> |
OLD | NEW |