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
| .msg {
| font-size: 14px;
| }
|
| #msg-div {
| position: absolute;
| left: 50%;
| top: 10px;
| width: 400px;
| margin-left: -200px;
| z-index: 20000;
| }
|
| #msg-div .msg {
| border-radius: 8px;
| -moz-border-radius: 8px;
| background: #F6F6F6;
| border: 2px solid #ccc;
| margin-top: 2px;
| padding: 10px 15px;
| color: #555;
| }
|
| #msg-div .msg h3 {
| margin: 0 0 8px;
| font-weight: bold;
| font-size: 15px;
| }
|
| #msg-div .msg p {
| margin: 0;
| }
|
|