blob: b5a51b3dc015bcfbb5bdb5d5bc2cb20a207daff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
.tile-view {
-webkit-box-align: center;
-webkit-box-orient: horizontal;
-webkit-box-pack: start;
display: -webkit-box;
overflow-x: scroll;
overflow-y: hidden;
position: relative;
}
.tile-box {
-webkit-transition: all ease 300ms;
background: gray;
border: solid 1px red;
display: block;
position: absolute;
}
.tile-box > img {
height: 100%;
width: 100%;
}
|