-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextra.css
48 lines (40 loc) · 1.17 KB
/
extra.css
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
[data-md-color-primary=hello-robot-light]{
--md-primary-fg-color: #122837;
--md-primary-fg-color--light: hsla(0,0%, 100%, 0.7);
--md-primary-fg-color--dark: hsla(0, 0%, 0%, 0.07);
--md-primary-bg-color: hsla(341, 85%, 89%, 1.0);
--md-typeset-a-color: #0550b3;
--md-code-hl-number-color: hsla(196, 86%, 29%, 1); /* Make code block magic numbers less bright in light theme */
}
[data-md-color-primary=hello-robot-dark]{
--md-primary-fg-color: #122837;
--md-primary-fg-color--light: hsla(0,0%, 100%, 0.7);
--md-primary-fg-color--dark: hsla(0, 0%, 0%, 0.07);
--md-primary-bg-color: hsla(341, 85%, 89%, 1.0);
--md-typeset-a-color: hsla(341, 85%, 89%, 1.0); /* Make links more visible in dark theme */
}
[data-md-color-scheme="slate"] {
--md-hue: 210; /* [0, 360] */
}
.md-header__topic:first-child {
font-weight: normal;
}
/* Indentation. */
div.doc-contents {
padding-left: 25px;
border-left: 4px solid rgba(230, 230, 230);
margin-bottom: 20px;
}
.md-typeset__table {
min-width: 100%;
}
.md-typeset table:not([class]) {
display: table;
}
.shell-prompt code::before {
content: "$ ";
color: grey;
}
.highlight.no-copy .md-clipboard {
display: none;
}