OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 body { | 7 body { |
8 margin: 0; | 8 margin: 0; |
9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
10 font-family: Open Sans,Droid Sans Fallback,sans-serif; | 10 font-family: Open Sans,Droid Sans Fallback,sans-serif; |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
181 overlaps it) */ | 181 overlaps it) */ |
182 .gallery .arrow div{ | 182 .gallery .arrow div{ |
183 width: 105px; | 183 width: 105px; |
184 height: 193px; | 184 height: 193px; |
185 background-repeat: no-repeat; | 185 background-repeat: no-repeat; |
186 background-position: center center; | 186 background-position: center center; |
187 opacity: 0; | 187 opacity: 0; |
188 } | 188 } |
189 | 189 |
190 .gallery[tools] .arrow[active] div{ | 190 .gallery[tools] .arrow[active] div{ |
191 opacity: 0.17; | 191 opacity: 0.25; |
192 } | 192 } |
193 | 193 |
194 .gallery[tools] .arrow[active] div:hover{ | 194 .gallery[tools] .arrow[active] div:hover{ |
195 opacity: 1; | 195 opacity: 1; |
196 } | 196 } |
197 | 197 |
198 .gallery .arrow.left div{ | 198 .gallery .arrow.left div{ |
199 background-image: url(../../images/gallery/arrow_left.png); | 199 background-image: url(../../images/gallery/arrow_left.png); |
200 } | 200 } |
201 | 201 |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 } | 704 } |
705 | 705 |
706 .gallery .share-menu > div:hover { | 706 .gallery .share-menu > div:hover { |
707 background-color: rgba(240,240,240,1); | 707 background-color: rgba(240,240,240,1); |
708 } | 708 } |
709 | 709 |
710 .gallery .share-menu > div > img { | 710 .gallery .share-menu > div > img { |
711 margin-right: 5px; | 711 margin-right: 5px; |
712 display: block; | 712 display: block; |
713 } | 713 } |
OLD | NEW |