-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (55 loc) · 1.24 KB
/
Copy pathstyles.css
File metadata and controls
66 lines (55 loc) · 1.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
body { font-family: 'Inter', sans-serif; }
.glass-panel {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.custom-scroll::-webkit-scrollbar {
height: 8px;
width: 8px;
}
.custom-scroll::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
@page {
margin: 0;
size: auto;
}
@media print {
body {
padding: 20px 40px !important;
}
button, input, .no-print {
display: none !important;
}
.max-w-4xl, .max-w-7xl {
max-width: 100% !important;
padding: 0 !important;
margin: 0 !important;
}
.glass-panel {
background: white !important;
border: none !important;
box-shadow: none !important;
min-height: auto !important;
}
* {
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
.overflow-x-auto {
overflow: visible !important;
}
body {
background: white;
}
}