49 lines
847 B
CSS
49 lines
847 B
CSS
.guide-search {
|
|
position: relative;
|
|
margin-bottom: 22px;
|
|
}
|
|
|
|
.guide-search input {
|
|
width: 100%;
|
|
background: #020617;
|
|
color: var(--text);
|
|
border: 1px solid var(--border);
|
|
border-radius: 14px;
|
|
padding: 13px 16px;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.guide-search-results {
|
|
position: absolute;
|
|
z-index: 200;
|
|
top: calc(100% + 8px);
|
|
left: 0;
|
|
right: 0;
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 50px rgba(0,0,0,.45);
|
|
}
|
|
|
|
.guide-search-result {
|
|
padding: 13px 16px;
|
|
border-bottom: 1px solid var(--border);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.guide-search-result:hover {
|
|
background: var(--accent-soft);
|
|
}
|
|
|
|
.guide-search-result strong {
|
|
display: block;
|
|
}
|
|
|
|
.guide-search-result span {
|
|
display: block;
|
|
margin-top: 4px;
|
|
color: var(--muted);
|
|
font-size: .88rem;
|
|
}
|