OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polym
er.github.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polym
er.github.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/CO
NTRIBUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CO
NTRIBUTORS.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/P
ATENTS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
9 --> | 9 --> |
10 <!doctype html> | 10 <!doctype html> |
(...skipping 10 matching lines...) Expand all Loading... |
21 <link rel="import" href="../core-icons/core-icons.html"> | 21 <link rel="import" href="../core-icons/core-icons.html"> |
22 <link rel="import" href="paper-ripple.html"> | 22 <link rel="import" href="paper-ripple.html"> |
23 <link rel="import" href="../font-roboto/roboto.html"> | 23 <link rel="import" href="../font-roboto/roboto.html"> |
24 <link rel="import" href="../core-icon/core-icon.html"> | 24 <link rel="import" href="../core-icon/core-icon.html"> |
25 | 25 |
26 <style shim-shadowdom> | 26 <style shim-shadowdom> |
27 | 27 |
28 body { | 28 body { |
29 background-color: #f9f9f9; | 29 background-color: #f9f9f9; |
30 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; | 30 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; |
31 -webkit-user-select: none; | |
32 -moz-user-select: none; | |
33 -ms-user-select: none; | |
34 user-select: none; | |
35 -webkit-tap-highlight-color: rgba(0,0,0,0); | 31 -webkit-tap-highlight-color: rgba(0,0,0,0); |
36 -webkit-touch-callout: none; | 32 -webkit-touch-callout: none; |
37 } | 33 } |
38 | 34 |
39 section { | 35 section { |
40 padding: 30px 25px; | 36 padding: 30px 25px; |
41 } | 37 } |
42 | 38 |
43 section > * { | 39 section > * { |
44 margin: 10px | 40 margin: 10px |
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 <div class="card image"> | 405 <div class="card image"> |
410 | 406 |
411 <paper-ripple class="recenteringTouch" fit></paper-ripple> | 407 <paper-ripple class="recenteringTouch" fit></paper-ripple> |
412 | 408 |
413 </div> | 409 </div> |
414 | 410 |
415 </section> | 411 </section> |
416 | 412 |
417 </body> | 413 </body> |
418 </html> | 414 </html> |
OLD | NEW |