-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
131 lines (114 loc) · 3.06 KB
/
Copy pathcustom.css
File metadata and controls
131 lines (114 loc) · 3.06 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
@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,400;1,400&display=swap");
:root {
--font-mono:
"DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
"Courier New", monospace;
--radius-interactive-element: 0.125rem;
--radius-sm: 0.125rem;
--radius-text-highlight: 0.125rem;
--radius-md: 0.125rem;
--radius-menus: 0.125rem;
--radius-lg: 0.125rem;
--radius-xl: 0.125rem;
--radius-full: 9999px;
--rounded-sm: 0.125rem;
--rounded: 0.125rem;
--rounded-md: 0.125rem;
--rounded-lg: 0.125rem;
--rounded-xl: 0.125rem;
--rounded-2xl: 0.125rem;
--rounded-3xl: 0.125rem;
--border-radius: 0.125rem;
font-size: 17px;
}
:where([class*="rounded"]:not(.rounded-none):not(.rounded-full):not([class*="rounded-full"])) {
border-radius: 0.125rem !important;
}
.rounded-full,
[class*="rounded-full"] {
border-radius: var(--radius-full) !important;
}
[data-radix-menu-content],
[data-radix-dropdown-menu-content],
[role="menu"][data-side],
[data-component-part="search-modal"],
[data-component-part="search-header"],
[data-component-part="search-list"] {
border-radius: 0.125rem !important;
}
:is(.dark, [data-theme="dark"]) [data-component-part="search-modal"] {
box-shadow:
0 0 0 100vmax rgb(0 0 0 / 60%),
0 25px 50px -12px rgb(0 0 0 / 70%) !important;
}
@media (prefers-color-scheme: dark) {
[data-component-part="search-modal"] {
box-shadow:
0 0 0 100vmax rgb(0 0 0 / 60%),
0 25px 50px -12px rgb(0 0 0 / 70%) !important;
}
}
code,
pre,
kbd,
samp,
[class*="language-"],
[data-component-part="code-block"],
[data-component-part="code-block"] * {
font-family: var(--font-mono) !important;
font-weight: 400 !important;
}
/* Typography to match flightcontrol ui2 / packages/web ----------------------- */
/* Global + body: PP Neue Montreal
- letter-spacing 0.02em (--tracking-normal)
- line-height 1.25 (--leading-base)
- weight 400, antialiased */
html {
letter-spacing: 0.02em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
body,
p,
li {
letter-spacing: 0.02em;
}
/* Headings: PP Fragment (Glare Regular), matching the marketing display style
- weight 400 (Glare Regular)
- letter-spacing 0
- line-height 1.1 (--leading-display) */
h1,
h2,
h3,
h4,
h5,
h6 {
letter-spacing: 0 !important;
line-height: 1.1 !important;
font-weight: 400 !important;
}
/* Card titles */
[data-component-part="card-title"] {
font-size: 1.2rem !important;
}
/* Space between card title and body */
[data-component-part="card-content"] {
margin-top: 0.5rem !important;
}
/* Keep code free of the body letter-spacing for legibility */
code,
pre,
kbd,
samp,
[class*="language-"],
[data-component-part="code-block"],
[data-component-part="code-block"] * {
letter-spacing: normal;
}
a[href="https://www.mintlify.com/?utm_campaign=poweredBy&utm_medium=referral&utm_source=ravion-b90c0359"],
a[href*="mintlify.com"][href*="poweredBy"],
a[href*="mintlify.com"][href*="powered-by"],
a[aria-label*="Mintlify"],
a[title*="Mintlify"] {
display: none !important;
}