| 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="../../font-roboto/roboto.html"> | 10 <link rel="import" href="../../font-roboto/roboto.html"> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 .paper-font-display1, | 30 .paper-font-display1, |
| 31 .paper-font-headline, | 31 .paper-font-headline, |
| 32 .paper-font-title, | 32 .paper-font-title, |
| 33 .paper-font-subhead, | 33 .paper-font-subhead, |
| 34 .paper-font-body2, | 34 .paper-font-body2, |
| 35 .paper-font-body1, | 35 .paper-font-body1, |
| 36 .paper-font-caption, | 36 .paper-font-caption, |
| 37 .paper-font-menu, | 37 .paper-font-menu, |
| 38 .paper-font-button { | 38 .paper-font-button { |
| 39 font-family: 'Roboto', 'Noto', sans-serif; | 39 font-family: 'Roboto', 'Noto', sans-serif; |
| 40 -webkit-font-smoothing: antialiased; /* OS X subpixel AA bleed bug */ | |
| 41 } | 40 } |
| 42 | 41 |
| 43 .paper-font-code2, | 42 .paper-font-code2, |
| 44 .paper-font-code1 { | 43 .paper-font-code1 { |
| 45 font-family: 'Roboto Mono', 'Consolas', 'Menlo', monospace; | 44 font-family: 'Roboto Mono', 'Consolas', 'Menlo', monospace; |
| 46 -webkit-font-smoothing: antialiased; /* OS X subpixel AA bleed bug */ | |
| 47 } | 45 } |
| 48 | 46 |
| 49 /* Opt for better kerning for headers & other short labels. */ | 47 /* Opt for better kerning for headers & other short labels. */ |
| 50 .paper-font-display4, | 48 .paper-font-display4, |
| 51 .paper-font-display3, | 49 .paper-font-display3, |
| 52 .paper-font-display2, | 50 .paper-font-display2, |
| 53 .paper-font-display1, | 51 .paper-font-display1, |
| 54 .paper-font-headline, | 52 .paper-font-headline, |
| 55 .paper-font-title, | 53 .paper-font-title, |
| 56 .paper-font-subhead, | 54 .paper-font-subhead, |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 line-height: 20px; | 158 line-height: 20px; |
| 161 } | 159 } |
| 162 | 160 |
| 163 .paper-font-code1 { | 161 .paper-font-code1 { |
| 164 font-size: 14px; | 162 font-size: 14px; |
| 165 font-weight: 500; | 163 font-weight: 500; |
| 166 line-height: 20px; | 164 line-height: 20px; |
| 167 } | 165 } |
| 168 | 166 |
| 169 </style> | 167 </style> |
| OLD | NEW |