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 -webkit-user-select: none; |
7 background-color: rgb(245, 245, 245); | 8 background-color: rgb(245, 245, 245); |
8 height: 100%; | 9 height: 100%; |
9 margin: 0; | 10 margin: 0; |
10 overflow: hidden; | 11 overflow: hidden; |
11 padding: 0; | 12 padding: 0; |
12 width: 100%; | 13 width: 100%; |
13 } | 14 } |
14 | 15 |
15 #doodle { | 16 #doodle { |
16 display: none; | 17 display: none; |
17 margin: auto; | 18 justify-content: center; |
18 } | 19 } |
19 | 20 |
20 #default_logo { | 21 #default_logo { |
21 background-image: -webkit-image-set( | 22 background-image: -webkit-image-set( |
22 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG) 1x, | 23 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG) 1x, |
23 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG@2x) 2x); | 24 url(chrome://theme/IDR_LOCAL_NTP_IMAGES_LOGO_PNG@2x) 2x); |
24 height: 95px; | 25 height: 95px; |
25 margin: auto; | 26 margin: auto; |
26 width: 269px; | 27 width: 269px; |
27 } | 28 } |
28 | 29 |
29 #logo_container { | 30 #logo_container { |
30 bottom: 0; | 31 bottom: 0; |
31 position: absolute; | 32 position: absolute; |
32 width: 100%; | 33 width: 100%; |
33 } | 34 } |
OLD | NEW |