-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
138 lines (117 loc) · 3.12 KB
/
index.css
File metadata and controls
138 lines (117 loc) · 3.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Outfit', sans-serif;
}
::selection {
background-color: rgba(99, 102, 241, 0.2);
color: #4f46e5;
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
}
/* Custom driver.js styling for premium feel */
.driver-popover.driver-theme {
background-color: rgba(30, 41, 59, 0.95) !important;
/* Slate-800 equivalent with opacity */
color: #f8fafc !important;
/* Slate-50 */
border: 1px solid rgba(148, 163, 184, 0.2) !important;
border-radius: 12px;
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
backdrop-filter: blur(12px);
padding: 20px;
max-width: 350px;
}
.driver-popover.driver-theme .driver-popover-title {
font-family: 'Inter', sans-serif;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 8px;
color: #fff !important;
}
.driver-popover.driver-theme .driver-popover-description {
font-family: 'Inter', sans-serif;
font-size: 0.9rem;
line-height: 1.5;
color: #cbd5e1 !important;
/* Slate-300 */
margin-bottom: 20px !important;
}
.driver-popover.driver-theme .driver-popover-footer {
margin-top: 15px;
}
.driver-popover.driver-theme .driver-popover-footer button {
background-color: #f8fafc !important;
/* Slate-50 */
color: #0f172a !important;
/* Slate-900 */
border: none;
padding: 8px 16px;
border-radius: 6px;
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
text-shadow: none;
}
.driver-popover-footer button:hover {
background-color: #e2e8f0;
/* Slate-200 */
}
.driver-popover-footer button.driver-close-btn {
background-color: transparent;
color: #94a3b8;
border: 1px solid rgba(148, 163, 184, 0.3);
}
.driver-popover-footer button.driver-close-btn:hover {
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
}
/* Arrow styling */
.driver-popover-arrow {
border-color: rgba(30, 41, 59, 0.95);
}
.driver-popover-arrow-side-left.driver-popover-arrow {
border-left-color: rgba(30, 41, 59, 0.95);
}
.driver-popover-arrow-side-right.driver-popover-arrow {
border-right-color: rgba(30, 41, 59, 0.95);
}
.driver-popover-arrow-side-top.driver-popover-arrow {
border-top-color: rgba(30, 41, 59, 0.95);
}
.driver-popover-arrow-side-bottom.driver-popover-arrow {
border-bottom-color: rgba(30, 41, 59, 0.95);
}
/* Attempt to blur the surroundings - REMOVED due to highlighting issues
backdrop-filter applies to the entire element bounds, blurring the cutout too.
*/
.driver-overlay,
#driver-page-overlay {
/* backdrop-filter: blur(4px); */
/* -webkit-backdrop-filter: blur(4px); */
}