-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
133 lines (118 loc) · 2.78 KB
/
style.css
File metadata and controls
133 lines (118 loc) · 2.78 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
.card_content {
font-feature-settings:
"clig" off,
"liga" off;
font-family: Inter;
font-style: normal;
line-height: 18px;
}
.card_content span {
position: absolute;
top: 10px;
right: -5px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: #fff !important;
text-align: center;
font-size: 8px;
font-weight: 700;
text-transform: uppercase;
width: 40px;
height: 16px;
flex-shrink: 0;
border-radius: 10px;
margin: 0 15px 0 0;
}
.card_content span.get {
background: #0e9b71;
text-shadow:
1px 1px 0 #0d8d67,
0 1px 0 #0d8d67,
1px 0 0 #0d8d67;
}
.card_content span.post {
background: #0171c2;
text-shadow:
1px 1px 0 #0168b3,
0 1px 0 #0168b3,
1px 0 0 #0168b3;
}
.card_content span.patch {
background: #df7d03;
text-shadow:
1px 1px 0 #d07503,
0 1px 0 #d07503,
1px 0 0 #d07503;
}
.card_content span.put {
background: #674ead;
text-shadow:
1px 1px 0 #604aa2,
0 1px 0 #604aa2,
1px 0 0 #604aa2;
}
/* --- Footer fix (AI generated) --- */
/* 1. Logo Surgical Strike: Hides the dark-mode logo while in light mode (and vice versa) */
/* We target the specific logo classes Mintlify uses for theme switching */
footer .dark\:hidden,
footer .hidden.dark\:block {
display: none !important;
}
/* Force only the currently active theme logo to show */
footer .block.dark\:hidden,
footer .hidden.dark\:block.active { /* Standard Mintlify logic */
display: block !important;
}
/* 2. Layout: Logo Left, Links Right, ONE LINE */
footer .max-w-7xl > .flex {
flex-direction: row !important;
justify-content: space-between !important;
align-items: center !important;
flex-wrap: nowrap !important;
width: 100% !important;
}
/* 3. The Link Container: Prevent wrapping at all costs */
footer div:has(> a.md\:truncate) {
display: flex !important;
flex-direction: row !important;
flex-wrap: nowrap !important;
gap: 1.5rem !important;
margin-left: auto !important;
}
/* 4. The Links: No squishing, no hiding */
footer a.md\:truncate {
max-width: none !important;
white-space: nowrap !important;
flex-shrink: 0 !important;
}
/* 5. Clean up the extra header */
footer h2 {
display: none !important;
}
/* --- End of Footer fix --- */
/* move last 2 navbar tabs to the right side */
.nav-tabs {
width: 100%;
}
.nav-tabs a:nth-last-child(2) {
margin-left: auto;
}
/* end */
pre.bash {
background-color: black;
color: white;
font-size: medium;
font-family:
Consolas,
Monaco,
Lucida Console,
Liberation Mono,
DejaVu Sans Mono,
Bitstream Vera Sans Mono,
Courier New,
monospace;
width: 100%;
display: inline-block;
}