1/* colour scheme for Taratasy template */
2
3/* MIXINS and PARAMS */
4
5@link-visited: #5F4A1E;
6@button-text: #353D48;
7@header-bottom: #CFDBEC;
8@tr_background: #EAF0F0;
9@wikilink: #14273E;
10
11
12.background(@start, @finish) {
13    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, @start), color-stop(100%, @finish));
14    background: -webkit-linear-gradient(top, @start 0%, @finish 100%);
15    background: -moz-linear-gradient(top, @start 0%, @finish 100%);
16    background: -o-linear-gradient(top, @start 0%, @finish 100%);
17    background: -ms-linear-gradient(top, @start 0%, @finish 100%);
18    background: linear-gradient(top, @start 0%, @finish 100%);
19}
20
21
22
23/* _edit.css --- HIGHLIGHTING */
24
25.dokuwiki .section_highlight {
26    background-color: #F9F9F9 !important;
27}
28
29div.insitu-footnote {
30    .background(#FDFCFA, #F5F2EC);
31}
32
33.dokuwiki div.tocheader {
34    color: __text_neu__;
35}
36
37.dokuwiki #toc__inside a.toc {
38    /*color: #805C78 !important;*/
39}
40
41
42/* basic.css */
43
44a:link, a:visited {
45    color: @link-visited;
46}
47
48input[type=submit], input.button, button {
49    background-color: @tr-background;
50    color: @button-text;
51}
52
53input[type=submit]:hover, input.button:hover, button:hover {
54    background-color: #CEDFFF;
55}
56
57input[type=text] {
58    color: @button-text;
59}
60
61/* content.css --- TABLES */
62
63.dokuwiki table.inline {
64    th {
65        background-color: #CEDFFF;
66    }
67    tr:hover td, tr:hover th {
68        background-color: @tr-background;
69    }
70}
71
72/* design.css */
73
74
75/* HEADER */
76
77#dokuwiki__header {
78
79    .row {
80        border-bottom: solid 1px @header-bottom;
81        .background(#E7EDF5, @header-bottom);
82    }
83
84    h1 {
85        a {
86            color: #BCCFEA;
87            /*text-shadow:0 1px 2px rgba(17,38,67,0.5);*/
88            text-shadow: 0px 1px 0px rgba(255,255,255,.3), 0px -1px 0px rgba(0,0,0,.45);
89
90            &:hover {
91                color: #A6C1E7;
92            }
93        }
94    }
95
96    div.breadcrumbs {
97        color: #A2A2A2;
98        .background(#FEFEFE, #E8E8E8);
99        a,
100        .bchead {
101            color: #A2A2A2;
102        }
103        .bchead {
104            font-style: normal;
105        }
106    }
107
108    form.search {
109        color: @button-text;
110    }
111}
112
113#dokuwiki__footer .doc {
114    color: #CCCCCC;
115}
116
117
118/* TOOLS */
119/* USERTOOLS, PAGETOOLS, SITETOOLS */
120
121#dokuwiki__usertools,
122#dokuwiki__pagetools,
123#dokuwiki__sitetools {
124    a.wikilink1,
125    a.wikilink2 {
126        color: @wikilink;
127    }
128}
129
130#dokuwiki__pagetools,
131#dokuwiki__pagetools ul {
132    background: none;
133    border: none;
134}
135
136input[type=submit],
137input.button, button,
138#dokuwiki__usertools a,
139#dokuwiki__sitetools a,
140#dokuwiki__pagetools a,
141.tools li .user {
142    color: #777777;
143    text-shadow: 0 1px 0 #FFFFFF;
144    text-decoration: none;
145}
146
147.menu-background() {
148    border-color: @ini_border;
149    .background(#E7EDF5, @header-bottom);
150}
151
152#dokuwiki__usertools,
153#dokuwiki__sitetools {
154    .menu-background();
155    border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
156    text-decoration: none;
157    a:hover {
158        color: @link-visited;
159    }
160}
161
162#dokuwiki__pagetools,
163#dokuwiki__usertools,
164#dokuwiki__sitetools {
165    li {
166        .menu-background();
167    }
168    a {
169        color: @button-text;
170    }
171    a:hover,
172    li:hover {
173        .background(#C5D0DF, #AAB4C2);
174        text-decoration: none;
175    }
176}
177
178#dokuwiki__pagetools {
179    a {
180        text-decoration: none;
181    }
182}
183
184.tool li .user {
185    color: #A69DA4;
186}
187