-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (48 loc) · 2.01 KB
/
Copy pathstyle.css
File metadata and controls
56 lines (48 loc) · 2.01 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
html[data-current-path="/"] div:has(> .nav-tabs) { display: none !important; }
html[data-current-path="/"] #navbar { border-bottom: none !important; }
html[data-current-path="/"] button.lg\:hidden { display: none !important; }
html[data-current-path="/"] [aria-label*="more" i],
html[data-current-path="/"] [data-contextual],
html[data-current-path="/"] button:has(> svg.lucide-chevron-down) { display: none !important; }
#background-color {
background-image: url("/docs/images/hero-bg-light.svg") !important;
background-repeat: no-repeat !important;
background-position: center center !important;
background-size: cover !important;
}
html.dark #background-color {
background-image: url("/docs/images/hero-bg-dark.svg") !important;
}
#navbar-transition {
background-color: transparent !important;
}
.card {
background-color: #ffffff !important;
border-color: rgba(15, 23, 42, 0.08) !important;
border-radius: 16px !important;
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 2px 4px rgba(255, 106, 31, 0.10), 0 16px 40px rgba(255, 106, 31, 0.12);
}
.card svg { color: #FF6A1F !important; }
.card [data-component-part="card-title"] { color: #141822 !important; }
.card .prose { color: #525C70 !important; }
html.dark .card {
background-color: #171B25 !important;
border-color: rgba(255, 255, 255, 0.12) !important;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}
html.dark .card [data-component-part="card-title"] { color: #EDEFF3 !important; }
html.dark .card .prose { color: #B4BBC8 !important; }
.sidebar-group a[aria-current="page"] {
background-color: transparent !important;
background-image: none !important;
border-radius: 0 !important;
box-shadow: inset 3px 0 0 #FF6A1F !important;
}
#sidebar [class*="bg-gradient-to-b"] {
background-image: none !important;
}