-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (94 loc) · 1.82 KB
/
styles.css
File metadata and controls
114 lines (94 loc) · 1.82 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
@import url("style.css");
/*
Docs styling
- Keep this file as the shared stylesheet for generated docs pages.
- It imports the main site styling, then layers doc-specific tweaks.
*/
.docs-page {
background-color: var(--bg-color);
}
.docs-container {
padding-top: 2rem;
padding-bottom: 3rem;
}
.docs-card {
overflow: hidden;
}
.docs-breadcrumb {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
align-items: center;
margin-bottom: 1rem;
color: #666;
font-size: 0.95rem;
}
.docs-breadcrumb a {
font-weight: 600;
}
.docs-content {
text-align: left;
}
.docs-content h1 {
margin-top: 0;
}
.docs-content pre,
.docs-content .codehilite {
background: #f6f8fa;
border-radius: 10px;
padding: 16px;
overflow-x: auto;
margin: 1rem 0;
}
.docs-content pre code {
background: transparent;
padding: 0;
border-radius: 0;
color: inherit;
}
.docs-content code {
background-color: #f0f0f0;
color: #24292e;
}
.docs-content table {
border-collapse: collapse;
width: 100%;
margin: 1rem 0;
}
.docs-content th,
.docs-content td {
border: 1px solid #d0d7de;
padding: 0.5rem 0.75rem;
text-align: left;
}
.docs-content th {
background-color: #f6f8fa;
}
.docs-content blockquote {
padding: 0.25rem 1rem;
color: #57606a;
border-left: 0.25em solid #d0d7de;
margin: 1rem 0;
}
.docs-content img {
max-width: 100%;
height: auto;
}
.docs-content .toc {
background: rgba(255, 255, 255, 0.65);
border: 1px solid rgba(0, 0, 0, 0.06);
border-radius: var(--border-radius);
padding: 1rem;
margin: 1rem 0 1.5rem;
}
.docs-content .toc ul {
margin: 0.5rem 0 0;
}
/* Ensure logo links keep site styling */
.logo a {
color: inherit;
text-decoration: none;
}
.logo a:hover {
text-decoration: none;
}