blob: 7b6863a0f0d161979ad786bc5cf45b2d95f6da74 (
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
70
|
fieldset.project label
{
display: block;
font-size: 0.9em;
margin-bottom: 0.2em;
}
.projectInfo
{
width: 40%;
float: left;
}
.projectMembers
{
width: 40%;
float: left;
margin-left: 0.3em;
}
fieldset.project h2
{
background-color: #D2E8E8;
font-size: 0.8em;
color: #4169E1;
padding: 0.65em;
text-align: center;
background-image: url(bar.png);
background-repeat: repeat-x;
background-position: center;
}
.projectInfo div, .projectMembers div
{
margin: 0.7em 0;
}
.projectInfo div input, .projectInfo div.manager select
{
width: 15em;
}
.projectInfo .estimateHours input
{
width: 4em;
}
.projectInfo .description textarea
{
width: 17em;
height: 10em;
}
.projectMembers select
{
width: 15em;
height: 17em;
}
.actionButtons
{
float: left;
width: 90%;
padding: 0.65em;
text-align: center;
background-color: #D2E8E8;
background-image: url(bar.png);
background-repeat: repeat-x;
background-position: center;
}
|