-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (90 loc) · 2.34 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (90 loc) · 2.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
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
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.sidebar-group-header {
text-transform: uppercase;
letter-spacing: 0.04em;
}
.eyebrow {
text-transform: uppercase;
}
li .group {
margin-bottom: 0rem !important;
padding-bottom: .25rem !important;
}
th {
text-align: left;
}
tr {
border-bottom: 1px solid var(--border-color, rgba(128, 128, 128, 0.15));
}
.field .font-semibold.text-primary[data-component-part="field-name"] {
line-height: normal;
font-weight: 700;
font-size: 1.15rem;
}
.dark kbd {
background-color: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
color: #e6e6e6;
}
/* Sign-up CTA card (snippets/sign-up-cta.mdx). Styled here instead of with
Tailwind utility classes because Mintlify's production build only ships
utilities used by its own UI — arbitrary values like from-[#0c449a] work
in `mint dev` but are missing in the compiled production CSS. */
.sign-up-cta {
position: relative;
border-radius: 0.5rem;
padding: 1.5rem;
margin: 1rem 0;
background: linear-gradient(to bottom, #0c449a, #062047);
color: #fff;
}
.sign-up-cta-title {
font-size: 1.25rem;
line-height: 1.75rem;
font-weight: 700;
text-wrap: balance;
margin-bottom: 0.25rem;
}
.sign-up-cta-title img {
display: inline-block;
width: 2rem;
height: 2rem;
vertical-align: middle;
margin-top: -0.25rem;
}
.sign-up-cta-body {
color: #e2e8f0;
}
.sign-up-cta a {
color: inherit;
}
/* Stretch the link's click area over the whole card. */
.sign-up-cta a::before {
content: "";
position: absolute;
inset: 0;
}
/* Expand small header icon buttons to a 44x44 minimum touch target
(WCAG 2.5.5) via an invisible hit-area overlay, so the visual header
layout is unchanged and the theme's responsive show/hide still applies. */
header button[aria-label="Open search"],
header button[aria-label="Toggle assistant panel"],
header button[aria-label="Toggle dark mode"],
header button[aria-label="More actions"] {
position: relative;
}
header button[aria-label="Open search"]::after,
header button[aria-label="Toggle assistant panel"]::after,
header button[aria-label="Toggle dark mode"]::after,
header button[aria-label="More actions"]::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 44px;
height: 44px;
transform: translate(-50%, -50%);
}