forked from context-labs/inference-devnet-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (86 loc) · 2.08 KB
/
style.css
File metadata and controls
97 lines (86 loc) · 2.08 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
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");
:root {
--inference-white: #f8f2ec;
--inference-white-darker: #f1e9e2;
--inference-white-lighter: #faf7f4;
--inference-black: #141414;
--inference-black-darker: #0f0f0f;
--inference-border-dark: #292929;
--inference-border-light: #e8e0d9;
}
th {
text-align: left;
}
h1,
h3,
h4,
.eyebrow,
h2.text-base,
h6 {
/* font-family: 'JetBrains Mono', monospace; */
/* text-transform:uppercase; */
}
h2:not(.text-base) {
/* font-family: 'JetBrains Mono', monospace; */
/* text-transform:uppercase; */
/* padding-top: 56px; */
padding-bottom: 18px;
margin-bottom: 32px !important;
border-bottom: 1px solid black;
}
h5 {
/* font-family: 'JetBrains Mono', monospace; */
/* text-transform:uppercase; */
border-bottom: 1px solid #e8e0d9;
padding-bottom: 16px;
}
html {
#navigation-items {
/* font-family: 'JetBrains Mono', monospace; */
/* text-transform:uppercase; */
}
#navigation-items div a {
height: 48px;
}
}
html.dark {
.card {
background-color: var(--inference-black);
border-color: var(--inference-border-dark);
}
.card:hover {
border-color: var(--inference-white) !important;
}
h2:not(.text-base) {
border-bottom: 1px solid var(--inference-border-dark);
}
h5 {
border-bottom: 1px solid var(--inference-border-dark);
}
.codeblock-light {
border: 1px solid var(--inference-border-dark);
}
}
html:not(.dark) {
.card {
background-color: var(--inference-white);
border-color: var(--inference-white-darker);
background-color: var(--inference-white-lighter);
}
.card:hover {
border-color: var(--inference-black) !important;
}
.codeblock-light {
border: 1px solid var(--inference-border-light);
background-color: var(--inference-white-lighter);
}
h2:not(.text-base) {
border-bottom: 1px solid var(--inference-border-light);
}
h5 {
border-bottom: 1px solid var(--inference-border-light);
}
}
.list-none {
height: 40px;
}