diff --git a/static/style.css b/static/style.css index d233bc7..d7ee7a5 100644 --- a/static/style.css +++ b/static/style.css @@ -43,6 +43,10 @@ button:hover { background-color: var(--primary-hover); } +button:focus { + outline: 2px solid var(--primary-accent); +} + input { padding: 12px; background-color: var(--bg-input); @@ -51,6 +55,10 @@ input { border-radius: 6px; } +input:focus { + outline: 2px solid var(--primary-accent); +} + input::placeholder { color: var(--text-muted); } @@ -74,8 +82,9 @@ input::placeholder { height: 100%; z-index: 9999; /* higher = on top */ - background-color: black; - opacity: 10%; + backdrop-filter: blur(4px); + background-color: rgba(0, 0, 0, 0.3); + pointer-events: all; } .dialouge_title {