-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy path_body.scss
More file actions
92 lines (77 loc) · 1.71 KB
/
_body.scss
File metadata and controls
92 lines (77 loc) · 1.71 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
/*!
* This file is part of the Sylius package.
*
* (c) Sylius Sp. z o.o.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
* {
--tblr-breadcrumb-item-active-color: var(--tblr-gray-500);
--tblr-breadcrumb-divider-color: var(--tblr-gray-300);
--tblr-code-color: #36393B;
--tblr-blue-rgb: 17, 81, 141;
--tblr-green-rgb: 0, 97, 16;
}
[data-bs-theme=dark] {
--tblr-bg-surface: #1E2433;
}
@font-face {
font-family: 'Inter';
src: url('../fonts/Inter-VariableFont_slnt,wght.ttf') format('truetype-variations');
font-weight: 1 999;
}
body {
--bs-body-bg: #{$body-bg};
--bs-tertiary-bg: #{$body-bg};
--bs-body-color: #{$body-color};
font-feature-settings: "cv03", "cv04", "cv11";
}
a {
text-underline-offset: 0.25em;
}
a.link-reset {
text-decoration: none;
}
button.link-reset {
border: none;
background-color: transparent;
text-transform: inherit;
font-weight: inherit;
}
.btn-collapse {
&.collapsed {
.icon-chevron-right {
display: inline-flex;
}
.icon-chevron-down {
display: none;
}
}
&:not(.collapsed) {
.icon-chevron-right {
display: none;
}
.icon-chevron-down {
display: inline-flex;
}
}
}
.breadcrumb-item a {
text-decoration: none;
&:hover {
color: $primary
}
}
html[data-bs-theme="light"] [data-theme-switch="light"] {
display: none;
}
html[data-bs-theme="dark"] [data-theme-switch="dark"] {
display: none;
}
.switch-collapse {
display: none;
}
label:has(input:checked) ~ .switch-collapse {
display: block;
}