OLD | NEW |
| (Empty) |
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
2 * Use of this source code is governed by a BSD-style license that can be | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 html, | |
7 body { | |
8 height: 100%; | |
9 margin: 0; | |
10 overflow: hidden; | |
11 padding: 0; | |
12 width: 100%; | |
13 } | |
14 | |
15 #page { | |
16 -webkit-box-align: center; | |
17 -webkit-box-pack: center; | |
18 /* Delay the login screen for 2 seconds then fade it in. */ | |
19 -webkit-transition: opacity 1s; | |
20 background: white; | |
21 display: -webkit-box; | |
22 height: 100%; | |
23 opacity: 0; | |
24 position: absolute; | |
25 width: 100%; | |
26 } | |
27 | |
28 #content { | |
29 -webkit-box-align: center; | |
30 -webkit-box-orient: vertical; | |
31 -webkit-box-pack: center; | |
32 display: -webkit-box; | |
33 position: relative; | |
34 } | |
35 | |
36 #header { | |
37 -webkit-padding-start: 108px; | |
38 background: left center no-repeat; | |
39 background-size: 96px; | |
40 color: #666; | |
41 display: -webkit-box; | |
42 font-size: 48px; | |
43 height: 96px; | |
44 line-height: 96px; | |
45 } | |
46 | |
47 #launch-text { | |
48 color: #666; | |
49 font-size: 18px; | |
50 padding-bottom: 50px; | |
51 padding-top: 50px; | |
52 } | |
53 | |
54 #spinner { | |
55 height: 32px; | |
56 width: 32px; | |
57 } | |
58 | |
59 #shortcut-info { | |
60 bottom: 50px; | |
61 color: gray; | |
62 left: 0; | |
63 position: absolute; | |
64 right: 0; | |
65 text-align: center; | |
66 } | |
OLD | NEW |