OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 #dot-list { | 5 #dot-list { |
6 height: 15px; | 6 height: 15px; |
7 margin: 10px 0 8px; | 7 margin: 0; |
8 overflow: hidden; | 8 overflow: hidden; |
9 padding: 0; | 9 padding: 0; |
10 } | 10 } |
11 | 11 |
12 .dot { | 12 .dot { |
13 -webkit-transition: color 200ms; | 13 -webkit-transition: color 200ms; |
14 color: #666; | 14 color: #666; |
15 cursor: pointer; | 15 cursor: pointer; |
16 display: inline-block; | 16 display: inline-block; |
17 font-size: 1.0833em; | 17 font-size: 1.0833em; |
18 margin: 0 1em; | 18 margin: 0 1em; |
19 min-width: 55px; | 19 min-width: 55px; |
20 outline: none; | 20 outline: none; |
21 text-shadow: 0 1px 0 rgba(255, 255, 255, .7); | 21 text-shadow: 0 1px 0 rgba(255, 255, 255, .7); |
22 white-space: nowrap; | 22 white-space: nowrap; |
23 } | 23 } |
24 | 24 |
25 .dot.selected { | 25 .dot.selected { |
26 color: rgb(221, 75, 57); | 26 color: rgb(221, 75, 57); |
27 } | 27 } |
OLD | NEW |