source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/greenstone/layout.css@ 30098

Last change on this file since 30098 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

File size: 2.3 KB
Line 
1/**
2 * Layout template matching the style of my website
3 *
4 * @author Andreas Gohr <[email protected]>
5 * @author Anika Henke <[email protected]>
6 * @author Christopher Arndt <[email protected]>
7 * @author Don Bowman <[email protected]>
8 */
9
10/* -------------- top row --------------- */
11div.dokuwiki #header {
12 color: __text_alt__;
13 background-color: __background_alt__;
14 font-family: "Times New Roman","Times",serif;
15 border: solid 1px __border__;
16 padding: 0.2em;
17 margin-bottom: 1em;
18}
19
20
21div.dokuwiki #header a {
22 color: __text_alt__;
23}
24
25div.dokuwiki #header_title {
26 font-weight: normal;
27 font-style: italic;
28/* color: __text__;*/
29}
30
31/* --------------- header bar ---------------- */
32div.dokuwiki #header_bar {
33/* color: __text__;*/
34 background-color: __background__;
35 clear: both;
36 border: solid 1px __border__;
37 height: 2em;
38 padding-top: 0.3em;
39 padding-left: 0.4em;
40 padding-right: 0.4em;
41}
42
43/* the site name */
44div.dokuwiki .logo {
45 font-size: 250%;
46 float: left;
47 text-align: left;
48 margin-top: 0.4em;
49 padding-bottom: 0.1em;
50 padding-left: 0.2em;
51 padding-right: 0.2em;
52}
53
54div.dokuwiki .logo a:link, .logo a:visited, .logo a:hover, .logo a:active {
55 font-weight: bold;
56 text-decoration:none;
57}
58
59/* the current page name */
60div.dokuwiki .pagename {
61/* color: __text__;*/
62 font-size: 150%;
63 font-weight: bold;
64 float: right;
65 text-align: right;
66 margin-top: 1em;
67 margin-right: 1em;
68}
69
70div.dokuwiki .bar__left {
71 padding-top: 0.3em;
72 float: left;
73 text-align: left;
74}
75
76div.dokuwiki .bar__right {
77 float: right;
78 text-align: right;
79}
80
81div.dokuwiki .tagline {
82 margin-left: 2em;
83 letter-spacing: 0.2em;
84 font-size: 120%;
85 font-weight: bold;
86}
87
88/* ---------- the sidebar ---------- */
89
90/* see "sidebar.css" */
91
92/* ---------- the content area (including the wiki document) ---------- */
93
94div.dokuwiki #content {
95 background-color: __background_alt__;
96 border: solid 1px __border__;
97 margin-top: 0px;
98 margin-bottom: 1em;
99 padding-top: 0.2em;
100 padding-bottom: 0.2em;
101 padding-left: 0.2em;
102 padding-right: 0.2em;
103}
104
105div.dokuwiki #page {
106 border: solid 1px __border__;
107 margin: 0px;
108 padding-top: 0.2em;
109 padding-bottom: 0.4em;
110 padding-left: 0.4em;
111 padding-right: 0.4em;
112}
113
114/* ------------- File Metadata ----------------------- */
115
116div.dokuwiki div.meta {
117 clear: both;
118 margin-top: 1em;
119 font-size: 70%;
120 text-align: right;
121}
122
Note: See TracBrowser for help on using the repository browser.