| 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 <link rel="import" href="../paper-styles-classes.html"> | 10 <link rel="import" href="../paper-styles-classes.html"> |
| 11 | 11 |
| 12 <!-- | 12 <!-- |
| 13 A set of base styles that are applied to the document and standard elements that | 13 A set of base styles that are applied to the document and standard elements that |
| 14 match the Material Design spec. | 14 match the Material Design spec. |
| 15 --> | 15 --> |
| 16 <style> | 16 <style> |
| 17 /* | 17 /* |
| 18 Note that there is a lot of style duplication here. The hope is that the Polymer | 18 Note that there is a lot of style duplication here. The hope is that the Polymer |
| 19 0.8 styling solution will allow for inheritance of properties so that we can | 19 0.8 styling solution will allow for inheritance of properties so that we can |
| 20 eventually avoid it. | 20 eventually avoid it. |
| 21 */ | 21 */ |
| 22 | 22 |
| 23 /* Mixins */ | 23 /* Mixins */ |
| 24 | 24 |
| 25 /* [paper-font] */ | 25 /* [paper-font] */ |
| 26 body { | 26 body { |
| 27 font-family: 'Roboto', 'Noto', sans-serif; | 27 font-family: 'Roboto', 'Noto', sans-serif; |
| 28 -webkit-font-smoothing: antialiased; /* OS X subpixel AA bleed bug */ | |
| 29 } | 28 } |
| 30 | 29 |
| 31 /* [paper-font=display2] */ | 30 /* [paper-font=display2] */ |
| 32 h1 { | 31 h1 { |
| 33 font-size: 45px; | 32 font-size: 45px; |
| 34 font-weight: 400; | 33 font-weight: 400; |
| 35 letter-spacing: -.018em; | 34 letter-spacing: -.018em; |
| 36 line-height: 48px; | 35 line-height: 48px; |
| 37 } | 36 } |
| 38 | 37 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 | 86 |
| 88 h1, h2, h3, h4, h5, h6, a { | 87 h1, h2, h3, h4, h5, h6, a { |
| 89 text-rendering: optimizeLegibility; | 88 text-rendering: optimizeLegibility; |
| 90 } | 89 } |
| 91 | 90 |
| 92 a { | 91 a { |
| 93 text-decoration: none; | 92 text-decoration: none; |
| 94 } | 93 } |
| 95 | 94 |
| 96 </style> | 95 </style> |
| OLD | NEW |