OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
6 html { | 6 html { |
7 font-family: segoe ui, arial, helvetica, sans-serif; | 7 font-family: segoe ui, arial, helvetica, sans-serif; |
8 font-size: 13px; | 8 font-size: 13px; |
9 height: 100%; | 9 height: 100%; |
10 } | 10 } |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 font-size: 13px; | 112 font-size: 13px; |
113 line-height: 20px; | 113 line-height: 20px; |
114 } | 114 } |
115 | 115 |
116 #promo-info-pane { | 116 #promo-info-pane { |
117 height: 186px; | 117 height: 186px; |
118 position: relative; | 118 position: relative; |
119 } | 119 } |
120 | 120 |
121 #promo-info-pane > * { | 121 #promo-info-pane > * { |
122 -webkit-transition: opacity .2s linear; | 122 -webkit-transition: opacity 200ms linear; |
123 opacity: 1; | 123 opacity: 1; |
124 position: absolute; | 124 position: absolute; |
125 } | 125 } |
126 | 126 |
127 #promo-info-pane > [hidden] { | 127 #promo-info-pane > [hidden] { |
128 display: inline-block; /* Override default user-agent styles. */ | 128 display: inline-block; /* Override default user-agent styles. */ |
129 opacity: 0; | 129 opacity: 0; |
130 } | 130 } |
OLD | NEW |