| Index: chrome/browser/resources/ntp_search/new_tab.css
|
| diff --git a/chrome/browser/resources/ntp_search/new_tab.css b/chrome/browser/resources/ntp_search/new_tab.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..85ed2d041fe15c96b07d5e6db4da4c343b1f61d7
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/ntp_search/new_tab.css
|
| @@ -0,0 +1,57 @@
|
| +/* 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. */
|
| +
|
| +/* -----------------------------------------------------------------------------
|
| + General Styles
|
| +----------------------------------------------------------------------------- */
|
| +
|
| +body {
|
| + background: whiteSmoke;
|
| + /* TODO(pedrosimonetti): Confirm with designers/engineers what do we want
|
| + * to do regarding font family, once AFAIK we want to use Arial always. */
|
| + font-family: Arial;
|
| + margin: 0;
|
| + overflow: hidden;
|
| + padding: 0;
|
| +}
|
| +
|
| +#card-slider-frame {
|
| + bottom: 0;
|
| + overflow: hidden;
|
| + position: absolute;
|
| + text-align: center;
|
| + width: 100%;
|
| +}
|
| +
|
| +#page-list {
|
| + display: -webkit-box;
|
| + position: static;
|
| +}
|
| +
|
| +#page-list-menu {
|
| + margin: 8px auto 30px;
|
| + text-align: center;
|
| +}
|
| +
|
| +/* -----------------------------------------------------------------------------
|
| + Dot List
|
| +----------------------------------------------------------------------------- */
|
| +
|
| +#dot-list {
|
| + color: #666;
|
| + height: 25px;
|
| + list-style: none;
|
| + margin: 0;
|
| + overflow: hidden;
|
| + padding: 0;
|
| + text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
|
| +}
|
| +
|
| +#dot-list li {
|
| + display: inline-block;
|
| + margin-left: 13px;
|
| + margin-right: 13px;
|
| + min-width: 55px; /* TODO(pedrosimonetti): Confirm value with Marcin. */
|
| + white-space: nowrap;
|
| +}
|
|
|