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

Side by Side Diff: chrome/common/extensions/docs/examples/api/topsites/magic8ball/newTab.css

Issue 9721013: Move topSites API out of experimental (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge Created 8 years, 9 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 unified diff | Download patch
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 5
6 html { 6 html {
7 background-color: #ddd; 7 background-color: #ddd;
8 } 8 }
9 9
10 #spacer { 10 #spacer {
11 height: 200px; 11 height: 200px;
12 } 12 }
13 13
14 #title { 14 #title {
15 color: #555; 15 color: #555;
16 font-size: 400%;
17 font-weight: bold; 16 font-weight: bold;
17 height: 200px;
18 vertical-align: middle; 18 vertical-align: middle;
19 } 19 }
20 20
21 #mostVisitedThumb { 21 #mostVisitedThumb {
22 display: inline-block; 22 background-repeat: no-repeat;
23 height: 132px; 23 height: 200px;
24 margin-left: 20px; 24 margin-left: 20px;
25 position: relative; 25 padding-left: 20px;
26 vertical-align: middle; 26 vertical-align: middle;
27 width: 212px; 27 width: 212px;
28 } 28 }
29
30 #mostVisitedThumb span {
31 background-repeat: no-repeat;
32 bottom: -23px;
33 padding-left: 20px;
34 position: absolute;
35 white-space: nowrap;
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698