OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. */ |
| 4 |
| 5 /* ----------------------------------------------------------------------------- |
| 6 General Styles |
| 7 ----------------------------------------------------------------------------- */ |
| 8 |
| 9 body { |
| 10 background: whiteSmoke; |
| 11 /* TODO(pedrosimonetti): Confirm with designers/engineers what do we want |
| 12 * to do regarding font family, once AFAIK we want to use Arial always. */ |
| 13 font-family: Arial; |
| 14 margin: 0; |
| 15 overflow: hidden; |
| 16 padding: 0; |
| 17 } |
| 18 |
| 19 #card-slider-frame { |
| 20 bottom: 0; |
| 21 overflow: hidden; |
| 22 position: absolute; |
| 23 text-align: center; |
| 24 width: 100%; |
| 25 } |
| 26 |
| 27 #page-list { |
| 28 display: -webkit-box; |
| 29 position: static; |
| 30 } |
| 31 |
| 32 #page-list-menu { |
| 33 margin: 8px auto 30px; |
| 34 text-align: center; |
| 35 } |
| 36 |
| 37 /* ----------------------------------------------------------------------------- |
| 38 Dot List |
| 39 ----------------------------------------------------------------------------- */ |
| 40 |
| 41 #dot-list { |
| 42 color: #666; |
| 43 height: 25px; |
| 44 list-style: none; |
| 45 margin: 0; |
| 46 overflow: hidden; |
| 47 padding: 0; |
| 48 text-shadow: 0 1px 0 rgba(255, 255, 255, .7); |
| 49 } |
| 50 |
| 51 #dot-list li { |
| 52 display: inline-block; |
| 53 margin-left: 13px; |
| 54 margin-right: 13px; |
| 55 min-width: 55px; /* TODO(pedrosimonetti): Confirm value with Marcin. */ |
| 56 white-space: nowrap; |
| 57 } |
OLD | NEW |