| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 3 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 6 Code distributed by Google as part of the polymer project is also | 6 Code distributed by Google as part of the polymer project is also |
| 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 8 --> | 8 --> |
| 9 <style shim-shadowdom> | 9 <style shim-shadowdom> |
| 10 /******************************* | 10 /******************************* |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 } | 150 } |
| 151 | 151 |
| 152 /* alignment in cross axis */ | 152 /* alignment in cross axis */ |
| 153 | 153 |
| 154 html /deep/ [layout][start] { | 154 html /deep/ [layout][start] { |
| 155 -ms-flex-align: start; | 155 -ms-flex-align: start; |
| 156 -webkit-align-items: flex-start; | 156 -webkit-align-items: flex-start; |
| 157 align-items: flex-start; | 157 align-items: flex-start; |
| 158 } | 158 } |
| 159 | 159 |
| 160 html /deep/ [layout][center] { | 160 html /deep/ [layout][center], html /deep/ [layout][center-center] { |
| 161 -ms-flex-align: center; | 161 -ms-flex-align: center; |
| 162 -webkit-align-items: center; | 162 -webkit-align-items: center; |
| 163 align-items: center; | 163 align-items: center; |
| 164 } | 164 } |
| 165 | 165 |
| 166 html /deep/ [layout][end] { | 166 html /deep/ [layout][end] { |
| 167 -ms-flex-align: end; | 167 -ms-flex-align: end; |
| 168 -webkit-align-items: flex-end; | 168 -webkit-align-items: flex-end; |
| 169 align-items: flex-end; | 169 align-items: flex-end; |
| 170 } | 170 } |
| 171 | 171 |
| 172 /* alignment in main axis */ | 172 /* alignment in main axis */ |
| 173 | 173 |
| 174 html /deep/ [layout][start-justified] { | 174 html /deep/ [layout][start-justified] { |
| 175 -ms-flex-pack: start; | 175 -ms-flex-pack: start; |
| 176 -webkit-justify-content: flex-start; | 176 -webkit-justify-content: flex-start; |
| 177 justify-content: flex-start; | 177 justify-content: flex-start; |
| 178 } | 178 } |
| 179 | 179 |
| 180 html /deep/ [layout][center-justified] { | 180 html /deep/ [layout][center-justified], html /deep/ [layout][center-center] { |
| 181 -ms-flex-pack: center; | 181 -ms-flex-pack: center; |
| 182 -webkit-justify-content: center; | 182 -webkit-justify-content: center; |
| 183 justify-content: center; | 183 justify-content: center; |
| 184 } | 184 } |
| 185 | 185 |
| 186 html /deep/ [layout][end-justified] { | 186 html /deep/ [layout][end-justified] { |
| 187 -ms-flex-pack: end; | 187 -ms-flex-pack: end; |
| 188 -webkit-justify-content: flex-end; | 188 -webkit-justify-content: flex-end; |
| 189 justify-content: flex-end; | 189 justify-content: flex-end; |
| 190 } | 190 } |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 box-sizing: border-box; | 269 box-sizing: border-box; |
| 270 margin: 1em 0.5em; | 270 margin: 1em 0.5em; |
| 271 padding: 1em; | 271 padding: 1em; |
| 272 background-color: white; | 272 background-color: white; |
| 273 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); | 273 -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); |
| 274 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); | 274 box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1); |
| 275 border-radius: 5px 5px 5px 5px; | 275 border-radius: 5px 5px 5px 5px; |
| 276 } | 276 } |
| 277 | 277 |
| 278 </style> | 278 </style> |
| OLD | NEW |