-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (46 loc) · 1.34 KB
/
Copy pathstyle.css
File metadata and controls
54 lines (46 loc) · 1.34 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
/* Mobile Optimization */
* {
-webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}
body {
overscroll-behavior-y: none; /* Prevent pull-to-refresh on mobile */
user-select: none; /* Prevent text selection like a native app */
-webkit-user-select: none;
}
button, input, select, textarea {
user-select: text; /* Allow selection in inputs */
-webkit-user-select: text;
}
/* Ensure buttons are large enough for touch targets */
button {
min-height: 44px;
min-width: 44px;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Safe area padding for mobile bottom nav */
.pb-safe {
padding-bottom: env(safe-area-inset-bottom);
}
/* Global Font Styles */
.font-apple {
font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
/* Global Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fadeIn {
animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.animate-slideUpFade {
animation: fadeIn 0.4s ease-out forwards;
}