OLD | NEW |
| (Empty) |
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. */ | |
4 | |
5 .recommended-apps { | |
6 -webkit-align-items: center; | |
7 -webkit-justify-content: space-around; | |
8 display: -webkit-flex; | |
9 padding: 0 10px; | |
10 } | |
11 | |
12 .app { | |
13 background-position: center 5px; | |
14 background-repeat: no-repeat; | |
15 background-size: 48px; | |
16 color: rgb(90, 90, 90); | |
17 cursor: default; | |
18 font-size: 11px; | |
19 font-weight: bold; | |
20 height: 20px; | |
21 overflow: hidden; | |
22 padding-top: 58px; | |
23 text-align: center; | |
24 text-overflow: ellipsis; | |
25 white-space: nowrap; | |
26 width: 88px; | |
27 } | |
28 | |
29 .app:hover { | |
30 background-color: rgb(230, 230, 230); | |
31 } | |
OLD | NEW |