OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 /* Set the global 'box-sizing' state to 'border-box'. | 5 /* Set the global 'box-sizing' state to 'border-box'. |
6 * *::after and *::before used to select pseudo-elements not selectable by *. */ | 6 * *::after and *::before used to select pseudo-elements not selectable by *. */ |
7 | 7 |
8 *, | 8 *, |
9 *::after, | 9 *::after, |
10 *::before { | 10 *::before { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 } | 72 } |
73 | 73 |
74 /* Base typography. */ | 74 /* Base typography. */ |
75 | 75 |
76 body, | 76 body, |
77 html { | 77 html { |
78 font-size: 14px; | 78 font-size: 14px; |
79 line-height: 1.4; | 79 line-height: 1.4; |
80 text-rendering: optimizeLegibility; | 80 text-rendering: optimizeLegibility; |
81 overflow-x: hidden; | 81 overflow-x: hidden; |
| 82 -webkit-overflow-scrolling: touch; |
82 } | 83 } |
83 | 84 |
84 /* Classes for light, dark and sepia themes. | 85 /* Classes for light, dark and sepia themes. |
85 * Must agree with classes returned by useTheme() in dom_distiller_viewer.js | 86 * Must agree with classes returned by useTheme() in dom_distiller_viewer.js |
86 * and with CSS class constants in viewer.cc */ | 87 * and with CSS class constants in viewer.cc */ |
87 | 88 |
88 .light { | 89 .light { |
89 color: #333; | 90 color: #333; |
90 background-color: #FFF; | 91 background-color: #FFF; |
91 } | 92 } |
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
672 border-color: rgb(250,36,36); | 673 border-color: rgb(250,36,36); |
673 } | 674 } |
674 | 675 |
675 #loader.red .circle.red .mask.first .mover { | 676 #loader.red .circle.red .mask.first .mover { |
676 background-color: rgb(33,89,189); | 677 background-color: rgb(33,89,189); |
677 } | 678 } |
678 | 679 |
679 #loader.red .circle.red .mask.second .mover { | 680 #loader.red .circle.red .mask.second .mover { |
680 background-color: rgb(250,36,36); | 681 background-color: rgb(250,36,36); |
681 } | 682 } |
OLD | NEW |