OLD | NEW |
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 { | |
8 background-color: rgb(245, 245, 245); | 7 background-color: rgb(245, 245, 245); |
9 height: 100%; | 8 height: 100%; |
10 margin: 0; | 9 margin: 0; |
11 overflow: hidden; | 10 overflow: hidden; |
12 padding: 0; | 11 padding: 0; |
13 width: 100%; | 12 width: 100%; |
14 } | 13 } |
15 | 14 |
16 #start-page { | |
17 -webkit-align-items: stretch; | |
18 -webkit-flex-direction: column; | |
19 -webkit-justify-content: flex-start; | |
20 -webkit-user-select: none; | |
21 box-sizing: border-box; | |
22 display: -webkit-flex; | |
23 padding: 10px; | |
24 } | |
25 | |
26 #logo { | 15 #logo { |
27 background-image: -webkit-image-set( | 16 background-image: -webkit-image-set( |
28 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG) 1x, | 17 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG) 1x, |
29 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG@2x) 2x); | 18 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG@2x) 2x); |
30 height: 95px; | 19 height: 95px; |
31 margin: auto; | 20 margin: auto; |
32 width: 269px; | 21 width: 269px; |
33 } | 22 } |
34 | |
35 <include src="recommended_apps.css"> | |
OLD | NEW |