blob: c03e6fd429ef2f9d8a08096ced902e5c19b57fe4 (
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
49
50
51
52
53
54
55
56
57
58
59
|
/** Styles for the new-user-dialog overlay box */
#newuseroverlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10000;
background: rgba(0,0,0,0.5) !important;
background: #333;
/** IE hacks */
filter: alpha(opacity=90);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
width: expression(document.documentElement.clientWidth+'px');
height: expression(document.documentElement.clientHeight+'px');
}
#newuseroverlay h3 {
color: #333;
font-size: normal;
margin-top: 0.5em;
margin-bottom: 0;
}
#newuseroverlay p.hint {
margin-top: 0.5em;
font-style: italic;
}
#newuseroverlay form {
width: 32em;
margin: 8em auto;
padding: 1em 2em;
background: #F6F6F6;
border: 2px solid #555;
border-radius: 6px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
}
#newuseroverlay table td.title
{
color: #666;
text-align: right;
padding-right: 1em;
white-space: nowrap;
}
#newuseroverlay table td input
{
width: 20em;
}
#newuseroverlay .formbuttons {
margin-top: 1.5em;
text-align: center;
}
|