forked from base/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
66 lines (53 loc) · 1.27 KB
/
custom.css
File metadata and controls
66 lines (53 loc) · 1.27 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
/* Danger admonition coloring */
.danger-admonition {
border: 1px solid rgba(239, 68, 68, 0.2);
background-color: rgba(254, 242, 242, 0.5);
}
.dark\:danger-admonition:is(.dark *) {
border-color: rgba(239, 68, 68, 0.3);
background-color: rgba(239, 68, 68, 0.1);
}
.assistant-entry {
background-color: #3c8aff !important;
color: #ffffff !important;
border: 1px solid rgba(0, 0, 0, 0.15) !important;
box-shadow: none !important;
font-weight: 600 !important;
}
.assistant-entry:hover {
transform: translateY(-1px) !important;
box-shadow: none !important;
}
.assistant-entry:focus-visible {
outline: 2px solid rgba(0, 0, 0, 0.25) !important;
outline-offset: 2px !important;
}
.dark .assistant-entry {
background-color: #3c8aff !important;
border-color: rgba(0, 0, 0, 0.55) !important;
}
.dark .assistant-entry:focus-visible {
outline: 2px solid rgba(0, 0, 0, 0.65) !important;
}
.base_header_img {
margin: auto;
}
.homepage_wrapper {
width: 75%;
max-width: 1376px;
margin: auto;
margin-bottom: 50px;
}
.home_header {
padding-bottom: 0 !important;
}
.home_header h1 {
margin-bottom: 24px;
}
.home_header div p {
margin-top: 10px;
}
/* Callout heading contrast in dark mode */
.dark .callout :is(h1, h2, h3, h4, h5, h6) {
color: inherit;
}