OLD | NEW |
---|---|
(Empty) | |
1 html { | |
2 font-family: segoe ui, arial, helvetica, sans-serif; | |
James Hawkins
2011/06/30 23:02:58
Put the font family names in single quotes.
sail
2011/07/01 01:16:18
Done.
| |
3 font-size: 13px; | |
4 } | |
5 | |
6 #avatar-menu { | |
7 width: 337px; | |
James Hawkins
2011/06/30 23:02:58
Alphabetize properties.
sail
2011/07/01 01:16:18
Done.
| |
8 height: 150px; | |
9 overflow: auto; | |
10 border: 1px solid rgba(0, 0, 0, 0.3); | |
11 background-color: rgba(255, 255, 255, 0.75); | |
12 } | |
13 | |
14 .avatar-button { | |
15 width: 38px; | |
16 height: 38px; | |
17 padding: 4px; | |
18 } | |
19 | |
20 #profile-name { | |
21 font-size: 125%; | |
22 } | |
23 | |
24 div.page > h3 { | |
25 font-size: 105%; | |
26 font-weight: bold; | |
27 color: rgb(75, 75, 75); | |
James Hawkins
2011/06/30 23:02:58
Use #aabbcc instead.
sail
2011/07/01 01:16:18
Done.
| |
28 } | |
29 | |
30 div > p { | |
31 color: rgb(75, 75, 75); | |
32 } | |
33 | |
34 .page * input[type="button"], | |
35 .page * input[type="button"] { | |
36 min-height: 26px; | |
37 min-width: 87px; | |
38 } | |
39 | |
40 .overlay { | |
41 position: fixed; | |
42 bottom: 0; | |
43 left: 0; | |
44 right: 0; | |
45 top: 0; | |
46 background: -webkit-linear-gradient(white, rgb(235, 235, 235)); | |
47 } | |
48 | |
49 .action-area { | |
50 -webkit-box-align: center; | |
51 -webkit-box-orient: horizontal; | |
52 -webkit-box-pack: end; | |
53 display: -webkit-box; | |
54 } | |
55 | |
56 .button-strip { | |
57 -webkit-box-orient: horizontal; | |
58 display: -webkit-box; | |
59 } | |
60 | |
61 html[toolkit=views] .button-strip { | |
62 -webkit-box-direction: reverse; | |
63 } | |
64 | |
65 .button-strip > input { | |
66 -webkit-margin-start: 10px; | |
67 display: block; | |
68 } | |
69 | |
70 #new-profile-overlay { | |
71 padding: 10px; | |
72 width: 500px; | |
73 margin-left: auto; | |
74 margin-right: auto; | |
75 margin-top: 66px; | |
76 } | |
77 | |
78 #footer { | |
79 bottom: 0; | |
80 position: fixed; | |
81 width: 100%; | |
82 } | |
83 | |
84 #footer-content { | |
85 display: -webkit-box; | |
86 height: 49px; | |
87 -webkit-box-align: center; | |
James Hawkins
2011/06/30 23:02:58
Move webkit property to the top of the block.
sail
2011/07/01 01:16:18
Done.
| |
88 } | |
89 | |
90 #footer-content > * { | |
91 margin: 0 9px; | |
92 } | |
OLD | NEW |