blob: ef1f71dd986e52834277c1306b8f901fa3941c6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This Source Code Form is "Incompatible With Secondary Licenses", as
* defined by the Mozilla Public License, v. 2.0. */
#login_autocomplete {
float: left;
}
#user_profile_table th {
text-align: right;
padding-right: 1em;
vertical-align: middle;
white-space: nowrap;
}
#user_profile_table .numeric {
text-align: right;
}
#user_profile_table .product_span {
white-space: nowrap;
}
#updated {
font-style: italic;
font-size: x-small;
}
#gravatar-container {
text-align: center;
font-size: x-small;
vertical-align: top;
padding-right: 15px;
}
#gravatar {
-moz-box-shadow: 2px 2px 5px #888;
-webkit-box-shadow: 2px 2px 5px #888;
box-shadow: 2px 2px 5px #888;
margin-bottom: 5px;
}
#what {
margin-top: 1em;
}
|