-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
16 lines (15 loc) · 751 Bytes
/
style.css
File metadata and controls
16 lines (15 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Base styles */
html { background-color: #0a0a0a; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
.code-block { font-family: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace; }
.chip { transition: all 0.15s ease; }
.chip:hover { transform: translateY(-1px); }
.fade-in { animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.search-results::-webkit-scrollbar { width: 6px; }
.search-results::-webkit-scrollbar-track { background: #141414; }
.search-results::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::selection { background: #3b82f640; }