OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 html { | |
7 font-family: 'segoe ui', 'arial', 'helvetica', 'sans-serif'; | |
8 font-size: 13px; | |
9 } | |
10 | |
11 #avatar-menu { | |
12 background-color: rgba(255, 255, 255, 0.75); | |
13 border: 1px solid rgba(0, 0, 0, 0.3); | |
14 height: 150px; | |
15 overflow: auto; | |
16 width: 337px; | |
17 } | |
18 | |
19 .avatar-button { | |
20 height: 38px; | |
21 padding: 4px; | |
22 width: 38px; | |
23 } | |
24 | |
25 .avatar-button-selected { | |
26 background-color: #bbcee9; | |
27 } | |
28 | |
29 #profile-name { | |
30 font-size: 125%; | |
31 } | |
32 | |
33 div.page > h3 { | |
34 color: #4b4b4b | |
35 font-size: 105%; | |
36 font-weight: bold; | |
37 } | |
38 | |
39 div > p { | |
40 color: #4b4b4b; | |
41 } | |
42 | |
43 .page * input[type="button"] { | |
44 min-height: 26px; | |
45 min-width: 87px; | |
46 } | |
47 | |
48 .overlay { | |
49 background: -webkit-linear-gradient(white, #ebebeb); | |
50 bottom: 0; | |
51 left: 0; | |
52 position: fixed; | |
53 right: 0; | |
54 top: 0; | |
55 } | |
56 | |
57 .action-area { | |
58 -webkit-box-align: center; | |
59 -webkit-box-orient: horizontal; | |
60 -webkit-box-pack: end; | |
61 display: -webkit-box; | |
62 margin-top: 20px; | |
63 } | |
64 | |
65 .button-strip { | |
66 -webkit-box-orient: horizontal; | |
67 display: -webkit-box; | |
68 } | |
69 | |
70 html[toolkit=views] .button-strip { | |
71 -webkit-box-direction: reverse; | |
72 } | |
73 | |
74 .button-strip > input { | |
75 -webkit-margin-start: 10px; | |
76 display: block; | |
77 } | |
78 | |
79 #new-profile-overlay { | |
80 margin-left: auto; | |
81 margin-right: auto; | |
82 margin-top: 66px; | |
83 padding: 10px; | |
84 width: 500px; | |
85 } | |
86 | |
87 #footer { | |
88 bottom: 0; | |
89 position: fixed; | |
90 width: 100%; | |
91 } | |
92 | |
93 #footer-content { | |
94 -webkit-box-align: center; | |
95 display: -webkit-box; | |
96 height: 49px; | |
97 } | |
98 | |
99 #footer-content > * { | |
100 margin: 0 9px; | |
101 } | |
102 | |
103 #outer-input-area { | |
104 width: 100%; | |
105 text-align: center; | |
106 } | |
107 | |
108 #inner-input-area { | |
109 display: inline-block; | |
110 text-align: left; | |
111 } | |
OLD | NEW |