-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
47 lines (45 loc) · 1.07 KB
/
input.css
File metadata and controls
47 lines (45 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply text-gray-300;
}
}
@layer components {
.btn {
@apply px-4 py-2 rounded-lg font-medium transition duration-200;
}
.btn-primary {
@apply text-white font-medium;
background: linear-gradient(135deg, #06b6d4, #3b82f6);
}
.btn-primary:hover {
box-shadow: 0 0 20px rgba(6,182,212,0.4);
}
.btn-secondary {
@apply text-gray-300;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.15);
backdrop-filter: blur(12px);
}
.btn-secondary:hover {
background: rgba(255,255,255,0.1);
border-color: rgba(255,255,255,0.25);
}
.input {
@apply w-full px-3 py-2 rounded-lg outline-none text-white;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
}
.input:focus {
border-color: #06b6d4;
box-shadow: 0 0 0 2px rgba(6,182,212,0.3);
}
.card {
@apply rounded-xl;
background: rgba(255,255,255,0.05);
backdrop-filter: blur(12px);
border: 1px solid rgba(255,255,255,0.1);
}
}