-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
85 lines (65 loc) · 1.77 KB
/
custom.css
File metadata and controls
85 lines (65 loc) · 1.77 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
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;600&display=swap');
:root {
--mainNavColor: #348ad1;
--sidebarColor: #f8f8ff;
--inlineCodeBackgroundColor: rgb(0 0 0 / 0%);
}
div#top_nav nav {
background-image: linear-gradient(#348ad1, #046ab1);
padding: 0.2rem 1rem;
}
div#top_nav nav h1 img{
height: 3rem;
}
.highlight {
background: #f8f8f8;
}
div.document {
margin-bottom: 1rem;
}
div.document div.documentwrapper {
max-width: 55rem;
}
div.document div.highlight {
border-radius: 0.0rem;
border-left: 3px dotted rgba(128, 128, 128, 40%);
background-color: var(--mainBackgroundColor);
}
h1, h2, h3, h4 {
font-family: 'Lato', sans-serif;
}
h1 {
color: #2980b9;
}
h3, h4 {
text-decoration: underline;
}
div.document div.admonition.attention, div.document div.admonition.caution, div.document div.admonition.warning {
border: 2px solid #d77732;
}
div.document div.admonition.attention p.admonition-title, div.document div.admonition.caution p.admonition-title, div.document div.admonition.warning p.admonition-title {
color: #ffffff;
background-color: #d77732;
}
div.document div.admonition.attention, div.document div.admonition.caution, div.document div.admonition.note {
border: 2px solid #587f9f;
}
div.document div.admonition.attention p.admonition-title, div.document div.admonition.caution p.admonition-title, div.document div.admonition.note p.admonition-title {
color: #ffffff;
background-color: #587f9f;
}
div.document li p {
margin: 0 0 0.3rem 0;
}
div.document table.docutils td {
border: none;
padding: 0.1rem 1rem;
}
div.document table.docutils th {
border: none;
padding: 0.1rem 1rem;
}
div.document hr {
height: 0.25rem;
background-color: #d03434;
}