47 lines
842 B
SCSS
47 lines
842 B
SCSS
|
#sResults {
|
||
|
position: relative;
|
||
|
}
|
||
|
.search-results {
|
||
|
display: none;
|
||
|
border-radius: .3em;
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
text-align: left;
|
||
|
right: 25em;
|
||
|
width: 450px;
|
||
|
background-color: var(--bg-color);
|
||
|
border: 1px solid var(--hover-color);
|
||
|
position: absolute;
|
||
|
z-index: 990;
|
||
|
opacity: .95;
|
||
|
&__items {
|
||
|
list-style: none;
|
||
|
z-index: 991;
|
||
|
}
|
||
|
h4 {
|
||
|
padding: 0;
|
||
|
}
|
||
|
.teaser {
|
||
|
font-size: 0.8em;
|
||
|
}
|
||
|
li {
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
z-index: 998;
|
||
|
&:first-of-type {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__item {
|
||
|
list-style: none;
|
||
|
display: block;
|
||
|
z-index: 999;
|
||
|
padding: 1em;
|
||
|
border-bottom: 1px solid var(--hover-color);
|
||
|
|
||
|
a {
|
||
|
display: inline-block;
|
||
|
}
|
||
|
}
|
||
|
}
|