blob: ef6d8dfd78e73ddfeb8edaf708d992cf04ab746c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@import '../modules/mixins'; // For box-shadow
#search {
font-family: $base-font-family;
font-size: $h3-size;
}
#search-suggestion {
position: absolute;
width: 70%;
margin-left: $doc-margin;
top: $three-baselines + 6px;
}
#search-suggestion .suggestion-item {
padding: $one-baseline 0px $one-baseline $two-baselines;
}
#search-suggestion .suggestion-item.selected, #search-suggestion .suggestion-item:hover {
padding: $one-baseline 0px $one-baseline 22px;
}
|