1div.dokuwiki div.wrap_border {
2	border:1px solid black;
3    padding:5px;
4    margin:2px;
5}
6
7div.dokuwiki div.wrap_border h1,
8div.dokuwiki div.wrap_border h2,
9div.dokuwiki div.wrap_border h3,
10div.dokuwiki div.wrap_border h4,
11div.dokuwiki div.wrap_border h5
12{
13    padding-top:0;
14    margin:0;
15}
16
17
18/*---------------------------------------------------------------------
19Simpler boxes
20
21From: https://www.dokuwiki.org/plugin:wrap:extensions
22
23CSS Compounds not possible yet (in the mpdf-version used by dw2pdf). The mpdf issue has apparently been solved
24be now see https://github.com/mpdf/mpdf/issues/538)
25
26Thus the css definitions can be changed as soon as the integration of the new mpdf version has been accomplished
27---------------------------------------------------------------------*/
28.wrap_nicebox {
29    margin-top: 17px;
30    margin-bottom: 17px;
31    margin-left: 5px;
32    width:90%;
33    padding: 0px 12px;
34    border-top-right-radius: 7px;
35    border-bottom-right-radius: 7px;
36    background: #f5f9f7;
37    border-left: 10px solid #B2EFFF;
38}
39
40.wrap_orange {
41    background: #fcf8f2;
42    color: #c97500;
43    border-left: 10px solid #fbaf43;
44}
45
46.wrap_red {
47    border-left: 10px solid #d9534f;
48    background: #fdf7f7;
49}
50
51.wrap_green {
52    border-left: 10px solid #8dde4e;
53    background: #f4ffee;
54}
55
56.wrap_yellow {
57    border-left: 10px solid #fff15a;
58    background: #fffded;
59}
60
61.wrap_blue {
62    border-left: 10px solid #4f8cdf;
63    background: #f5f7fa;
64}
65
66.wrap_purple {
67    border-left: 10px solid #c489ef;
68    background: #f1eef4;
69}
70
71.wrap_marine {
72    border-left: 10px solid #4bd29c;
73    background: #f5f9f7;
74}
75
76
77/*---------------------------------------------------------------------
78                              formalbox
79---------------------------------------------------------------------*/
80.wrap_formalbox {
81    padding: 10px 10px 10px 15px;
82
83    font-family: Courier;
84    font-size: 90%;
85
86    margin-bottom: 1em;
87
88    background: #f5f5f5;
89
90    border-radius: 5px;
91
92
93}
94
95.wrap_formalbox p {
96    margin:0;
97}
98
99.wrap_formalbox table {
100    width:100%;
101    margin-top:5px;
102    margin-bottom:5px;
103    font-size: 80%;
104}
105
106.wrap_formalbox table,
107.wrap_formalbox tbody,
108.wrap_formalbox tr,
109.wrap_formalbox td {
110    border:0px;
111    text-align:center;
112}
113
114.wrap_formalbox div {
115    margin:0 !important;
116}
117