forked from plausible/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
89 lines (78 loc) · 2.12 KB
/
custom.css
File metadata and controls
89 lines (78 loc) · 2.12 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
/* stylelint-disable docusaurus/copyright-header */
/**
* Any CSS included here will be global. The classic template
* bundles Infima by default. Infima is a CSS framework designed to
* work well for content-centric websites.
*/
/* You can override the default Infima variables here. */
:root {
--ifm-color-primary: #6366F1;
--ifm-color-primary-dark: #4F46E5;
--ifm-color-primary-darker: #4338CA;
--ifm-color-primary-darkest: #312E81;
--ifm-color-primary-light: #818CF8;
--ifm-color-primary-lighter: #C7D2FE;
--ifm-color-primary-lightest: #E0E7FF;
--ifm-code-font-size: 95%;
}
.docusaurus-highlight-code-line {
background-color: rgb(72, 77, 91);
display: block;
margin: 0 calc(-1 * var(--ifm-pre-padding));
padding: 0 var(--ifm-pre-padding);
}
.alert--warning {
--ifm-alert-background-color: var(--ifm-color-warning-lightest);
--ifm-alert-border-color: var(--ifm-color-warning-lightest);
--ifm-alert-color: var(--ifm-color-gray-900);
--ra-admonition-icon-color: var(--ifm-color-gray-900);
}
[data-theme='dark'] .alert--warning {
color: var(--ifm-color-gray-900);
}
[data-theme='dark'] .alert--warning svg {
fill: var(--ifm-color-gray-900);
}
.code-button {
font-size: 24px;
line-height: 1em;
padding: 0px;
height: 28px;
margin-left: 4px;
}
.site-select {
margin-left: 4px;
max-width: 9em;
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
.playground-run-code {
display: flex;
justify-content: space-between;
padding-bottom: 4px;
}
.playground-run-code button {
display: flex;
align-items: center;
gap: 4px;
background-color: var(--ifm-color-emphasis-200);
border-radius: var(--ifm-global-radius);
border-width: 0;
color: var(--ifm-navbar-link-color);
cursor: pointer;
font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: 500;
line-height: 20px;
list-style: none;
margin: 0;
padding: 10px 12px;
text-align: center;
transition: all 200ms;
vertical-align: baseline;
touch-action: manipulation;
}
.playground-run-code button:hover {
background-color: var(--ifm-color-emphasis-400);
}