blob: cffaa7ebbf7e0c8d23390322ecbfa0073d59f5b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.feedback {
padding: 10px;
margin: 10px;
min-height: 100px;
background: #f5f5f5;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
.sent {
border: 2px solid #86c543;
}
.not-sent {
border: 2px solid tomato;
}
|