diff --git a/server.py b/server.py index 0d4ad0f..901944c 100644 --- a/server.py +++ b/server.py @@ -114,6 +114,41 @@ def index(): color: var(--text-muted); }} + .search-wrap {{ + position: relative; + margin-bottom: 24px; + }} + + .search-wrap input {{ + width: 100%; + padding: 12px 16px 12px 42px; + background: var(--surface); + border: 1px solid var(--border); + border-radius: var(--radius); + color: var(--text); + font-family: inherit; + font-size: 0.92rem; + outline: none; + transition: border-color 0.2s; + }} + + .search-wrap input:focus {{ + border-color: rgba(108,92,231,0.5); + }} + + .search-wrap input::placeholder {{ + color: var(--text-muted); + }} + + .search-wrap svg {{ + position: absolute; + left: 14px; + top: 50%; + transform: translateY(-50%); + color: var(--text-muted); + pointer-events: none; + }} + .category {{ margin-bottom: 28px; }} @@ -196,8 +231,35 @@ def index():
Flask applications
+