Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3285)

Unified Diff: chrome/browser/resources/ntp_search/new_tab.css

Issue 10829131: Refactoring NTP5: new implementation of TilePage and MostVisitedPage (which now inherits from Thumb… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Manually fixing mock_data_autogen.js lines with more than 80 chars. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+}
« no previous file with comments | « chrome/browser/resources/ntp_search/most_visited_page.js ('k') | chrome/browser/resources/ntp_search/new_tab.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698