1/*
2 * code plugin extension - style additions
3 *
4 * @author  Christopher Smith  chris@jalakai.co.uk
5 * @link    http://wiki.jalakai.co.uk/dokuwiki/doku.php/tutorials/codeplugin
6 */
7
8/* layout */
9div.code, div.file {
10/*  height: 450px;*/
11  clear: both;
12  width: 92%;
13  margin: 1em auto;
14  border: 1px solid;
15  padding: 4px;
16}
17
18div.code p, div.file p {
19  font-size: 90%;
20  margin: 0;
21  padding: 2px;
22}
23
24div.code pre.code, div.file pre.file {
25  margin: 4px 0 0 0;
26}
27
28/* colours */
29div.code {
30  border-color:  #bbd;
31  background: #e4ecf8;
32}
33
34div.code p {
35  background: #cad0ee;
36}
37div.code pre {
38/*  height: 400px;
39  overflow: auto;*/
40}
41div.file {
42  border-color: #dbb;
43  background: #f8ece4;
44}
45
46div.file p {
47  background: #eed0ca;
48}
49
50div.file pre.file {
51  background: #fdf4ec;
52  border-color: #dbb;
53}
54
55/* end code plugin style additions */