blob: c19b508f091586c25f05a66bd7a6f932e6dc91a8 [file] [log] [blame]
Nils Diewald7cad8402014-07-08 17:06:56 +00001@charset "utf-8";
2
3@import "colors";
4
5#searchMirror {
6 position: absolute;
7 margin-top: 1px;
8 white-space: nowrap;
9 overflow: show;
10 height: 0;
11 > span {
12 opacity: 0;
13 white-space: nowrap;
14 overflow: hidden;
15 }
16 > ul {
17 color: white;
18 margin: 0;
19 text-indent: 0;
20 display: inline-block;
21 background-color: $dark-green;
22 opacity: 0;
23 padding: 0;
24 padding-top: 5px;
25 padding-bottom: 10px;
26 border-bottom-left-radius: 10px;
27 border-bottom-right-radius: 10px;
28 > li {
29 list-style-type: none;
30 list-style-position: outside;
31 padding: 3pt 10pt;
32 text-shadow: none;
33 white-space: normal;
34 > span {
35 float: right;
36 margin-left: 30pt;
37 text-align: right;
38 font-style: italic;
39 color: #7ba400;
40 }
41 /* like sidebar ul li.active */
42 &.active {
43 background-color: #7ba400;
44 text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
45 > span {
46 color: #496000;
47 text-shadow: none;
48 }
49 }
50 }
51 }
52}