blob: 0ad372e75f1488ebad267adc645128fd0f2f330a [file] [log] [blame]
Nils Diewald5d1ffb42014-05-21 17:45:34 +00001@charset "utf-8";
2body, html {
3 color: #666;
4 font-family: verdana, tahoma, arial;
5 text-shadow: 1px 1px rgba(255, 255, 255, 0.4);
Nils Diewald02df9912014-06-03 16:08:07 +00006 margin: 0;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00007}
8
Nils Diewald02df9912014-06-03 16:08:07 +00009#top {
10 background-color: #7ba400;
Nils Diewald33e15552014-06-13 19:38:37 +000011 padding: 0pt;
12 padding-top: 10px;
Nils Diewald02df9912014-06-03 16:08:07 +000013 position: relative;
Nils Diewald33e15552014-06-13 19:38:37 +000014 height: 70px;
15 padding-left: 30px;
Nils Diewald02df9912014-06-03 16:08:07 +000016}
17
18#button-right {
19 position: absolute;
20 right: 15px;
21 top: 15px;
22}
23
24input, button {
25 border: 2px solid white;
26 padding: 3px;
27 font-size: 11pt;
28}
29
30form {
31 margin-left: 235px;
32 margin-top:10px
Nils Diewald5d1ffb42014-05-21 17:45:34 +000033}
34
35form input[type=search] {
36 width: 50%;
37}
38
39a {
40 text-decoration: none;
41}
42
Nils Diewald02df9912014-06-03 16:08:07 +000043p.found {
Nils Diewald5d1ffb42014-05-21 17:45:34 +000044 font-size: 10pt;
45 padding: 0;
46 margin: 0;
47}
48
49p.found {
50 text-align: right;
51}
52
Nils Diewald02df9912014-06-03 16:08:07 +000053#pagination {
54 position: fixed;
55 right: 20px;
56 bottom: 10px;
57 z-index: 800;
58}
59
60#pagination span {
61 display: inline-block;
62 background-color: #ddd;
63 margin: 2pt;
64 height: 1.5em;
65 padding-left: .5em;
66 padding-right: .5em;
67 line-height: 1.5em;
68 text-align: center;
69 border-width: 2px;
70 border-style: solid;
71 border-color: #999;
72 box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
73}
74
75#pagination a {
76 text-shadow: 1px 1px rgba(255, 255, 255, 0.9);
77}
78
79#pagination a[rel=self] span {
80 border-color: #ffa500;
81 background-color: #f4eebb;
82 color: #ff8000;
83}
84
85#pagination a[href] {
86 color: #7ba400;
87}
88
89#pagination a[href] span:hover {
90 background-color: #7ba400;
91 border-color: #496000;
92 color: #496000;
93 text-shadow: none;
Nils Diewald5d1ffb42014-05-21 17:45:34 +000094}
95
96#total-results {
97 color: #c1002b;
98}
99
Nils Diewald2329e1d2014-06-12 16:07:57 +0000100code.query {
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000101 background-color: #f4eebb;
102 display: block;
103 border-style: solid;
104 border-color: #ffa500;
Nils Diewald02df9912014-06-03 16:08:07 +0000105 font-size: 12pt;
106 padding: 2pt;
107 color: #ff8000;
108 text-shadow: 1px 1px rgba(255, 255, 255, 0.9);
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000109 border-width: 2px;
Nils Diewald02df9912014-06-03 16:08:07 +0000110 margin: 0;
Nils Diewald2329e1d2014-06-12 16:07:57 +0000111 margin-bottom: 5pt;
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000112 cursor: pointer;
113}
114
Nils Diewald2329e1d2014-06-12 16:07:57 +0000115code.query.serial:not(.active) span {
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000116 padding: 2pt;
117}
118
Nils Diewald2329e1d2014-06-12 16:07:57 +0000119code.query pre {
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000120 display: block;
Nils Diewald2329e1d2014-06-12 16:07:57 +0000121 padding: 2px 5px;
122 margin: 0;
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000123}
124
Nils Diewald2329e1d2014-06-12 16:07:57 +0000125code.query.serial:not(.active) pre {
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000126 display: none;
Nils Diewald02df9912014-06-03 16:08:07 +0000127}
128
Nils Diewald2329e1d2014-06-12 16:07:57 +0000129code.query.serial.active span {
130 display: none;
131}
Nils Diewald02df9912014-06-03 16:08:07 +0000132
133#sidebar.active {
134 margin-left: 0px;
135 left: 0;
136 top: 0;
137}
138
139#sidebar {
140 color: #fff;
141 text-shadow: none;
142 transition: all .3s ease-in-out;
143 position: fixed;
144 z-index: 500;
145 height: 100%;
146 background-color: #496000;
147 width: 260px;
148 margin-left: -245px;
149 left: 0;
150 top: 0;
151}
152
Nils Diewald2329e1d2014-06-12 16:07:57 +0000153#sidebar > * {
154 opacity: 0;
155 transition-property: opacity;
156 transition-duration: .3s;
157}
158
159#sidebar.active > * {
160 opacity: 1;
161}
162
163#sidebar h2 {
164 font-size: 100%;
165 font-weight: bold;
166 text-align: center;
167 padding: 0;
168 margin: 0 0 5pt 0;
169}
170
171#sidebar ul {
172 list-style-type: none;
173 margin: 0;
174 font-size: 10pt;
175 text-indent: 0;
176 padding: 0;
177}
178
179#sidebar ul li {
180 padding: 4pt 10pt;
181}
182
183#sidebar ul li h3 {
184 font-weight: bold;
185 font-size: 100%;
186 padding: 0;
187 margin: 0;
188}
189
190#sidebar ul li.active h3 {
191 margin-bottom: 2pt;
192 padding-bottom: 2pt;
193 border-bottom: 1px solid black;
194}
195
196#sidebar ul li.active {
197 background-color: #7ba400;
198 text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
199}
200
201dl.info {
202 font-size: 9pt;
203 padding: 0 10pt;
204}
205
206dl.info dt {
207 font-weight: bold;
208 float: left;
209}
210
211dl.info dd {
212 text-align: right;
213}
214
Nils Diewald02df9912014-06-03 16:08:07 +0000215#search {
216 margin-left: 30px;
217 margin-right: 15px;
218 margin-bottom: 40px;
219}
220
Nils Diewald2329e1d2014-06-12 16:07:57 +0000221#tutorial {
222 position: fixed;
223 z-index: 9999;
224 top: 2%;
225 bottom: 2%;
226 left: 5%;
227 right: 5%;
228 background-color: #496000;
229 border-radius: 15px;
230 padding: 5px;
231}
232
233#tutorial > i {
234 font-size: 20pt;
235 color: #496000;
236 position: absolute;
237 z-index: 100;
238 top: 10pt;
239 right: 20pt;
240 cursor: pointer;
241}
242
243#tutorial iframe {
244 width: 100%;
245 min-height: 100%;
246 border-width: 0;
247 border-radius: 10px;
Nils Diewald33e15552014-06-13 19:38:37 +0000248 background-image: url('img/crab.svg');
249 background-size: 10%;
Nils Diewald2329e1d2014-06-12 16:07:57 +0000250 background-repeat: no-repeat;
251 background-position: center center;
252 background-color: white;
Nils Diewald33e15552014-06-13 19:38:37 +0000253}
254
255h1 {
256 margin: 0;
257 left: 0;
258 top: 0;
259 background-image: url('/img/korap-logo-solo.svg');
260 position: absolute;
261 width: 260px; /* like sidebars*/
262 height: 80px; /* like #top */
263 z-index: 999;
264 background-repeat: no-repeat;
265 background-position: center center;
266 background-size: 65%;
267}
268
269h1 span {
270 margin-left: -3000px;
Nils Diewald5d1ffb42014-05-21 17:45:34 +0000271}