Split CSS

This commit is contained in:
Gogs
2026-07-07 10:14:34 +02:00
parent 888867e118
commit fc8e5ce3bb
13 changed files with 1662 additions and 889 deletions
+48
View File
@@ -0,0 +1,48 @@
.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;
}