blob: 2ba8b7ffec8e86a0ae2c351116f07a0ce8f563ab (
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
60
61
62
63
64
65
66
67
68
69
|
/* Override the left-hand position of the H2 header */
h2 {
margin-left: 0px !important;
}
/* A box for displaying values */
.vb {
position: relative;
margin: 0 0 10px 0;
padding: 7px 10px 7px 10px;
background: #FFFFFF;
-webkit-border-radius: 10px;
border: 1px solid #999999;
font-size: 14px;
color: #336699;
}
/* Smaller li's for double-lined display */
li.d {
font-size: 14px !important;
font-weight: normal !important;
}
/* Notes for li's */
span.n {
font-size: 14px !important;
font-weight: normal !important;
color: gray !important;
}
/* Colored values */
.cv {
color: #333399;
}
/* A group header on a dialogue */
.dh {
position: relative;
display: block;
width: 100%;
top: -10px;
margin-bottom: -2px;
margin-left: -10px;
border-top: 1px solid #7d7d7d;
border-bottom: 1px solid #999999;
padding-right: 10px;
padding-left: 10px;
background: url(../iui/listGroup.png) repeat-x;
font-size: 17px;
font-weight: bold;
text-shadow: rgba(0, 0, 0, 0.4) 0 1px 0;
color: #FFFFFF;
}
/* li image */
.mi {
margin-top: -4px;
padding-right: 5px;
float: left;
}
/* Textarea */
textarea {
width: 95%;
height: 100px;
border: 0px;
padding: 5px;
}
|