task.css
887 Bytes
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
.card_status{
position: relative;
top:-15px;
left:-20px;
height:20px;
width:60px;
font-size: 12px;
text-align: center;
line-height: 20px;
border-radius: 5px;
}
.card_status.notcheck{
background-color: aqua;
color:blue;
}
.card_status.agree{
background-color: greenyellow;
color: green;
}
.card_status.dismiss{
background-color: pink;
color: red;
}
.card_btn a{
color:blue;
margin-right: 10px;
}
.card_btn a.agree{
color:green;
}
.card_btn a.dismiss{
color:red;
}
.card_btn{
float: right;
}
.box-card{
margin-bottom: 30px;
}
.card_title{
font-size: 18px;
font-weight: bold;
}
.card_row{
margin-top: 20px;
margin-bottom: 20px;
}
.card_grid{
height:20px;
line-height: 20px;
}
.card_grid.center{
text-align: center;
border-left: 2px solid black;
border-right: 2px solid black;
}
.card_grid.right{
text-align: right;
}