-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
53 lines (43 loc) · 1.04 KB
/
Copy pathinput.css
File metadata and controls
53 lines (43 loc) · 1.04 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
48
49
50
51
52
53
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.glass-card {
@apply bg-slate-900/50 backdrop-blur-xl border border-white/5 shadow-2xl;
}
.input-base {
@apply bg-slate-800/50 border border-slate-700 text-white placeholder-slate-500 focus:border-brand-primary focus:ring-1 focus:ring-brand-primary outline-none transition-all;
}
}
/* Print Styles */
@media print {
body {
background: white !important;
color: black !important;
}
.no-print {
display: none !important;
}
.print-only {
display: block !important;
}
.glass-card {
background: none !important;
border: 1px solid #ddd !important;
box-shadow: none !important;
}
.text-white {
color: black !important;
}
.text-slate-400,
.text-slate-500,
.text-slate-600 {
color: #666 !important;
}
.text-brand-emerald {
color: #059669 !important;
}
.text-rose-400 {
color: #e11d48 !important;
}
}