1/**
2 * Tableless Layout for default template
3 *
4 * @author Andreas Gohr <andi@splitbrain.org>
5 * @author moraes <moraes@tipos.com.br>
6 */
7div.dokuwiki #content {
8  padding:20px;
9}
10div.dokuwiki .stylehead {
11 background:#000;
12 padding-bottom:8px;
13}
14
15
16/* -------------- top row --------------- */
17div.dokuwiki .header {
18  padding: 3px 0 0 2px;
19  width:800px;
20  margin:0 auto;
21}
22
23div.dokuwiki .pagename {
24  float: left;
25  font-size: 200%;
26  font-weight: bolder;
27  color: __background_alt__;
28  text-align: left;
29  vertical-align: middle;
30}
31
32div.dokuwiki .pagename a {
33  color: #edf3fe !important;
34  text-decoration: none !important;
35}
36
37div.dokuwiki .logo {
38  float: right;
39  font-size: 220%;
40  font-weight: bolder;
41  text-align: right;
42  vertical-align: middle;
43}
44
45div.dokuwiki .logo a {
46  color: __background_alt__ !important;
47  text-decoration: none !important;
48  font-variant: small-caps;
49  letter-spacing: 2pt;
50}
51
52/* ---------------  top and bottom bar ---------------- */
53div.dokuwiki .bar {
54  background: #edf3fe;
55  padding: 5px 10px;
56  clear: both;
57}
58
59div.dokuwiki .bar-left {
60  float: left;
61}
62
63div.dokuwiki .bar-right {
64  float: right;
65  text-align: right;
66}
67
68div.dokuwiki #bar__bottom {
69  border-bottom: 1px solid __border__;
70  border-bottom: 0px;
71  margin-bottom: 0px;
72  background: #f5f5f5;
73  border-top: 1px solid #eee;
74  margin-top: 10px;
75}
76div.dokuwiki .breadcrumbs {
77margin-bottom:10px;
78}
79/* ------------- File Metadata ----------------------- */
80
81div.dokuwiki .stylefoot {
82  width:800px;
83  margin:0px auto;
84  background-color: #fff;
85}
86
87div.dokuwiki div.meta {
88  clear: both;
89  margin-top: 1em;
90  color: #ccc;
91  font-size: 70%;
92  padding:10px 10px 0 10px;
93}
94
95div.dokuwiki div.meta div.user {
96  float: left;
97}
98
99div.dokuwiki div.meta div.doc {
100  text-align: right;
101}
102
103#copy {
104  width:800px;
105  margin:0.5em auto;
106  color:#999;
107  font-size: 50%;
108}
109#copy a:link, #copy a:visited {
110  color:#888;
111  background:#ccc;
112  text-decoration:none;
113}
114#copy a:hover, #copy a:active {
115  color:#fff;
116  background:#111;
117  text-decoration:none;
118}