-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-deliverable.css
89 lines (78 loc) · 1.4 KB
/
wp-deliverable.css
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
81
82
83
84
85
86
87
88
89
.deliverable.container {
border: 1px solid #ddd;
background: #fcfcfc;
border-radius: 5px;
padding: 10px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
position: relative;
}
.deliverable .state-icon {
position: absolute;
right: 10px;
top: 10px;
width: 64px;
height: 64px;
}
.deliverable.container h2 {
color: #444;
padding: 0;
margin: 0;
margin-bottom: 10px;
}
.deliverable.notification {
color: #080;
background: #8f8;
border-radius: 5px;
padding: 10px;
border: 1px solid #080;
font-weight: bold;
}
.deliverable a {
color: #288;
font-weight: bold;
text-decoration: none;
}
.deliverable a:hover {
text-decoration: underline;
}
.deliverable.comment {
border: 1px solid #ddd;
background: #fcfcfc;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
margin-top: 20px;
margin-left: 68px;
position: relative;
min-height: 80px;
}
.deliverable.comment .avatar {
position: absolute;
left: -68px;
top: 0px;
}
.deliverable.comment .header {
border-radius: 5px;
background: #ddd;
padding: 10px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
color: #444;
}
.deliverable.comment .body {
padding: 10px;
}
.deliverable.review-comment {
width: 100%;
height: 100px;
}
.deliverable.group-tag {
background: #88f;
color: #fff;
padding-left: 5px;
padding-right: 5px;
font-weight: bold;
margin-top: 10px;
margin-right: 5px;
display: inline-block;
border-radius: 5px;
}