blob: 6392101355af7237a99460e780bfbd03e53d9828 (
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
|
.feedback {
position: relative;
padding: 10px;
margin: 15px 10px;
min-height: 100px;
background: #f5f5f5;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
.timestamp {
position: absolute;
right: 55px;
top: 10px;
color: #aaaaaa;
}
.sent {
border: 2px solid #86c543;
}
.not-sent {
border: 2px solid tomato;
}
.btn-reply {
position: absolute;
right: 10px;
bottom: 10px;
padding: 5px;
background: brown;
}
.btn-reply a{
text-decoration: none;
color: #ffffff;
}
.delete {
position: absolute;
top: 10px;
right: 10px;
}
|