-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
80 lines (78 loc) · 1.36 KB
/
main.css
File metadata and controls
80 lines (78 loc) · 1.36 KB
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
71
72
73
74
75
76
77
78
79
80
*{
width:600px;
margin:0 auto;
}
h1{
font-size: 19px;
text-align: center;
}
div{
border:1px solid #EEE;
}
button{
width:auto;
}
#buttonAdd{
width: 100%;
}
select{
width:30%;
margin: 5px 0 5px 0;
}
span{
width:20%;
display:inline-block;
}
.all input{
margin: 5px 0 5px 0;
width:75%;
}
#addInformation div button{
float:right;
display:block;
}
#buttonDel, #buttonEdit, #buttonSave, #buttonCancel, #buttonNotFixed, #buttonInProgress,#buttonReadyForTest,#buttonWontFixed{
text-decoration:underline;
background:white;
border:1px solid #EEE;
border-radius:3px;
}
#buttonStarted, #buttonNotStarted, #buttonDone{
vertical-align: bottom;
}
#buttonDel:hover, #buttonEdit:hover, #buttonSave:hover, #buttonCancel:hover{
text-decoration:underline;
background:#EEF;
border:1px solid #EEE;
border-radius:3px;
}
#buttonSave, #buttonCancel{
background: #a1ff14;
}
#editTaskName, #editTaskDesc{
width:70%;
}
#addInformation div{
width:auto;
border:1px solid #EEE;
padding:0 10px 25px 10px;
border-radius:5px;
margin:0 0 10px 0;
}
#txtTaskName{
font-weight: bold;
font-size: 18;
}
#txtTaskDesc{
margin: 6px;
font-size: 13px;
font-style: italic;
}
#txtTaskDiff{
font-size: 12px;
}
textarea{
margin: 5px 0 5px 0;
max-width: 75%;
min-width: 75%;
}