blob: aabc3e623def968f00d90a2e21a7b504f981ed0d [file] [log] [blame]
Tang Cheng60ba8032016-06-20 15:31:17 +08001/** Callout Styles */
2
3.bs-callout {
4 padding: 20px;
5 margin: 20px 0;
6 border: 1px solid #eee;
7 border-left-width: 5px;
8 border-radius: 3px;
9}
10.bs-callout h4,
11.bs-callout .fa {
12 margin-top: 0;
13 margin-bottom: 5px;
14}
15.bs-callout p:last-child {
16 margin-bottom: 0;
17}
18.bs-callout code {
19 border-radius: 3px;
20}
21.bs-callout+.bs-callout {
22 margin-top: -5px;
23}
24.bs-callout-default {
25 border-left-color: #777;
26}
27.bs-callout-default h4,
28.bs-callout-default .fa {
29 color: #777;
30}
31.bs-callout-primary {
32 border-left-color: #428bca;
33}
34.bs-callout-primary h4,
35.bs-callout-primary .fa {
36 color: #428bca;
37}
38.bs-callout-success {
39 border-left-color: #5cb85c;
40}
41.bs-callout-success h4,
42.bs-callout-success .fa {
43 color: #5cb85c;
44}
45.bs-callout-danger {
46 border-left-color: #d9534f;
47}
48.bs-callout-danger h4,
49.bs-callout-danger .fa {
50 color: #d9534f;
51}
52.bs-callout-warning {
53 border-left-color: #f0ad4e;
54}
55.bs-callout-warning h4,
56.bs-callout-warning .fa {
57 color: #f0ad4e;
58}
59.bs-callout-info {
60 border-left-color: #5bc0de;
61}
62.bs-callout-info h4,
63.bs-callout-info .fa {
64 color: #5bc0de;
65}