-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
146 lines (121 loc) · 3.75 KB
/
Copy pathstyle.css
File metadata and controls
146 lines (121 loc) · 3.75 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
139
140
141
142
143
144
145
146
:root {
--default-border-color: var(--gray-200);
}
.dark {
--default-border-color: var(--gray-800);
}
#sidebar .nav-dropdown-trigger {
border: none !important;
border-radius: 0 !important;
background: transparent !important;
box-shadow: none !important;
padding-left: 0.375rem;
}
#sidebar .nav-dropdown-trigger:hover {
background-color: rgb(0 0 0 / 0.04) !important;
}
.dark #sidebar .nav-dropdown-trigger:hover {
background-color: rgb(255 255 255 / 0.06) !important;
}
#sidebar .nav-dropdown-trigger .nav-dropdown-item-icon {
border: none !important;
border-radius: 0 !important;
background: transparent !important;
height: auto !important;
width: auto !important;
padding: 0 !important;
}
.nav-dropdown-content {
border-radius: 0 !important;
}
.nav-dropdown-content .nav-dropdown-item {
border-radius: 0 !important;
}
.nav-dropdown-content .nav-dropdown-item-icon {
border: none !important;
border-radius: 0 !important;
background: transparent !important;
height: auto !important;
width: auto !important;
padding: 0 !important;
}
.nav-dropdown-content .nav-dropdown-item-description {
display: none !important;
}
#sidebar .nav-anchor span {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: -0.02em;
text-transform: uppercase;
}
body:has([data-product-guide-index]) #sidebar a.nav-anchor[href='/'] {
color: rgb(var(--primary)) !important;
font-weight: 600 !important;
}
body:has([data-product-guide-index]) #sidebar a.nav-anchor[href='/'] span {
color: inherit !important;
}
body:has([data-product-guide-index]) #sidebar a.nav-anchor[href='/'] svg {
background-color: rgb(var(--primary)) !important;
}
.dark body:has([data-product-guide-index]) #sidebar a.nav-anchor[href='/'] {
color: rgb(var(--primary-light)/var(--tw-text-opacity,1)) !important;
}
.dark body:has([data-product-guide-index]) #sidebar a.nav-anchor[href='/'] svg {
background-color: rgb(var(--primary-light)/var(--tw-text-opacity,1)) !important;
}
:is(#content-area[data-current-path='/'], [data-current-path='/'] #content-area):has([data-product-guide-index]) {
background: transparent !important;
padding: 0 !important;
}
:is(#content-area[data-current-path='/'], [data-current-path='/'] #content-area):has([data-product-guide-index]) > div:first-child {
background: transparent !important;
padding-right: 0 !important;
padding-bottom: 0 !important;
padding-left: 0 !important;
}
[data-product-guide-index] a:not(.product-guide-feature-card) {
background-color: #fafafa !important;
}
.dark [data-product-guide-index] a:not(.product-guide-feature-card) {
background-color: #09090b !important;
}
.product-guide-feature-card {
grid-column: 1 / -1;
display: flex !important;
flex-direction: column !important;
justify-content: space-between !important;
min-height: 260px;
background: linear-gradient(135deg, #0f172a, #1d4ed8) !important;
border-radius: 0 !important;
box-shadow: none !important;
color: white !important;
}
.product-guide-feature-card > div {
display: flex !important;
flex: 1;
flex-direction: column !important;
justify-content: space-between !important;
}
.product-guide-feature-card :is(h2, h3, p, span, svg) {
color: white !important;
}
.product-guide-feature-card :is(svg, [class*='icon']) {
background-color: white !important;
width: 2em !important;
height: 2em !important;
margin-top: 2px;
}
.product-guide-feature-card-title {
font-size: 1.2em;
font-weight: 500;
}
.product-guide-feature-card :is(h2, h3, p, span, svg).product-guide-feature-card-description {
font-size: 1.05em;
font-weight: 400;
color: rgb(var(--gray-50) / 62.5%) !important;
.dark & {
color: rgb(var(--gray-50) / 50%) !important;
}
}