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

Side by Side Diff: chrome/browser/resources/app_list/start_page.css

Issue 186483004: Add a skeleton Start Page to the experimental app list. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ares_change_experimental_animation
Patch Set: rework Created 6 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 html, 5 html,
6 body, 6 body,
7 #start-page { 7 #start-page {
8 background-color: rgb(245, 245, 245); 8 background-color: rgb(251, 251, 251);
9 height: 100%; 9 height: 100%;
10 margin: 0; 10 margin: 0;
11 overflow: hidden; 11 overflow: hidden;
12 padding: 0; 12 padding: 0;
13 width: 100%; 13 width: 100%;
14 } 14 }
15 15
16 #start-page { 16 #start-page {
17 -webkit-align-items: stretch; 17 -webkit-align-items: stretch;
18 -webkit-flex-direction: column; 18 -webkit-flex-direction: column;
19 -webkit-justify-content: flex-start; 19 -webkit-justify-content: flex-start;
20 -webkit-user-select: none; 20 -webkit-user-select: none;
21 box-sizing: border-box; 21 box-sizing: border-box;
22 display: -webkit-flex; 22 display: -webkit-flex;
23 padding: 10px; 23 padding: 10px;
24 } 24 }
25 25
26 #logo {
27 height: 95px;
28 width: 269px;
29 }
30
31 #logo-wrapper {
32 text-align: center;
33 width: 100%;
34 }
35
26 <include src="recommended_apps.css"/> 36 <include src="recommended_apps.css"/>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698