| 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 |
| 13 <link rel="import" href="../iron-flex-layout/iron-flex-layout.html"> |
| 14 |
| 12 <link rel="import" href="color.html"> | 15 <link rel="import" href="color.html"> |
| 16 <link rel="import" href="typography.html"> |
| 13 <link rel="import" href="shadow.html"> | 17 <link rel="import" href="shadow.html"> |
| 14 | 18 |
| 15 <style is="custom-style"> | 19 <style is="custom-style"> |
| 16 | 20 |
| 17 body { | 21 body { |
| 18 font-family: 'Roboto', 'Noto', sans-serif; | 22 font-family: 'Roboto', 'Noto', sans-serif; |
| 19 font-size: 14px; | 23 font-size: 14px; |
| 20 margin: 0; | 24 margin: 0; |
| 21 padding: 24px; | 25 padding: 24px; |
| 22 background-color: var(--paper-grey-50); | 26 background-color: var(--paper-grey-50); |
| (...skipping 26 matching lines...) Expand all Loading... |
| 49 | 53 |
| 50 @apply(--shadow-elevation-2dp); | 54 @apply(--shadow-elevation-2dp); |
| 51 } | 55 } |
| 52 | 56 |
| 53 .centered { | 57 .centered { |
| 54 max-width: 400px; | 58 max-width: 400px; |
| 55 margin-left: auto; | 59 margin-left: auto; |
| 56 margin-right: auto; | 60 margin-right: auto; |
| 57 } | 61 } |
| 58 | 62 |
| 63 code { |
| 64 color: var(--google-grey-700); |
| 65 } |
| 66 |
| 59 /* TODO: remove this hack and use horizontal-section-container instead */ | 67 /* TODO: remove this hack and use horizontal-section-container instead */ |
| 60 body > div.layout.horizontal.center-justified { | 68 body > div.layout.horizontal.center-justified { |
| 61 @apply(--layout-wrap); | 69 @apply(--layout-wrap); |
| 62 } | 70 } |
| 63 | 71 |
| 64 </style> | 72 </style> |
| OLD | NEW |